设为首页 收藏本站
查看: 690|回复: 0

[经验分享] 6条技巧减少你的php代码量

[复制链接]

尚未签到

发表于 2017-4-13 08:19:13 | 显示全部楼层 |阅读模式
  版权声明:原创作品,允许转载,转载时请务必以超链接形式标明文章原始出版、作者信息和本声明。否则将追究法律责任。http://blog.csdn.net/mayongzhan - 马永占,myz,mayongzhan

  原文地址:http://www.alexatnet.com/node/100
PHP是一个很好的语言,而且有很多惊喜。而今天我看到了一个有趣的方法,在Arnold Daniels的博客。他谈到PHP中的临时变量。这个秘诀有益于"懒惰"的程序员,使程序员可以不用再去想该去给变量取个什么名字。他们可以使用这样的变量名:${0}。

我比Arnold Daniels更懒,根本就不想用变量。下面有一些技巧让你的代码更少。

1. 使用 || (or) 和 && (and) 操作代替 if.

// 标准写法
$status = fwrite($h, 'some text');
if (!$status) {
log('Writing failed');
}
  // 较少的代码
${0} = fwrite($h, 'some text');
if (!${0}) log('Writing failed');
  // 更少的代码
fwrite($h, 'some text') or log('Writing failed');

2. 使用三元运算符.

// 标准写法
if ($age < 16) {
$message = 'Welcome!';
} else {
$message = 'You are too old!';
}
  // 较少的代码
$message = 'You are too old!';
if ($age < 16) {
$message = 'Welcome!';
}
  // 更少的代码
$message = ($age < 16) ? 'Welcome!' : 'You are too old!';

3. 使用for替换掉while.

// 标准写法
$i = 0;
while ($i < 100) {
$source[] = $target[$i];
$i += 2;
}
  // 较少的代码
for ($i = 0; $i < 100; $source[] = $target[$i+=2]);

4. 很多地方是必须写变量。例如: PHP fluent API tips 。 例如:一个函数调用得到一个数组,然后直接使用数组元素。

//下面这个例子会发生错误,因为函数调用,返回的数组没有先赋值给一个变量,而直接使用['extension']。

$ext = pathinfo('file.png')['extension'];
// result: Parse error: syntax error, unexpected '[' in ... on line ...

你可以建立一个函数来解决这个问题,如下:(相当不错的方法,看着有点别扭...)

// returns reference to the created object
function &r($v) { return $v; }
// returns array offset
function &a(&$a, $i) { return $a[$i]; }

5. 多花时间去研究php自带的函数方法,PHP有很多很有趣的方法能使你的代码更短。

6. 当写更多的代码可以使程序更清晰的时候,不要懒惰。 多花时间写注释,尽量写易读的代码。这才是真正节约时间的技巧。(多写注释和易读的代码,在以后修改调试的时候会节约时间)





PHP is a good language, but there are always surprises. And today I've seen an interesting approach in Arnold Daniels's blog. He talks about temporary variables in PHP. This tip is useful to "lazy" developers who do not even think about variable names. They may prefer magic names like ${0} and 0 is good enough variable name, why not...
But I'm even more lazy then Arnold and sure that when there is no variable, then there is no problem. So here are a few tips that can make your code shorter and harder to read :-)
1. Use || (or) and && (and) operations instead of if.
// A lot of code
$status = fwrite($h, 'some text');
if (!$status) {
log('Writing failed');
}
  // Less code
${0} = fwrite($h, 'some text');
if (!${0}) log('Writing failed');
  // Even less code
fwrite($h, 'some text') or log('Writing failed');
2. Use ternary operator.
// A lot of code
if ($age < 16) {
$message = 'Welcome!';
} else {
$message = 'You are too old!';
}
  // Less code
$message = 'You are too old!';
if ($age < 16) {
$message = 'Welcome!';
}
  // Even less code
$message = ($age < 16) ? 'Welcome!' : 'You are too old!';
3. Use for instead of while.
// A lot of code
$i = 0;
while ($i < 100) {
$source[] = $target[$i];
$i += 2;
}
  // less code
for ($i = 0; $i < 100; $source[] = $target[$i+=2]);
4. In some cases PHP requires you to create a variable. For example, ech the PHP fluent API tips article. Another example is getting array element when array is returned by the function.
$ext = pathinfo('file.png')['extension'];
// result: Parse error: syntax error, unexpected '[' in ... on line ...
To handle all these situation you can create a set of small functions which shortcuts frequently used operations.
// returns reference to the created object
function &r($v) { return $v; }
// returns array offset
function &a(&$a, $i) { return $a[$i]; }
5. Explore the language you use. PHP is very powerful and has a lot of functions and interesting aspects of the language which can make your code more efficient and short.
6. When it is better to write more and then read the code easily, do not be lazy. Spend a few seconds and write a comment and more readable construction. This is only a tip in this list that really can save hours, not minutes.

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-364162-1-1.html 上篇帖子: [转载]50点提高PHP编程效率 引入缓存机制提升性能 下篇帖子: [转载]50点提高PHP编程效率 引入缓存机制提升性能
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表