小編給大家分享一下PHP編程中的不良習(xí)慣有哪些,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
成都創(chuàng)新互聯(lián)公司公司2013年成立,先為貢山等服務(wù)建站,貢山等地企業(yè),進行企業(yè)商務(wù)咨詢服務(wù)。為貢山企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。$items = [];// ...if (count($items) > 0) { foreach ($items as $item) { // process on $item ... }}復(fù)制代碼
foreach
循環(huán)或數(shù)組函數(shù)(array_*)
可以處理空數(shù)組。
$items = [];// ...foreach ($items as $item) { // process on $item ...}復(fù)制代碼
function foo(User $user) { if (!$user->isDisafunction foo(User $user) { if (!$user->isDisabled()) { // ... // long process // ... } }bled()) { // ... // long process // ... } }復(fù)制代碼
這不是特定于PHP的,但我經(jīng)常看到它。你可以通過提前返回,來減少縮進級別的極簡代碼! 該函數(shù)的所有“有用”主體現(xiàn)在處于第一個縮進級別
function foo(User $user) { if ($user->isDisabled()) { return; } // ... // long process // ...}復(fù)制代碼
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']}復(fù)制代碼
我們經(jīng)常需要檢查是否已定義變量(而不是null
)。
在PHP中,我們可以使用isset函數(shù)來做到這一點。而且該函數(shù)一次可以接受多個參數(shù)!
$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']}復(fù)制代碼
echo
方法和sprintf
結(jié)合使用$name = "John Doe";echo sprintf('Bonjour %s', $name);復(fù)制代碼
這段代碼可能在微笑,但是我碰巧寫了一段時間。而且我仍然看到很多!除了結(jié)合echo
和sprintf
,我們可以簡單地使用printf
方法。
$name = "John Doe"; printf('Bonjour %s', $name);復(fù)制代碼
$items = [ 'one_key' => 'John', 'search_key' => 'Jane', ];if (in_array('search_key', array_keys($items))) { // process}復(fù)制代碼
最后一個錯誤我看到的往往是聯(lián)合使用in_array
和array_keys
。所有這些都可以使用array_key_exists替換。
$items = [ 'one_key' => 'John', 'search_key' => 'Jane', ];if (array_key_exists('search_key', $items)) { // process}復(fù)制代碼
我們還可以使用isset來檢查值是否是null。
if (isset($items['search_key'])) { // process}復(fù)制代碼
看完了這篇文章,相信你對PHP編程中的不良習(xí)慣有哪些有了一定的了解,想了解更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道,感謝各位的閱讀!