PHP是一種非常流行的全球性編程語言,但是在進(jìn)行代碼編寫的過程中,有些情況下我們需要注意一下PHP語言中不能加的內(nèi)容
首先,我們來看一下PHP語言中不能加的運(yùn)算符,如下:
&&(邏輯與) ||(邏輯或) !(邏輯非) <<(左移) >>(右移) &(位與) |(位或) ^(異或) ~(取反)
雖然這些運(yùn)算符在其他語言中常常被使用,但是在PHP語言中,由于它們具有特殊的含義,因此不能在代碼中加入。
其次,PHP語言中也有一些關(guān)鍵詞是不能加的,如下所示:
as break case catch class const continue declare default die do echo else elseif empty enddeclare endfor endforeach endif endswitch endwhile eval exit extends final for foreach function global goto if implements include include_once instanceof insteadof interface isset list namespace new return require require_once static switch throw trait try unset use var while xor yield
這些關(guān)鍵詞都是PHP語言中的保留字,因此不能以常規(guī)方法使用。
最后,我們需要注意一下PHP語言中不能加的常量,如下所示:
true false null
這些常量是PHP語言中的預(yù)定義常量,不能在代碼中重新定義或修改其值。
綜上所述,雖然PHP是一種非常靈活的編程語言,但是在進(jìn)行代碼編寫的時(shí)候,我們還是需要注意一下PHP語言中不能加的內(nèi)容,以免程序出現(xiàn)錯(cuò)誤。
上一篇php 不等待返回