本文介绍了"isset构造"是否有捷径?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我经常写这一行代码:

$myParam = isset($params['myParam']) ? $params['myParam'] : 'defaultValue';

通常,对于嵌套数组,这会使行很长.

Typically, it makes the line very long for nested arrays.

我可以把它缩短吗?

推荐答案

PHP 7将包含??运算符,正是该运算符.

PHP 7 will contain ?? operator that does exactly that.

请参见 https://wiki.php.net/rfc/isset_ternary ,例如:

// Fetches the request parameter user and results in 'nobody' if it doesn't exist
$username = $_GET['user'] ?? 'nobody';
// equivalent to: $username = isset($_GET['user']) ? $_GET['user'] : 'nobody';

这篇关于"isset构造"是否有捷径?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 10:55