Maison > développement back-end > tutoriel php > php精确判断是否为目录数组

php精确判断是否为目录数组

WBOY
Libérer: 2016-06-13 11:56:31
original
835 Les gens l'ont consulté

php精确判断是否为索引数组

function is_assoc($arr){    return array_keys($arr) !== range(0, count($arr) - 1);	// array_values($arr) !== $arr}function is_assoc2($array) {  return (bool)count(array_filter(array_keys($array), 'is_string'));}$array = array(0=>"1",1=>"3");var_dump($array);echo is_assoc($array)?'索引数组':'不是索引数组';echo "<br>";echo is_assoc2($array)?'索引数组':'不是索引数组';echo "<br>";$array = array("0"=>"1","1"=>"3");var_dump($array);echo is_assoc($array)?'索引数组':'不是索引数组';echo "<br>";echo is_assoc2($array)?'索引数组':'不是索引数组';echo "<br>";$array = array("name"=>"1","age"=>"3");var_dump($array);echo is_assoc($array)?'索引数组':'不是索引数组';echo "<br>";echo is_assoc2($array)?'索引数组':'不是索引数组';
Copier après la connexion

?

array (size=2)  0 => string '1' (length=1)  1 => string '3' (length=1)不是索引数组不是索引数组array (size=2)  0 => string '1' (length=1)  1 => string '3' (length=1)不是索引数组不是索引数组array (size=2)  'name' => string '1' (length=1)  'age' => string '3' (length=1)索引数组索引数组
Copier après la connexion

?

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal