亚洲最大看欧美片,亚洲图揄拍自拍另类图片,欧美精品v国产精品v呦,日本在线精品视频免费

  • 站長資訊網(wǎng)
    最全最豐富的資訊網(wǎng)站

    你可能要糾正這5個PHP編碼小陋習!

    推薦:《PHP視頻教程》

    你可能要糾正這5個PHP編碼小陋習!

    在做過大量的代碼審查后,我經常看到一些重復的錯誤,以下是糾正這些錯誤的方法。

    一:在循環(huán)之前測試數(shù)組是否為空

    $items = []; // ... if (count($items) > 0) {     foreach ($items as $item) {         // process on $item ...     } }

    foreach 以及數(shù)組函數(shù) (array_*) 可以處理空數(shù)組。

    • 不需要先進行測試
    • 可減少一層縮進
    $items = []; // ... foreach ($items as $item) {     // process on $item ... }

    二:將代碼內容封裝到一個 if 語句匯總

    function foo(User $user) {     if (!$user->isDisabled()) {         // ...         // long process         // ...     } }

    這不是 PHP 特有的情況,不過我經常碰到此類情況。你可以通過提前返回來減少縮進。

    所有主要方法處于第一個縮進級別

    function foo(User $user) {     if ($user->isDisabled()) {         return;     }      // ...     // 其他代碼     // ... }

    三:多次調用 isset 方法

    你可能遇到以下情況:

    $a = null; $b = null; $c = null; // ...  if (!isset($a) || !isset($b) || !isset($c)) {     throw new Exception("undefined variable"); }  // 或者  if (isset($a) && isset($b) && isset($c) {     // process with $a, $b et $c }  // 或者  $items = []; //... if (isset($items['user']) && isset($items['user']['id']) {     // process with $items['user']['id'] }

    我們經常需要檢查變量是否已定義,php 提供了 isset 函數(shù)可以用于檢測該變量,而且該函數(shù)可以一次接受多個參數(shù),所以一下代碼可能更好:

    $a = null; $b = null; $c = null; // ...  if (!isset($a, $b, $c)) {     throw new Exception("undefined variable"); }  // 或者  if (isset($a, $b, $c)) {     // process with $a, $b et $c }  // 或者  $items = []; //... if (isset($items['user'], $items['user']['id'])) {     // process with $items['user']['id'] }

    四:echo和sprintf方法一起使用

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

    這段代碼可能在微笑,但是我碰巧寫了一段時間。而且我仍然看到很多!不用結合echosprintf,我們可以簡單地使用printf方法。

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

    五:通過組合兩種方法檢查數(shù)組中是否存在鍵

    $items = [     'one_key' => 'John',     'search_key' => 'Jane', ];  if (in_array('search_key', array_keys($items))) {     // process }

    我經??吹降淖詈笠粋€錯誤是in_arrayarray_keys的聯(lián)合使用。所有這些都可以使用array_key_exists替換。

    $items = [     'one_key' => 'John',     'search_key' => 'Jane', ];  if (array_key_exists('search_key', $items)) {     // process }

    我們還可以使用isset來檢查值是否不是null

    if (isset($items['search_key'])) {     // process }

    原文地址:https://dev.to/klnjmm/5-bad-habits-to-lose-in-php-2j98

    譯文地址:https://learnku.com/php/t/49583

    贊(0)
    分享到: 更多 (0)
    網(wǎng)站地圖   滬ICP備18035694號-2    滬公網(wǎng)安備31011702889846號