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
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
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 wri
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:
functi
You can use $$var constuction, what display name of $var
function my_trace($var){
echo $$var.'='.$var.'';
}
""nntp.charter.net"" <[EMAIL PROTECTED]> ÓÏÏÂÝÉÌ/ÓÏÏÂÝÉÌÁ × ÎÏ×ÏÓÔÑÈ
ÓÌÅÄÕÀÝÅÅ: news:[EMAIL PROTECTED]
>I want to write a trace procedure and call it with variable names, and I am
>havin
5 matches
Mail list logo