[PHP] Re: How to print variable name and contents

2005-06-21 Thread nntp.charter.net
Bob and Ed and others, Thanks for all the responses. They really helped. -- Gil -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: How to print variable name and contents

2005-06-17 Thread Bob Winter
nntp.charter.net wrote: I want to write a trace procedure and call it with variable names, and I am having trouble with the syntax. My goal is to have a procedure that will echo lines such as: Trace: $myvar=the contents of $myvar My attempt that didn't work is to write a function:

[PHP] Re: How to print variable name and contents

2005-06-17 Thread Bob Winter
Bob Winter wrote: nntp.charter.net wrote: I want to write a trace procedure and call it with variable names, and I am having trouble with the syntax. My goal is to have a procedure that will echo lines such as: Trace: $myvar=the contents of $myvar My attempt that didn't work is to

Re: [PHP] Re: How to print variable name and contents

2005-06-17 Thread Edward Vermillion
On Jun 17, 2005, at 9:18 AM, Bob Winter wrote: nntp.charter.net wrote: I want to write a trace procedure and call it with variable names, and I am having trouble with the syntax. My goal is to have a procedure that will echo lines such as: Trace: $myvar=the contents of $myvar My attempt

[PHP] Re: How to print variable name and contents

2005-06-16 Thread Sergey
You can use $$var constuction, what display name of $var function my_trace($var){ echo $$var.'='.$var.'br'; } nntp.charter.net [EMAIL PROTECTED] / : news:[EMAIL PROTECTED] I want to write a trace procedure and call it with variable names, and I am having trouble with the syntax. My goal is