Re: [PHP-DEV] Re: Bug #16739 Updated: `print' variable function call

2002-05-11 Thread derick
On Sat, 11 May 2002, Yasuo Ohgaki wrote: [...] IMHO, we need someone who documents language design Actually, we need someone to finish this: http://cvs.php.net/cvs.php/php-lang regards, Derick --- Did I help you?

Re: [PHP-DEV] Re: Bug #16739 Updated: `print' variable function call fails.

2002-05-10 Thread Markus Fischer
Hi, can someone state the technical problems we're facing? I'ld rather see this documented (whether it works or no, but documenting). - Markus On Fri, May 10, 2002 at 08:04:25AM +0200, Derick Rethans wrote : Hello, as far as I know this never worked, the wisest thing

Re: [PHP-DEV] Re: Bug #16739 Updated: `print' variable function call fails.

2002-05-10 Thread Manuzhai
Is it impossible to make it a language construct as well as a function? Manuzhai [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... On Fri, 10 May 2002, Markus Fischer wrote: Hi, can someone state the technical problems we're facing? I'ld

Re: [PHP-DEV] Re: Bug #16739 Updated: `print' variable function call fails.

2002-05-10 Thread brad lafountain
Cant we do both.. keep the scaner token and introduce the function? - Brad --- [EMAIL PROTECTED] wrote: On Fri, 10 May 2002, Markus Fischer wrote: Hi, can someone state the technical problems we're facing? I'ld rather see this documented (whether it works or no, but

Re: [PHP-DEV] Re: Bug #16739 Updated: `print' variable function call fails.

2002-05-10 Thread brad lafountain
--- [EMAIL PROTECTED] wrote: On Fri, 10 May 2002, brad lafountain wrote: Cant we do both.. keep the scaner token and introduce the function? What would you reach by introducing such a mess? I dont' think its too much of a mess PHP_FUNCTION(echo) { char *mess; int mess_len;

Re: [PHP-DEV] Re: Bug #16739 Updated: `print' variable function call

2002-05-10 Thread Yasuo Ohgaki
[EMAIL PROTECTED] wrote: On Fri, 10 May 2002, brad lafountain wrote: I dont' think its too much of a mess PHP_FUNCTION(echo) { char *mess; int mess_len; if(zend_parse_parameters(*) == SUCCESS) php_write(buf, size TSRMLS_CC); } What you gain is allowing people to do the following