[PHP-DEV] zend_eval_string

2003-02-23 Thread Ivan Rodriguez
Hi, can i get only the errors of the script and not the html code who returned the zend_eval_string function? -- PHP Development Mailing List http://www.php.net/ To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Name of variable

2003-02-22 Thread Ivan Rodriguez
Hello, i need to get the name of the variables who passed in one function, for example: switch ((*struc)-type) { case IS_BOOL: fprintf(_dyn_log_file_fp, %sbool:%s\n, COMMON, ((*struc)-value.lval?true:false)); break; With this i

Re: [PHP-DEV] Name of variable

2003-02-22 Thread Ivan Rodriguez
need it? Andi At 03:45 PM 2/22/2003 +0100, Ivan Rodriguez wrote: Hello, i need to get the name of the variables who passed in one function, for example: switch ((*struc)-type) { case IS_BOOL: fprintf(_dyn_log_file_fp, %sbool:%s\n, COMMON

Re: [PHP-DEV] Name of variable

2003-02-22 Thread Ivan Rodriguez
Thx for all, i was trying to do something :-) El sb, 22-02-2003 a las 15:57, Derick Rethans escribi: On 22 Feb 2003, Ivan Rodriguez wrote: I need to get the because i doing a simple debugger, and i get the type of variable and his information , and i would like to get his name, any