課程
/后端開發(fā)
/PHP
/PHP入門篇
bool define("PI" ,3.14[, $case_sensitive = true]);這么寫對嗎?
2018-03-23
源自:PHP入門篇 4-1
正在回答
c5gp
中括號內(nèi)為可選參數(shù);
可選參數(shù)
define("PI",3.14,true);
wingle 提問者
舉報
PHP入門教程輕松學(xué)習(xí),行業(yè)大牛幫您快速掌握PHP編程基礎(chǔ)知識。
1 回答bool define(string $constant_name, mixed $value[, $case_sensitive = true])
5 回答define()函數(shù)的語法格式為: bool define(string $constant_name, mixed $value[, $case_sensitive = true]) 是不是寫錯了???
2 回答constant_name與string
1 回答mixed
3 回答var_dump($a >= $b);為什么返回bool(true)?
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網(wǎng)安備11010802030151號
購課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號
2018-03-27
c5gp
2018-03-25
中括號內(nèi)為可選參數(shù);
2018-03-24
可選參數(shù)
2018-03-23
define("PI",3.14,true);