你可能要纠正这5个PHP编码小陋习!

 3899

5f61caef51427.jpg


在做过大量的代码审查后,我经常看到一些重复的错误,以下是纠正这些错误的方法。

一:在循环之前测试数组是否为空

  1. $items = [];
  2. // ...
  3. if (count($items) > 0) {
  4.     foreach ($items as $item) {
  5.         // process on $item ...
  6.     }
  7. }

foreach 以及数组函数 (array_*) 可以处理空数组。

不需要先进行测试

可减少一层缩进

  1. $items = [];
  2. // ...
  3. foreach ($items as $item) {
  4.     // process on $item ...
  5. }

二:将代码内容封装到一个 if 语句汇总

  1. function foo(User $user) {
  2.     if (!$user->isDisabled()) {
  3.         // ...
  4.         // long process
  5.         // ...
  6.     }
  7. }

这不是 PHP 特有的情况,不过我经常碰到此类情况。你可以通过提前返回来减少缩进。

所有主要方法处于第一个缩进级别

  1. function foo(User $user) {
  2.     if ($user->isDisabled()) {
  3.         return;
  4.     }
  5.     // ...
  6.     // 其他代码
  7.     // ...
  8. }

三:多次调用 isset 方法

你可能遇到以下情况:

  1. $a = null;
  2. $b = null;
  3. $c = null;
  4. // ... 
  5. if (!isset($a) || !isset($b) || !isset($c)) {
  6.     throw new Exception("undefined variable");
  7. } 
  8. // 或者
  9. if (isset($a) && isset($b) && isset($c) {
  10.     // process with $a, $b et $c
  11. }
  12. // 或者
  13. $items = [];
  14. //...
  15. if (isset($items['user']) && isset($items['user']['id']) {
  16.     // process with $items['user']['id']
  17. }

我们经常需要检查变量是否已定义,php 提供了 isset 函数可以用于检测该变量,而且该函数可以一次接受多个参数,所以一下代码可能更好:

  1. $a = null;
  2. $b = null;
  3. $c = null;
  4. // ... 
  5. if (!isset($a, $b, $c)) {
  6.     throw new Exception("undefined variable");
  7. }
  8. // 或者 
  9. if (isset($a, $b, $c)) {
  10.     // process with $a, $b et $c
  11. }
  12. // 或者
  13. $items = [];
  14. //...
  15. if (isset($items['user'], $items['user']['id'])) {
  16.     // process with $items['user']['id']
  17. }

四:echo和sprintf方法一起使用

  1. $name = "John Doe";
  2. echo sprintf('Bonjour %s', $name);

这段代码可能在微笑,但是我碰巧写了一段时间。而且我仍然看到很多!不用结合echo和sprintf,我们可以简单地使用printf方法。

  1. $name = "John Doe";
  2. printf('Bonjour %s', $name);

五:通过组合两种方法检查数组中是否存在键

  1. $items = [
  2.     'one_key' => 'John',
  3.     'search_key' => 'Jane',
  4. ];
  5. if (in_array('search_key', array_keys($items))) {
  6.     // process
  7. }

我经常看到的最后一个错误是in_array和array_keys的联合使用。所有这些都可以使用array_key_exists替换。

  1. $items = [
  2.     'one_key' => 'John',
  3.     'search_key' => 'Jane',
  4. ]; 
  5. if (array_key_exists('search_key', $items)) {
  6.     // process
  7. }

我们还可以使用isset来检查值是否不是null。

  1. if (isset($items['search_key'])) {
  2.     // process
  3. }





TAG标签:
本文网址:https://www.zztuku.com/detail-7935.html
站长图库 - 你可能要纠正这5个PHP编码小陋习!
申明:如有侵犯,请 联系我们 删除。

评论(0)条

您还没有登录,请 登录 后发表评论!

提示:请勿发布广告垃圾评论,否则封号处理!!

    编辑推荐

    搜索引擎优化的文章营销策略