一眼看懂 php 数组函数 array_key_exists
2021-06-04 18:03
标签:关联 apple ber int oss www func tps 传递 一眼看懂 php 数组函数 array_key_exists 标签:关联 apple ber int oss www func tps 传递 原文地址:https://www.cnblogs.com/itcjl/p/14647159.htmlarray_key_exists(key,array) //检查某个数组中是否存在指定的键名,如果键名存在则返回 true,如果键名不存在则返回 false
//实例
array_key_exists($platformNum, $arrPlatform)
$a=array("name"=>"caoss","age"=>"21");
if (key_exists("name",$a))
{
echo "键存在!";
}
else
{
echo "键不存在!";
}
//输出 键存在! 索引数组也可是查数字
$a=array("name"=>"caoss","age"=>"21");
if (key_exists("Toyota",$a))
{
echo "键存在!";
}
else
{
echo "键不存在!";
}
//输出 键不存在!
索引数组示例
$fruit=array("苹果","香蕉"); 关联数组示例 $fruit=array(‘orange‘=>‘橘子‘,‘apple‘=>‘苹果‘);
array_column (array,column_key,index_key) 返回输入数组中某个单一列的值。 index_key可选以值做键
//实例
$a = array(
array(
‘id‘ => 5698,
‘first_name‘ => ‘Bill‘,
‘last_name‘ => ‘Gates‘,
),
array(
‘id‘ => 4767,
‘first_name‘ => ‘Steve‘,
‘last_name‘ => ‘Jobs‘,
)
array(
‘id‘ => 3809,
‘first_name‘ => ‘Mark‘,
‘last_name‘ => ‘Zuckerberg‘,
)
);
$last_names = array_column($a, ‘last_name‘, ‘id‘);
print_r($last_names);
//结果
Array
(
[5698] => Gates
[4767] => Jobs
[3809] => Zuckerberg
)
sprintf 把百分号(%)符号替换成一个作为参数进行传递的变量: 参考网站 https://www.w3school.com.cn/php/func_string_sprintf.asp
上一篇:Java第六次上机+练习
文章标题:一眼看懂 php 数组函数 array_key_exists
文章链接:http://soscw.com/index.php/essay/90507.html