search
HomeBackend DevelopmentPHP TutorialIf PHP was written in British English_PHP Tutorial

Rasmus Lerdorf, the father of PHP, was very wise when he created PHP not in Greenlandic or Danish (although he has Greenlandic and Danish ancestry). Although writing in English is not as easy for him as writing in his native language. Since he had spent time in Canada before, he chose the local dialect. It’s not French, nor is it a dialect that doesn’t conform to the standard of pure English, which we usually call “American English.”

Since then, British PHP developers have been particularly dissatisfied with this matter. What was Rasmus thinking? More importantly, how do we change this fait accompli? How do we developers ensure that the fine traditions of the British Empire continue to flourish even in the digital age?

One note Slap

<ol class="dp-xml"><li class="alt"><span><span>$variable_name </span></span></li></ol>

The most necessary change is to delete some symbols that are loved by Americans and replace them with some more refined symbols to make PHP more elegant.

<ol class="dp-c"><li class="alt"><span><span>£variable_name </span></span></li></ol>

Let’s get started

<ol class="dp-xml">
<li class="alt"><span><span class="tag"></span><span class="tag-name">php</span><span> </span></span></li>
<li><span>echo 'Hello World!';  </span></li>
<li class="alt">
<span class="tag">?></span><span> </span>
</li>
</ol>

How many of today’s British programmers were first exposed to the typical American “Hello World” program, simple but offensively old-fashioned and vulgar? A more formal introduction would promote the use of the language by most of the young British geniuses, thus providing a more urbane atmosphere to a wider user base.

<ol class="dp-xml">
<li class="alt"><span><span class="tag"></span><span class="tag-name">php</span><span> </span></span></li>
<li><span>announce 'Good morrow, fellow subjects of the Crown.';  </span></li>
<li class="alt">
<span class="tag">?></span><span> </span>
</li>
</ol>

Acronyms

There is nothing the British hate more than unnecessary abbreviations. "Abbreviations" were unheard of on the streets of London, just as the native English grammarian refused to deign to send "c u soon traffic kthxbye" and other messages, preferring to use some more elegant-looking phrases instead: "Dear Sir or ma'am. I hope to arrive as soon as possible, within an hour. I assure you that your horses will be well accommodated." (Slower input, yes, but not in a hurry).

On the other hand, PHP contains a lot of unnecessary abbreviations and acronyms.

<ol class="dp-xml">
<li class="alt"><span><span>str_replace()  </span></span></li>
<li><span>is_int()  </span></li>
<li class="alt"><span>var_dump()  </span></li>
<li><span>preg_match()  </span></li>
<li class="alt"><span>json_encode()  </span></li>
<li><span>mysql_connect() </span></li>
</ol>

should be changed to the following:

<ol class="dp-xml">
<li class="alt"><span><span>string_replace()  </span></span></li>
<li><span>is_integer()  </span></li>
<li class="alt"><span>variable_dump()  </span></li>
<li><span>perl_regular_expression_match()  </span></li>
<li class="alt"><span>javascript_object_notation_encode()  </span></li>
<li><span>my_structured_query_language_connect() </span></li>
</ol>

Correction: I have corrected the expansion of "preg_match" - thanks to the friend who pointed it out.

Eloquence

<ol class="dp-c">
<li class="alt"><span><span class="keyword">if</span><span> (</span><span class="vars">$condition</span><span>) {  </span></span></li>
<li>
<span>    </span><span class="comment">// Code here </span><span> </span>
</li>
<li class="alt">
<span>} </span><span class="keyword">else</span><span> {  </span>
</li>
<li>
<span>    </span><span class="comment">// Code here </span><span> </span>
</li>
<li class="alt"><span>} </span></li>
</ol>

Shakespeare would not have liked to see his native language twisted into this monster. Simplicity is popular in the right circumstances - not necessarily in some remote places - but not here. The "if ... else" module is the most commonly used conditional code in PHP, so it must be as safe and harmless as possible when used. There are many alternatives, but this conditional statement is perhaps the most robust.

<ol class="dp-c">
<li class="alt"><span><span>perchance (£condition) {  </span></span></li>
<li>
<span>    </span><span class="comment">// Code here </span><span> </span>
</li>
<li class="alt"><span>} otherwise {  </span></li>
<li>
<span>    </span><span class="comment">// Code here </span><span> </span>
</li>
<li class="alt"><span>} </span></li>
</ol>

The above modules are also suitable for Americanized, which can only be said to be bulky and disgusting switch... case concepts,

<ol class="dp-c">
<li class="alt"><span><span class="keyword">switch</span><span> (</span><span class="vars">$variable</span><span>) {  </span></span></li>
<li>
<span>    </span><span class="keyword">case</span><span> </span><span class="vars">$option1</span><span>:  </span>
</li>
<li class="alt">
<span>        </span><span class="comment">//Code here </span><span> </span>
</li>
<li>
<span>        </span><span class="keyword">break</span><span>;  </span>
</li>
<li class="alt">
<span>    </span><span class="keyword">case</span><span> </span><span class="vars">$option2</span><span>:  </span>
</li>
<li>
<span>        </span><span class="comment">//Code here </span><span> </span>
</li>
<li class="alt">
<span>        </span><span class="keyword">break</span><span>;  </span>
</li>
<li>
<span>    </span><span class="keyword">default</span><span>:  </span>
</li>
<li class="alt">
<span>        </span><span class="comment">//Code here </span><span> </span>
</li>
<li>
<span>        </span><span class="keyword">break</span><span>;  </span>
</li>
<li class="alt"><span>} </span></li>
</ol>

