Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

PHP is a sample analysis written in British English

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

小编给大家分享一下PHP是用英式英语编写的示例分析,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!

一记耳光

$variable_name

最有必要更改就是要删除一些深受美国人喜欢的符号,并用一些更加精炼的符号代替,让PHP变得更加优雅。

£variable_name

开始吧

今天的英国程序员中,有多少人一开始接触到的就是"Hello World"这个典型的美国式程序,虽然简单但老套粗俗令人反感?一份更加冠冕正式的介绍将会促进大部分年轻的英国天才使用这种语言,从而为更广阔的用户群提供更加文雅的气氛。

缩写词

没有东西比没必要的缩写词更加让英国人痛恨的。"缩写词"在伦敦的街道上闻所未闻,正如土生土长的英国文法家不肯自降身份去发送"c u soon traffic kthxbye"等各种信息,宁愿使用一些看起来更加文雅的词句代替:"亲爱的先生或女士。只要时间允许,我希望在一个小时之内,尽快到达。我向各位保证,你们的马匹会得到妥善安置。敬上。"(输入较慢,是的,但是不至于仓促)。

从另一方面来说,PHP里面包含很多毫无必要的缩写字和缩写字首字母。

str_replace() is_int() var_dump() preg_match() json_encode() mysql_connect()

应该改成下面这样:

string_replace() is_integer() variable_dump() perl_regular_expression_match() javascript_object_notation_encode() my_structured_query_language_connect()

校正:我已经更正了"preg_match"的扩充--感谢指出来的朋友。

口才

if ($condition) { // Code here } else { // Code here }

莎士比亚可不愿意看到他的母语被扭曲成这个怪物。简练在适当的场合很受欢迎--在一些偏僻的地方未必如此--但不是这里。"if … else"模块是PHP之中用得最多的条件代码,所以它在使用时必须是尽可能的安全无害。有很多选择可以取代,但是这个条件语句也许是最稳健的。

perchance (£condition) { // Code here } otherwise { // Code here }

上述模块同样适用于美国化的,只能说是笨重的,让人厌恶的switch … case概念,

switch ($variable) { case $option1: //Code here break; case $option2: //Code here break; default: //Code here break; }

像"switch", "break" and "default"这样的关键字对读者来说很有难度并且缺乏联系。这种美式用法真是需要改进。(使用美式用法的人有一些有趣的想法,期望用i_might_be_partial_to()这样的语句来代替include()来显示他们天才的编程天赋):

what_about (£variable) { perhaps £possibility: //Code here splendid; perhaps £other_possibility: //Code here splendid; on_the_off_chance: //Code here splendid; }

拼写

imagecolorallocate() serialize() newt_centered_window() connection_status()

在这点上,单词让我吃过不少亏。自重的绅士期待该如何看得懂这些"单词"。它削弱了任何人接受编程语言中单词的曲解含义的信念。这些"单词"和众多相似的错误,应该立即恢复到适当的形式。

imagecolourallocate() serialise() newt_centred_window() connexion_status()

习惯

try { // Code here } catch (Exception $e) { // Handle exception die('Message'); }

try … catch 语句块是PHP缺乏特点的一个很好证明。新的PHP过于直接地允许使用该模块,缺乏应有的限制。另外,单词"die"很让人丧气。这个新模块,尽管更加冗长,但更为文雅和乐观。

would_you_mind { // Code here } actually_i_do_mind (Exception £e) { // Politely move on cheerio('Message'); }

在英国人的心里,没有什么东西跟类的概念一样重要和根深蒂固,而且,PHP当中的这一部分很少变动,除非是这里做出的重要更改。

class Republic { public $a; private $b; protected $c; } $example = new Republic;

首先,流行的系统中并没有类层次存在的余地,这是无法接受的。所以我们首先应该赋予类的特定等级--上层,中层,工作层(upper, middle, working )--如果没有更高等级指令类的明确许可,类就无法使用一个更高级的类的方法(当然,即使它后来已经访问了更高级的类,但它并非更高级指令的正式成员,无法授予自身访问其他低级别指令类的更高级指令)。"public"和"private",在英国人的类系统中是同义词(例如,学校制度命名),所以这些必须进行调整,"protected"的属性可见性也一样。单词"new",虽然可行,但在类问题上需要有一个更加恰当的词来代替。

upper_class Empire { state £a; private £b; hereditary £c; } £example = nouveau Empire;看完了这篇文章,相信你对"PHP是用英式英语编写的示例分析"有了一定的了解,如果想了解更多相关知识,欢迎关注行业资讯频道,感谢各位的阅读!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report