2 回答

TA貢獻(xiàn)1893條經(jīng)驗(yàn) 獲得超10個(gè)贊
要知道是真是假,你的服務(wù)器必須運(yùn)行該函數(shù)(因?yàn)槟阋笏\(yùn)行)。因此,'s 和 s 將運(yùn)行并顯示在您的頁(yè)面上。如果你的意思是函數(shù)返回?cái)?shù)據(jù):它不應(yīng)該出現(xiàn)在這個(gè)例子中(因?yàn)槟銢](méi)有把它發(fā)送到客戶(hù)端),這將意味著發(fā)生了比我們?cè)谶@里看到的更多的事情。!do_something()echoprint
如果您不想在語(yǔ)句中運(yùn)行該函數(shù),則應(yīng)執(zhí)行如下操作:if
$do_somthing_bool = do_something('action-one'); //Function runs here
//This will still output echo's and prints but the output (return) of the function
// will be stored in $do_somthing_bool
if(!$do_somthing_bool) //Check if the value is false
//Do something
- 2 回答
- 0 關(guān)注
- 100 瀏覽
添加回答
舉報(bào)