create account

论PHP是世界上最好的语言 PHP is the best programming language in the world! by justyy

View this thread on: hive.blogpeakd.comecency.com
· @justyy · (edited)
$104.09
论PHP是世界上最好的语言 PHP is the best programming language in the world!
![](https://steemitimages.com/DQmcm4Jqp99HiWVU2URNBss6rT5mADWXXCNq3TAJXzfWBp3/image.png)
*Image Credit: Pixabay.com*

# ABSTRACT:   PHP is the best programming language in the world!

[PHP](https://justyy.com/archives/4917)为啥是世界上最好的语言?你也许听过这个梗:

> 女孩:“你能让这个论坛的人都吵起来,我今晚就跟你走。”程序员:“PHP是最好的语言! ”论坛炸锅了,各种吵架...女孩:“服了你了,我们走吧你想干啥都行。”程序员:“今天不行,我一定要说服他们,[PHP](https://justyy.com/archives/3679)必须是最好的语言。”

今天 我就来说说 [PHP](https://justyy.com/archives/3650) 为什么 **真是** 世界上最好的语言。

# 函数特别多
比如你想读取一个文件,只需要这么一句话:

```
$data = file_get_contents("文件 或者 是URL");
```

真是没有比它更简单明了的了。 PHP强大的地方在于 它的函数特别特别的多,你只需要拿来用就可以了,并不需要重新造轮子。

7年前 PHP 的函数就有 将近6000个,更不用提最新的PHP 7了。

> 三个程序员坐在格子间里编程。一个程序员一言不发,他用的是python.一个程序员写一会儿就按一下编译,然后就玩会儿手机。他用的是C++。一个程序员坐在那里浏览网页,不时飞快的键入一些字符。经理看到,怒道:你怎么不干活,尽在上网。回答:我在查实现这个功能需要用什么函数。他用的是PHP。

# 门槛低
PHP 入门门槛低, C类型的语法容易理解,并不需要特别配置就可以很轻松的运行WEB程序。比如你安装完 apache2 再安装一个PHP,然后在WEB目录下创建一个PHP:

```
<?php
   echo "PHP 是世界上最好的语言";
```

就可以在浏览器里运行服务端PHP代码了,真是太方便了。

# 框架多
各种现成的框架把 逻辑层和表现层分开,你只要拿来用就可以了。比如:Laravel

# PHP 主宰 WEB
PHP在 TIOBE 每月编程语言排名 长期排名前10,这很大程序得易于 wordpress 是PHP写的,并且互联网上大多数网站都用到了PHP。

![](https://steemitimages.com/DQmdWT3zM5DFJiM1vjyiwXfHxoue8bwD6AC6nUgPqWfvn8W/image.png)
*// source: https://w3techs.com/technologies/details/pl-php/all/all*

PHP是贫民出生,有着广泛的群众基础,现在已然是一门顶级WEB编程语言。

# 运行速度快
PHP5之前 也许我们会说 PHP的代码效率太差运行慢,但是[PHP7](https://justyy.com/archives/3637)之后,代码执行效率已经很快了。不过相比 C++还是慢,但是处理 WEB,跑跑 wordpress 已经足够了。

# PHP访问数据库
PHP和 [MySQL](https://justyy.com/archives/3009) 简直是天造的一对,访问数据库的方式太简单了,连接数据库只要:

```
<?php
$conn = mysqli_connect("localhost","my_user","my_password","my_db");
```

还有人调侃 离开 [MYSQL](https://justyy.com/archives/5043)的PHP就没用啦。
![](https://steemitimages.com/DQmTpJN84mG8Sbey6WQ25GM6TvmMzmK5QSzgh2jL2r5CSPC/image.png)
*Source: https://helloacm.com/a-quick-performance-comparison-on-languages-at-codeforces/*

但是实际上我用 [sublime text](https://steakovercooked.com/ch/Life.Record/text/article/2016/11/sublime-text-3-registration-license-key.txt)  配置 php, 时常也用PHP来写些小程序 比如参加 @kenchung  的数学编程比赛,为啥?因为配置方便,函数多,写起代码来快,运行速度快:很快速的能验证一些想法。

# PHP是严谨的
比如在类方法里面访问 类成员需要 加上 $this

```
public class JustYY {
   private $rep = 67;
   
   public function getReputation() {
      return $this->rep;
  }
}
```

而在 [C#](https://justyy.com/archives/2396),[C++](https://justyy.com/archives/5345) 或JAVA里,你都是不用写这个 $this 的了,所以有时候很容易搞错:特别是你方法里有一个同名的变量。

# PHP的缺点
当然 PHP也有缺点,比如 不支持多线程,可是我们并不需要啊。现在 web 服务器可以配置成多个 server, 完全可以做到多个 PHP 进程(不是线程)来同时跑多个程序。

PHP入门低,所以很容易上手,写出来的代码 参差不齐,很容易把逻辑和表现层混在一块,日后很不容易维护和调试,一些公司往往招一些新手过来没有经过怎么培训就写代码,写出来一团糟,但是PHP完全可以跑,只是别人在看代码的时候一头雾水,这往往也是编程老手看不上PHP程序员的原因之一吧。

最后,弄一个 GIF,PHP[是最好的语言](https://justyy.com/archives/3637),不服来战!

![](https://justyy.com/gif/justyy-php-is-the-best.gif)

![](https://justyy.com/wp-content/uploads/2017/07/justyy-steemit.png)

**[CN 每日排行榜](https://steemit.com/cn/@justyy/daily-cn-updates---cn72017-09-22)**

// Later, it may be reposted to my blogs: [justyy.com](https://justyy.com), [helloacm.com](https://helloacm.com) and [codingforspeed.com](https://codingforspeed.com)  稍后同步到我的[中文博客](https://justyy.com)和英文[计算机](https://helloacm.com)[博客](https://codingforspeed.com)。
- [论PHP是世界上最好的语言!](https://justyy.com/archives/5358)

Originally published at https://steemit.com Thank you for reading my post, feel free to Follow, Upvote, Reply, ReSteem (repost) @justyy which motivates me to create more quality posts.

原文首发于 https://Steemit.com 首发。感谢阅读,如有可能,欢迎Follow, Upvote, Reply, ReSteem (repost) @justyy 激励我创作更多更好的内容。

![](https://steemitimages.com/0x0/https://justyy.com/gif/steemit.gif)

**@justyy 是CN 区的点赞机器人**,对优质内容进行点赞,只要代理给 @justyy 每天收利息(100 SP 每天0.04 SBD)并且能获得一次相应至少2倍的点赞,可以认为是VP 200%+ ,详细请看:
- [cn区最低保障系统 上线了!](https://steemit.com/cn/@justyy/cn-introduction-to-the-cn-wechat-group-voting-robot-justyy) 
- [CN 区优质内容点赞机器人上线了!](https://steemit.com/cn/@justyy/a-good-content-upvote-bot-cn) 
- [点赞机器人每日点赞记录整合到每日报表中!](https://steemit.com/cn/@justyy/good-content-upvoting-history-now-integrated-into-to-daily-ranking-table)
- [虽然不挣钱,但是CN区低保计划还会继续下去](https://steemit.com/cn/@justyy/cn)

![](https://justyy.com/gif/justyy-php-is-the-best.gif)
欢迎你发表你的见解和看法,特别有意思的评论我可能会奖励你1 SBD哦。
Interesting Comments might be rewarded with 1 SBD.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 164 others
properties (23)
authorjustyy
permlinkphp-php-is-the-best-programming-language-in-the-world
categorycn
json_metadata{"tags":["cn","cn-programming","steemstem","php"],"users":["kenchung","justyy"],"image":["https://steemitimages.com/DQmcm4Jqp99HiWVU2URNBss6rT5mADWXXCNq3TAJXzfWBp3/image.png","https://steemitimages.com/DQmdWT3zM5DFJiM1vjyiwXfHxoue8bwD6AC6nUgPqWfvn8W/image.png","https://steemitimages.com/DQmTpJN84mG8Sbey6WQ25GM6TvmMzmK5QSzgh2jL2r5CSPC/image.png","https://justyy.com/gif/justyy-php-is-the-best.gif","https://justyy.com/wp-content/uploads/2017/07/justyy-steemit.png","https://steemitimages.com/0x0/https://justyy.com/gif/steemit.gif"],"links":["https://justyy.com/archives/4917","https://justyy.com/archives/3679","https://justyy.com/archives/3650","https://w3techs.com/technologies/details/pl-php/all/all","https://justyy.com/archives/3637","https://justyy.com/archives/3009","https://justyy.com/archives/5043","https://helloacm.com/a-quick-performance-comparison-on-languages-at-codeforces/","https://steakovercooked.com/ch/Life.Record/text/article/2016/11/sublime-text-3-registration-license-key.txt","https://justyy.com/archives/2396","https://justyy.com/archives/5345","https://steemit.com/cn/@justyy/daily-cn-updates---cn72017-09-22","https://justyy.com","https://helloacm.com","https://codingforspeed.com","https://justyy.com/archives/5358","https://steemit.com","https://Steemit.com","https://steemit.com/cn/@justyy/cn-introduction-to-the-cn-wechat-group-voting-robot-justyy","https://steemit.com/cn/@justyy/a-good-content-upvote-bot-cn","https://steemit.com/cn/@justyy/good-content-upvoting-history-now-integrated-into-to-daily-ranking-table","https://steemit.com/cn/@justyy/cn"],"app":"steemit/0.1","format":"markdown"}
created2017-09-22 11:21:24
last_update2017-09-27 17:54:27
depth0
children30
last_payout2017-09-29 11:21:24
cashout_time1969-12-31 23:59:59
total_payout_value82.301 HBD
curator_payout_value21.787 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4,183
author_reputation280,616,224,641,976
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,607,871
net_rshares36,361,078,761,120
author_curate_reward""
vote details (228)
@beautifulbella ·
$0.07
每个程序语言都有个HELLO WORLD的例子,没什么特别的。 不如写个帖子如何用PHP在STEEMIT发帖:)
👍  
properties (23)
authorbeautifulbella
permlinkre-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t122833021z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 12:28:33
last_update2017-09-22 12:28:33
depth1
children0
last_payout2017-09-29 12:28:33
cashout_time1969-12-31 23:59:59
total_payout_value0.070 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation1,876,932,920,921
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,612,668
net_rshares25,189,608,810
author_curate_reward""
vote details (1)
@coldhair ·
PHP是“拍黄片”的意思吗?搞这么复杂~
properties (22)
authorcoldhair
permlinkre-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t115647413z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 11:56:39
last_update2017-09-22 11:56:39
depth1
children3
last_payout2017-09-29 11:56:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation34,617,352,014,488
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,610,362
net_rshares0
@justyy ·
额。。拍好片
properties (22)
authorjustyy
permlinkre-coldhair-re-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t115747065z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 11:57:48
last_update2017-09-22 11:57:48
depth2
children2
last_payout2017-09-29 11:57:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation280,616,224,641,976
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,610,447
net_rshares0
@tvb ·
以上对话。。。。这不是曾经我俩的对话吗?!
properties (22)
authortvb
permlinkre-justyy-re-coldhair-re-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t124003768z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 12:40:09
last_update2017-09-22 12:40:09
depth3
children1
last_payout2017-09-29 12:40:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation35,178,037,825,802
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,613,580
net_rshares0
@fr3eze ·
最近想学coding做一个简单软件通过api来监视各个交易平台的币种,请问php合适吗?不然有什么适合的语言和途径?
properties (22)
authorfr3eze
permlinkre-justyy-php-php-is-the-best-programming-language-in-the-world-20170923t022453005z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-23 02:24:54
last_update2017-09-23 02:24:54
depth1
children1
last_payout2017-09-30 02:24:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation62,201,653,753,684
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,669,158
net_rshares0
@justyy ·
可以。
properties (22)
authorjustyy
permlinkre-fr3eze-re-justyy-php-php-is-the-best-programming-language-in-the-world-20170923t070842764z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-23 07:08:45
last_update2017-09-23 07:08:45
depth2
children0
last_payout2017-09-30 07:08:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3
author_reputation280,616,224,641,976
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,683,859
net_rshares0
@justyy ·
$0.48
PHP  是世界上最好的语言!(以下注意队形)
👍  
properties (23)
authorjustyy
permlinkre-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t114528781z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 11:45:30
last_update2017-09-22 11:45:30
depth1
children7
last_payout2017-09-29 11:45:30
cashout_time1969-12-31 23:59:59
total_payout_value0.483 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation280,616,224,641,976
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,609,545
net_rshares169,078,268,853
author_curate_reward""
vote details (1)
@coldhair ·
PHP 是世界上最好的语言!
properties (22)
authorcoldhair
permlinkre-justyy-re-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t115328570z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 11:53:21
last_update2017-09-22 11:53:21
depth2
children0
last_payout2017-09-29 11:53:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation34,617,352,014,488
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,610,109
net_rshares0
@dapeng · (edited)
中文是世界上最好的语言!
properties (22)
authordapeng
permlinkre-justyy-re-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t144430108z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 14:44:30
last_update2017-09-22 14:49:51
depth2
children0
last_payout2017-09-29 14:44:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation64,632,001,917,831
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,623,100
net_rshares0
@kenchung ·
PHP 是世界上最好的语言!
properties (22)
authorkenchung
permlinkre-justyy-re-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t143318062z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 14:33:18
last_update2017-09-22 14:33:18
depth2
children0
last_payout2017-09-29 14:33:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation41,181,348,504,685
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,622,179
net_rshares0
@luneknight · (edited)
PHP 是世界上最好的语言!
properties (22)
authorluneknight
permlinkre-justyy-re-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t153520797z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 15:35:24
last_update2017-09-22 15:35:39
depth2
children0
last_payout2017-09-29 15:35:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation2,906,717,602,601
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,627,669
net_rshares0
@shenchensucc ·
PHP 是世界上最好的语言!
properties (22)
authorshenchensucc
permlinkre-justyy-re-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t123046094z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 12:30:21
last_update2017-09-22 12:30:21
depth2
children0
last_payout2017-09-29 12:30:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation100,205,759,373,709
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,612,800
net_rshares0
@tvb ·
PHP 是世界上最好的语言!
👍  
properties (23)
authortvb
permlinkre-justyy-re-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t124025589z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 12:40:33
last_update2017-09-22 12:40:33
depth2
children0
last_payout2017-09-29 12:40:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation35,178,037,825,802
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,613,620
net_rshares6,125,394,437
author_curate_reward""
vote details (1)
@zhengkai ·
如果我说不是怕被打。。。PHP 是世界上最好的语言!(逃~
properties (22)
authorzhengkai
permlinkre-justyy-re-justyy-php-php-is-the-best-programming-language-in-the-world-20170924t020303976z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-24 02:01:33
last_update2017-09-24 02:01:33
depth2
children0
last_payout2017-10-01 02:01:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation-24,976,149,703
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,754,797
net_rshares0
@luneknight ·
请问最后这输入效果怎么实现的
properties (22)
authorluneknight
permlinkre-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t154334521z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 15:43:39
last_update2017-09-22 15:43:39
depth1
children1
last_payout2017-09-29 15:43:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation2,906,717,602,601
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,628,372
net_rshares0
@justyy ·
VS  插件  power mode
properties (22)
authorjustyy
permlinkre-luneknight-re-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t161018098z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 16:10:18
last_update2017-09-22 16:10:18
depth2
children0
last_payout2017-09-29 16:10:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation280,616,224,641,976
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,630,621
net_rshares0
@minnowpond1 ·
This post recieved an upvote from minnowpond. If you would like to recieve upvotes from minnowpond on all your posts, simply FOLLOW @minnowpond
properties (22)
authorminnowpond1
permlinkre-php-php-is-the-best-programming-language-in-the-world-20170922t113215
categorycn
json_metadata"{"app": "pysteem/0.5.4"}"
created2017-09-22 11:32:15
last_update2017-09-22 11:32:15
depth1
children0
last_payout2017-09-29 11:32:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length143
author_reputation383,828,786,455
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,608,628
net_rshares0
@oguzdelioglu ·
Well said, I really like this that you've laid out. And I definitely share the viewpoint with you. I also hope to leave my legacy here on steemit, and what I share here is what I would want to be remembered for. I think we can all look for something new! Thank you for being here. :)
properties (22)
authoroguzdelioglu
permlinkre-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t121804585z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 12:18:03
last_update2017-09-22 12:18:03
depth1
children0
last_payout2017-09-29 12:18:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length283
author_reputation-969,546,668,235
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,611,867
net_rshares0
@tvb ·
php确实是好!就是好,比楼主偶像还要好哈哈哈
properties (22)
authortvb
permlinkre-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t113721480z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 11:37:27
last_update2017-09-22 11:37:27
depth1
children0
last_payout2017-09-29 11:37:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation35,178,037,825,802
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,609,004
net_rshares0
@tvb ·
最后这gif老帅了。
properties (22)
authortvb
permlinkre-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t114032720z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 11:40:39
last_update2017-09-22 11:40:39
depth1
children2
last_payout2017-09-29 11:40:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation35,178,037,825,802
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,609,217
net_rshares0
@justyy ·
我用的是 screenTogif 这个软件弄的。
properties (22)
authorjustyy
permlinkre-tvb-re-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t201445293z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 20:14:48
last_update2017-09-22 20:14:48
depth2
children1
last_payout2017-09-29 20:14:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation280,616,224,641,976
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,649,558
net_rshares0
@tvb ·
哈哈学会了
properties (22)
authortvb
permlinkre-justyy-re-tvb-re-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t202327228z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 20:23:33
last_update2017-09-22 20:23:33
depth3
children0
last_payout2017-09-29 20:23:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation35,178,037,825,802
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,650,176
net_rshares0
@tvb ·
果断转发, 我觉得我就是那个把逻辑层和表现层写在一起的菜乌!
properties (22)
authortvb
permlinkre-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t114124735z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 11:41:30
last_update2017-09-22 11:41:30
depth1
children0
last_payout2017-09-29 11:41:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation35,178,037,825,802
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,609,281
net_rshares0
@vincentyip ·
我也喜歡編程呢,很高興中文區有這麼多programming的帖子!
properties (22)
authorvincentyip
permlinkre-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t145100786z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 14:51:00
last_update2017-09-22 14:51:00
depth1
children4
last_payout2017-09-29 14:51:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation2,393,663,768,357
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,623,655
net_rshares0
@justyy ·
你可以关注 标签 cn-programming
properties (22)
authorjustyy
permlinkre-vincentyip-re-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t165943635z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 16:59:45
last_update2017-09-22 16:59:45
depth2
children3
last_payout2017-09-29 16:59:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation280,616,224,641,976
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,634,638
net_rshares0
@tvb ·
居然还有这个标签,今天才知道。。。
properties (22)
authortvb
permlinkre-justyy-re-vincentyip-re-justyy-php-php-is-the-best-programming-language-in-the-world-20170922t191603669z
categorycn
json_metadata{"tags":["cn"],"app":"steemit/0.1"}
created2017-09-22 19:16:12
last_update2017-09-22 19:16:12
depth3
children2
last_payout2017-09-29 19:16:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation35,178,037,825,802
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,645,335
net_rshares0
@xoxois ·
Good posts..
I like it
properties (22)
authorxoxois
permlinkre-justyy-2017922t192747191z
categorycn
json_metadata{"tags":"cn","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-09-22 12:27:51
last_update2017-09-22 12:27:51
depth1
children0
last_payout2017-09-29 12:27:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation32,706,272,181,022
root_title"论PHP是世界上最好的语言 PHP is the best programming language in the world!"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id15,612,613
net_rshares0