I was reading a nice slide titled Unicode & PHP6 and i found every new feature very good.

Except unicode identifers:

enter image description here

Am i missing something? Isn't this is evil for PHP script understanding from a developer to another developer?

I've a scenario;

I'm turkish, and let's say i put a salakçaFonksiyon() (dummyFunction) in a TürkçeKlas (TurkishClass) and posted it to my turkish blog.

Some asian mate stopped by from google and barely translated page with google translate (EDIT : just the description/documentation of class. Looked up method names in dictionary, wikipedia etc. The class is still the original source code for the sake of extending. The point is not google translate actually. ), extended(!) and used my class as that way (let's say this class was very important at that midnight of solving his problem, time was running out).

This guy's custom class was chinese, japanese etc. and he left his work after some time maybe when after the project done.

Some arabic or hebrew mate hired after him. After that you know the big happy(!) ending though.

Maybe this is the worst scenario, but enabling developers to doing this, causing languages in a one language is very evil in my very humble opinion. Cause i'm in a thought there'll be very messy PHP blog articles, codes, open sources projects all around the world.

I prefer unioning on one language rather than splitting it to many.

I know PHP6 probably will not put something like this without the benefit. But what are these, what is the big picture that i couldn't see?

link|improve this question
I see only problems with those as well (next to having fun creating functions with exotic names). Unicode is only one encoding btw., I would love to see that escape sequences could be used for function names as well so to use hex codes and named entities. – hakre Jun 5 '11 at 13:05
feedback

3 Answers

up vote 4 down vote accepted

I am answering this question, because I disagree with other answers listed here. No offence, I just think the freedom of what language do you use should not be enforced by the programming language. I will try to prove it below.

Ok, first you have made an assumption that PHP6's Unicode support will make people able to write the code in languages different than English. Wrong. People (at least using languages that are based on latin alphabet or can be transcribed into it) are already able to write the names in their own languages. So this is possible to write:

class Samochod extends Pojazd {
    public $zuzycie_benzyny = 0.07;
    protected $benzyna = 0;
    public function zatankuj($benzyna) {
        $this->benzyna += $benzyna;
        return $this;
    }
    public function przejedz($kilometry) {
        $this->benzyna -= $this->benzyna * $this->zuzycie_benzyny;
        return $this;
    }
}

$moj_samochod = new Samochod();
$moj_samochod->zatankuj(50)->przejedz(15);

instead of:

class Car extends Vehicle {
    public $petrol_consumption = 0.07;
    protected $petrol = 0;
    public function fill($petrol) {
        $this->petrol += $petrol;
        return $this;
    }
    public function drive($kilometers) {
        $this->petrol -= $this->petrol * $this->petrol_consumption;
        return $this;
    }
}

$my_car = new Car();
$my_car->fill(50)->drive(15);

But the code I have given as the first example is not really correct - some characters are replaced with the appropriate (similarly displayed) latin characters. So lack of Unicode support is not really blocking people from writing names understandable only for them - it blocks them from writing them correctly.

With the Unicode support the first code would look like this:

class Samochód extends Pojazd {
    public $zużycie_benzyny = 0.07;
    protected $benzyna = 0;
    public function zatankuj($benzyna) {
        $this->benzyna += $benzyna;
        return $this;
    }
    public function przejedź($kilometry) {
        $this->benzyna -= $this->benzyna * $this->zużycie_benzyny;
        return $this;
    }
}

$mój_samochód = new Samochód();
$mój_samochód->zatankuj(50)->przejedź(15);

So, let me ask some rhethorical questions:

  1. Do the lack of Unicode support really block the people from writing names in other (other than English) languages? (My answer: no, it surely does not block people from writing code in other languages)
  2. Is Unicode support something positive (assuming it does not influence performance etc.)? (My answer: yes, it allows people to write the code in their own languages correctly)

English is a standard for international communication (be it business negotiations, scientific projects, or code of the application) and there is no other candidate, but there is no reason to block people from writing application code in their languages correctly.

link|improve this answer
1  
I upvoted your answer because you took the time to make your case. I sympathize with your desire to allow people to write the correct characters for their native languages. With that said, trying to make this happen has delayed PHP6 for years and was in my opinion not worth it. You might say this is a positive thing, but it is positively the wrong thing for advancing the language. Don't forget about the original posters maintenance argument. Now not only do I have to learn your language to edit your code, but I also have to use those funny characters I don't get on a standard keyboard. – james Jun 5 '11 at 4:25
2  
+1 Language rules should not be there to enforce certain policies. Forbidding Unicode identifiers is just like forbidding certain indentation styles that the language designers don't like—it might seem reasonable at first sight, but addresses the problem at the wrong level. Code meant to be read by the international public will continue to be written in English, with or without Unicode identifiers. Such matters should be dealt with by convention, not through arbitrary technical limitations. – Philipp Jun 5 '11 at 12:34
1  
@Philipp I completely agree with what you have said. +1 – Tadeck Jun 5 '11 at 12:53
1  
code is code and documentation is documentation. if you're working a team that needs this feature it's obviously for obfuscation reasons. No offence, but if you put personal things aside (play naming functions for the sake of it), I hardly can not see much use of it. A high value does not stand for it's own, it's the practice that counts. – hakre Jun 5 '11 at 13:03
1  
@hakre I think you are right about the value associated with Unicode support in identifiers - it is not very big. And I think the reason is more like not to discriminate non-English speakers etc. (I know: blah, blah, blah ;)). But I do not know what obfuscation has to do with Unicode characters in identifiers. Could you explain, please? Also eg. Java has support for Unicode in identifiers, and I do not think Java fails because of that. – Tadeck Jun 5 '11 at 13:19
show 6 more comments
feedback

