91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP編程中的不良習慣有哪些

發布時間:2020-10-26 09:02:47 來源:億速云 閱讀:162 作者:小新 欄目:編程語言

小編給大家分享一下PHP編程中的不良習慣有哪些,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

測試循環前數組是否為空?

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

foreach循環或數組函數(array_*)可以處理空數組。

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

將方法的所有內容封裝在if語句中

function foo(User $user) {    if (!$user->isDisafunction foo(User $user) {    if (!$user->isDisabled()) {        // ...
        // long process
        // ...
    }
}bled()) {        // ...
        // long process
        // ...
    }
}復制代碼

這不是特定于PHP的,但我經常看到它。你可以通過提前返回,來減少縮進級別的極簡代碼! 該函數的所有“有用”主體現在處于第一個縮進級別

function foo(User $user) {    if ($user->isDisabled()) {        return;
    }    // ...
    // long process
    // ...}復制代碼

多次調用isset方法

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

我們經常需要檢查是否已定義變量(而不是null)。 在PHP中,我們可以使用isset函數來做到這一點。而且該函數一次可以接受多個參數!

$a = null;
$b = null;
$c = null;// ...if (!isset($a, $b, $c)) {    throw new Exception("undefined variable");
}// orif (isset($a, $b, $c)) {    // process with $a, $b et $c}// or $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);復制代碼

通過組合兩種方法檢查數組中鍵的存在

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

最后一個錯誤我看到的往往是聯合使用in_arrayarray_keys。所有這些都可以使用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}復制代碼

看完了這篇文章,相信你對PHP編程中的不良習慣有哪些有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

揭西县| 莱西市| 九江县| 秭归县| 乌审旗| 崇礼县| 会昌县| 孟津县| 福建省| 长岭县| 嘉善县| 丰宁| 洪雅县| 乳山市| 克什克腾旗| 台南市| 景洪市| 武平县| 达孜县| 石首市| 册亨县| 二连浩特市| 中西区| 西丰县| 济源市| 芦山县| 南京市| 习水县| 阿坝| 微山县| 惠东县| 浏阳市| 棋牌| 苍溪县| 汤原县| 施甸县| 唐海县| 二手房| 丰原市| 镇雄县| 永兴县|