like "switch", "break" Keywords like ” and “default” are difficult for readers and lack connection. This American usage really needs improvement. (People who use American usage have some interesting ideas and hope to use statements like i_might_be_partial_to() instead of include() to show their programming genius):

<ol class="dp-c">
<li class="alt"><span><span>what_about (£variable) {  </span></span></li>
<li><span>    perhaps £possibility:  </span></li>
<li class="alt">
<span>        </span><span class="comment">//Code here </span><span> </span>
</li>
<li><span>        splendid;  </span></li>
<li class="alt"><span>    perhaps £other_possibility:  </span></li>
<li>
<span>        </span><span class="comment">//Code here </span><span> </span>
</li>
<li class="alt"><span>        splendid;  </span></li>
<li><span>    on_the_off_chance:  </span></li>
<li class="alt">
<span>        </span><span class="comment">//Code here </span><span> </span>
</li>
<li><span>        splendid;  </span></li>
<li class="alt"><span>} </span></li>
</ol>

Spelling

<ol class="dp-c">
<li class="alt"><span><span>imagecolorallocate()  </span></span></li>
<li><span>serialize()  </span></li>
<li class="alt"><span>newt_centered_window()  </span></li>
<li><span>connection_status() </span></li>
</ol>

At this point, words have made me suffer a lot. How can a self-respecting gentleman understand these "words"? It undermines anyone's belief in accepting the distorted meanings of words in programming languages. These "words," and numerous similar errors, should be immediately restored to their proper form.

<ol class="dp-c">
<li class="alt"><span><span>imagecolourallocate()  </span></span></li>
<li><span>serialise()  </span></li>
<li class="alt"><span>newt_centred_window()  </span></li>
<li><span>connexion_status() </span></li>
</ol>

Habit

<ol class="dp-c">
<li class="alt"><span><span>try {  </span></span></li>
<li>
<span>    </span><span class="comment">// Code here </span><span> </span>
</li>
<li class="alt">
<span>} catch (Exception </span><span class="vars">$e</span><span>) {  </span>
</li>
<li>
<span>    </span><span class="comment">// Handle exception </span><span> </span>
</li>
<li class="alt">
<span>    </span><span class="keyword">die</span><span>(</span><span class="string">'Message'</span><span>);  </span>
</li>
<li><span>} </span></li>
</ol>

try … catch block is a good example of PHP’s lack of features. The new PHP allows the use of this module too directly and lacks the restrictions it should have. Also, the word "die" is very depressing. This new module, although more lengthy, is more elegant and upbeat.

<ol class="dp-c">
<li class="alt"><span><span>would_you_mind {  </span></span></li>
<li>
<span>    </span><span class="comment">// Code here </span><span> </span>
</li>
<li class="alt"><span>} actually_i_do_mind (Exception £e) {  </span></li>
<li>
<span>    </span><span class="comment">// Politely move on </span><span> </span>
</li>
<li class="alt">
<span>    cheerio(</span><span class="string">'Message'</span><span>);  </span>
</li>
<li><span>} </span></li>
</ol>

Classes

In the hearts of British people, nothing is as important and deep-rooted as the concept of classes, and this part of PHP rarely changes , unless there are important changes made here.

<ol class="dp-c">
<li class="alt"><span><span class="keyword">class</span><span> Republic {  </span></span></li>
<li>
<span>    </span><span class="keyword">public</span><span> </span><span class="vars">$a</span><span>;  </span>
</li>
<li class="alt">
<span>    </span><span class="keyword">private</span><span> </span><span class="vars">$b</span><span>;  </span>
</li>
<li>
<span>    </span><span class="keyword">protected</span><span> </span><span class="vars">$c</span><span>;  </span>
</li>
<li class="alt"><span>}  </span></li>
<li>
<span class="vars">$example</span><span> = </span><span class="keyword">new</span><span> Republic; </span>
</li>
</ol>

First of all, there is no room for class hierarchy in popular systems, which is unacceptable. So we should first give the class a specific level - upper, middle, working - so that the class cannot use the methods of a higher-level class without explicit permission from the higher-level directive class (of course , even if it has subsequently accessed a higher-level class, it is not a formal member of the higher-level directive and cannot grant itself access to higher-level directives of other lower-level directive classes). "public" and "private" are synonymous in the British class system (e.g., school system naming), so these must be adjusted, as is the property visibility of "protected". The word "new", while feasible, needs to be replaced by a more appropriate word in class problems.

<ol class="dp-c">
<li class="alt"><span><span>upper_class Empire {  </span></span></li>
<li><span>    state £a;  </span></li>
<li class="alt">
<span>    </span><span class="keyword">private</span><span> £b;  </span>
</li>
<li><span>    hereditary £c;  </span></li>
<li class="alt"><span>}  </span></li>
<li><span>£example = nouveau Empire; </span></li>
</ol>

The sun never sets...

Hope these few simple changes can enhance PHP's reputation and status among many programming languages. It’s no longer a distant relative of crappy Americana. Instead, it falls back into the lap of the British as kings of scripting languages.

English original text:

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/445711.htmlTechArticleWhen Rasmus Lerdorf, the father of PHP, created PHP, he did not write it in Greenlandic or Danish (although he With Greenlandic and Danish ancestry), this is very sensible. Although English is used for him...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!