On Mon, 9 Jul 2007, Marco wrote:

> although .... I guess i'm not looking forward to reading php code that 
> says
> 
> <?php
> function 北方话/北方話()
> {
> echo "Hello world ";
> }

You can do that already with PHP 4 as well if your script is in UTF-8:

[EMAIL PROTECTED]:~$ cat unicode.php 
<?php
function 北方话北方話()
{
        echo "Hello world ";
}

北方话北方話();
?>

[EMAIL PROTECTED]:~$ php-4.4dev unicode.php 
Hello world 

regards,
Derick
-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to