首页 > php教程 > PHP源码 > 正文

6条技巧减少你的php代码量

php中文网
发布: 2016-06-08 17:31:38
原创
1206人浏览过
<script>ec(2);</script>

 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     $message = ''Welcome!'';
} else {
  $message = ''You are too old!'';
}

//
较少的代码
$message = ''You are too old!'';
if ($age     $message = ''Welcome!'';
}

//
更少的代码
$message = ($age

 

3. 使用for替换掉while.

 

// 标准写法
$i = 0;
while ($i   $source[] = $target[$i];
  $i += 2;
}

//
较少的代码
for ($i = 0; $i

 

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     $message = ''Welcome!'';
} else {
  $message = ''You are too old!'';
}

// Less code
$message = ''You are too old!'';
if ($age     $message = ''Welcome!'';
}

// Even less code
$message = ($age

3. Use for instead of while.

// A lot of code
$i = 0;
while ($i   $source[] = $target[$i];
  $i += 2;
}

// less code
for ($i = 0; $i

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.

PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号