On Fri, 13 Jul 2012, Stas Malyshev wrote:

> > Has the requirement for a truly clean unicode version of PHP 
> > actually gone away?
> 
> The requirement hasn't, but nobody is willing to lead the task. And 
> it's not an easy one. IMHO variable names are by far the least 
> important part of it - I don't know of any code that can't be done 
> using ASCII only :)

Variables name can already be in UTF-8 just fine. My favourite is adding 
a non breaking space in a function name, like in the attached file ;-)

cheers,
Derick

-- 
http://derickrethans.nl | http://xdebug.org
Like Xdebug? Consider a donation: http://xdebug.org/donate.php
twitter: @derickr and @xdebug
<?php
function hello world()
{
        $gréëtîñg = "Hi";
        $Юаб = "world";

        echo "{$gréëtîñg} {$Юаб}\n";
}

hello world();
-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to