Re: [PHP] func_get_args() and call-by-reference?

2003-01-02 Thread Atahualpa Jones
[EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 02, 2003 1:27 AM Subject: [PHP] func_get_args() and call-by-reference? Hi, I try to do a function called unicode_enc() which takes a number of parameters that differ between calls. It should encode all parameters to unicode using

[PHP] func_get_args() and call-by-reference?

2003-01-01 Thread Atahualpa Jones
Hi, I try to do a function called unicode_enc() which takes a number of parameters that differ between calls. It should encode all parameters to unicode using utf8_encode($arglist[$i]). I am using Variable-length argument lists as described in the manual and tried to call the function this