Personally I think dropping support for that feature would have allowed PHP6 to be out by now. Your question points out the absurdity of unicode identifiers. English is the standard for other major programming languages and moving PHP in the Unicode direction has been nothing but trouble since day one.

link|improve this answer
2  
Maybe you are right about the delay caused by such unicode support in PHP6, you are definitely right about English being the standard for programming languages, but being good in English is not required to be a good programmer. Lets allow people to write the code in their own languages, at least for educational purposes (before they become fluent enough in English). The code of "international applications" will anyway be written in English. – Tadeck Jun 4 '11 at 23:45
4  
I disagree with your point. Let people speak, read or write in any language they wish. In fact if you made a new programming language, go nuts with writing it with Unicode support. But there is no reason to graft this onto an existing mature and stable language in use by millions. In fact, I think learning not learning English before learning how to program is a huge hindrance. The Non-English speaker will miss out on over 50+ years of wisdom accumulated by English speakers, you know..the ones who invented software. – james Jun 5 '11 at 1:06
1  
Still not convinced and now I think your point is that English is superior because of the fact all the great minds in programming (and computers in general) are/were native English speakers. This is at least arguable. English is superior because of the same reason it is commonly used also in business - it gained its role as international language some time ago. Also, please do not assume the knowledge (or at least essence of it) being the base of programming has not been included in books written in languages different than English. English is not the only language in the world ;) – Tadeck Jun 5 '11 at 1:41
@Tadeck I am not arguing the superiority of English, but the fact remains that it is a requirement of any serious software development project. I am not interested in programming material taught in other languages and frankly that knowledge being translated is still a step removed from the source at best. Learning English, and for that matter good English will probably be one of the most beneficial decisions a software developer can make. – james Jun 5 '11 at 4:18
Communication and information makes the difference usually and the hole language that you're writing is already English. Well actually it's a fact that huge percentage of good developers are already knows English somehow good or bad though. – JacopKane Jun 5 '11 at 14:24
feedback

The point about Google Translate is moot. When people translate page from English to another language (which I think happens more often than other way round), English identifiers will be mangled. Surely, preventing use of English names in PHP is not the solution!

For code blocks you need to use <code class=notranslate lang=zxx> to stop Google Translate and others from translating the code (Google only reads their non-standard class, the rest should get a hint from <code> or lang).

Not everyone works in multi-national teams. For an amateur it may be easier to start learning programming without an extra language barrier.

Even someone who knows basic programming-related English jargon, may not necessarily know all terms of specific domain they're writing code for, e.g. Chinese programmer writing web app for a Chinese plumber may not know plumbing-related terms in English.

Also, PHP already supports non-ASCII characters in identifiers, just not as the first letter.

link|improve this answer
Thanks for you nice answer. But google translate point was not that important actually. I edited that part of question sorry for misunderstanting. Other than that, i still couldn't getting over with fear of non-english codes all around the world. I mean there'll be many resources splitted under many foreign characters and languages. – JacopKane Jun 5 '11 at 0:08
1  
@JacopKane I believe the real international resources (aiming at the international implementations), for example major frameworks, libraries and other scripts, will still be written in English. But why do you really want to limit non-English speakers to only English characters? Why, really? – Tadeck Jun 5 '11 at 1:46
@Tadeck I was working on a little project lately at my job with a developer friend. He wrote his db columns and some class names as turkish, mine was all english. Of course this is our lack of orginization because of project wasn't that important. At the merge we've got hybrid language of english,turkish and of course php. I'm not a limiting fan like Steve Jobs as many other open source developers. What i'm fearing about is this could promote and encourage the non-english programming like a standart espceially when it's something like foreign characters not on your keyboard. – JacopKane Jun 5 '11 at 13:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.