本文系翻译,原文地址:https://stitcher.io/blog/new-in-php-81#new-array_is_list-function-rfc
新array_is_list功能
您可能偶尔不得不处理这个问题:确定数组的键是否按数字顺序排列,从索引 0 开始。就像json_encode决定数组应该被编码为数组还是对象一样。
PHP 8.1 添加了一个内置函数来确定数组是否是具有这些语义的列表:
$list = ["a", "b", "c"]; array_is_list($list); // true $notAList = [1 => "a", 2 => "b", 3 => "c"]; array_is_list($notAList); // false $alsoNotAList = ["a" => "a", "b" => "b", "c" => "c"]; array_is_list($alsoNotAList); // false
详情查看RFC:https://wiki.php.net/rfc/is_list
以上就是PHP8.1新特性大讲解之array_is_list功能的详细内容,
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)