我有這樣一個功能:傳遞一個NULL值到一個PHP函數
function do_something($first, $second=null, $third=null) {
if ($isset($second)) {
// Do something here
}
}
現在,我想傳遞一個值$third
的功能,但我想$second
保持NULL:
do_something('abc','','def');
現在,$second
不再爲NULL。如何將$third
的值傳遞給 NULL?
'do_something( 'ABC',NULL, '高清');' – Federkun
'do_something( 'ABC',NULL, '高清');' – Patchesoft
你指的是第二個參數仍然爲空? – madi