Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有针对 Javaopt()功能的 PHP 解决方案。
opt()
例如:在某些情况下我得到一个$_GET参数,在某些情况下没有。我想要这样的事情:
$_GET
$myVar = $_GET.opt('myParam', 'whatever');
如果myParam未设置,myVar则设置为字符串“whatever”。
myParam
myVar
有任何想法吗?
谢谢!
function ifnull(array &$array, $key, $default){ if(!isset($array[$key])){ $array[$key] = $default; } return $array[$key]; }
或者
function ifnull(array &$array, $key, $default){ return isset($array[$key]) ? $array[$key] : $default; }