基础知识
- 数组下标可以视为资料内容在此数组中的识别名称,通常被称为数组下标
- 当索引值为数值时,也代表此资料内容在数组中的储存位置
- 数组中有几个索引值就被称为几维数组
数组分类
在PHP中有两种数组:索引数组和关联数组
- 索引(indexed)数组的索引值是整数,以0开始。当通过位置来标识东西时用索引数组
- 关联(associative)数组以字符串做为索引值,关联数组更像操作表。索引值为列名,用于访问列的数据
$arr = [1,2,3] // 索引数组
$users = ['name'=>'abc','age'=>99]; //关联数组
print_r(arr[1]); // 2
多维数组
数组的值为数组时,这样的数组为多维数组
$users = [
['name'=>'abc'],
['name'=>'uu']
];
echo $users[0]['name']; // abc
数组赋值
$arr = [];
$arr[0] = 'abc';
$arr['url']='baidu.com';
$arr[]='jianshu.com';
print_r($arr);
// 输出结果
(
[0] => abc
[url] => baidu.com
[1] => jianshu.com
)
可以指定给某个下标位置赋值,如果不指定,系统赋予它默认下标
读取元素
key
从关联数组中取得键名
$arr = ['abc','HDCMS','deg'];
echo key($arr); //返回0
next($arr);
echo key($arr); //返回1
注意:获得键名向key传递的是整个数组对象,通过移动指针获得不同键名
current
返回数组中的当前单元
$arr = ['abc','HDCMS','xyz'];
echo current($arr); //返回 'zbc'
next
将数组中的内部指针向下移动一位,并返回值。没有更多单元时返回 FALSE
$arr = ['abc','HDCMS','xyz'];
echo next($arr); //返回 'HDCMS'
prev
将数组的内部指针倒回一位,并返回值。没有更多单元时返回 FALSE
$arr = ['abc','HDCMS','xyz'];
var_dump(prev($arr)); //返回 FALSE
指针遍历
$users = [
['name'=>'小黑','age'=>16],
['name'=>'小明','age'=>22],
['name'=>'李四','age'=>34],
['name'=>'张三','age'=>19],
];
?>
<table border="1">
<tr><th>编号</th><th>姓名</th><th>年龄</th></tr>
<?php while ($user = current($users)):?>
<tr>
<td><?php echo key($users)+1?></td>
<td><?php echo $user['name']?></td>
<td><?php echo $user['age']?></td>
</tr>
<?php next($users); endwhile;?>
</table>
以上循环数组的渲染数据在实际项目中较少见,以后会学习到更好方式,仅作为了解。
遍历数组
foreach
$users = [
['name'=>'zbc','age'=>16],
['name'=>'小明','age'=>22],
['name'=>'李四','age'=>34],
['name'=>'张三','age'=>19],
];
foreach ($users as $user) {
echo $user['name'] . '<br/>'; ;
}
// $user是每次遍历的结果,$key是每次遍历的下标
foreach ($users as $key => $user) {
echo $key . '=' . $user['name'] . '<br/>';
}
注意:如果要改变数组,有两种方式
- 加&
foreach ($users as $key => &$user) {
// 改变数组
$user['age'] += 50;
echo $key . '=' . $user['name'] . '<br/>';
}
- 利用下标
foreach ($users as $key => $user) {
// 改变数组
$users[$key]['age'] += 50;
echo $key . '=' . $user['name'] . '<br/>';
}
list
把数组中的值赋给一组变量
$arr = ['abc','hdcms'];
list($name, $soft) = $arr;
echo $soft; // hdcms
只取部分值
$arr = ['abc','hdcms','.com'];
list(, , $web) = $arr;
echo $web; // .com
也可以使用关联
// 取出下标为2的赋值给$web
list(2=>$web) = $arr;
使用键名
$users = [
['name'=>'zbc','age'=>16],
['name'=>'小明','age'=>22],
['name'=>'李四','age'=>34],
['name'=>'张三','age'=>19],
];
while (list('name'=>$name, 'age'=>$age) = current($users)) {
echo "name: {$name} <hr/>";
next($users);
}
常用函数
array_push
将一个或多个单元压入数组的末尾,这是传址操作,新增数据在数组最末尾
$users =['abc','xyz'];
array_push($users, '张三');
print_r($users);
array_pop
弹出数组最后一个单元(出栈),这是传址操作
$users =['abc','xyz'];
array_pop($users);
print_r($users);
array_shift
将数组开头的单元移出数组,这是传址操作
$users =['abc','xyz'];
array_shift($users);
print_r($users);
array_unshift
在数组开头插入一个或多个单元
array_unshift(数组名,值1,值2,...)
$users =['abc','xyz'];
array_unshift($users, '123');
print_r($users);
count
count — 计算数组中的单元数目,或对象中的属性个数
count(数组名)
$users =['abc','xyz'];
echo count($users); // 2
in_array
检查数组中是否存在某个值
in_array(值,数组名)
$allowImageType = ['jpeg','jpg','png'];
$file = 'hdcms.txt';
$ext = strtolower(substr(strrchr($file, '.'), 1));
if (!in_array($ext, $allowImageType)) {
echo 'is wrong';
}
array_key_exists
检查数组里是否有指定的键名或索引
array_key_exists(键名,数组名)
// 允许用户上传图片格式和类型
$allowImageType = ['jpeg'=>2000000,'jpg'=>2000000,'png'=>2000000];
$file = 'hdcms.txt';
$ext = strtolower(substr(strrchr($file, '.'), 1));
// strrchr($file, '.') 为 .txt
if (!array_key_exists($ext, $allowImageType)) {
echo 'is wrong';
}
array_keys
获得数组里面所有的键名或索引
$allowImageType = ['jpeg'=>2000000,'jpg'=>2000000,'png'=>2000000];
$file = 'hdcms.jpg';
$ext = strtolower(substr(strrchr($file, '.'), 1));
if (!in_array($ext, array_keys($allowImageType))) {
echo 'is wrong';
}
array_filter
用回调函数过滤数组中的单元
array_filter第二个参数是一个函数,返货值只能是true或false,返回false时,元素被过滤
下面是只获取男生的操作:
$users = [
['name'=>'小黑','sex'=>'男','age'=>20],
['name'=>'小丽','sex'=>'女','age'=>33]
];
print_r(array_filter($users, function ($user) {
return $user['sex']=='男';
}));
array_map
为数组的每个元素应用回调函数
删除用户年龄的操作:
$users = [
['name'=>'小黑','sex'=>'男','age'=>20],
['name'=>'小丽','sex'=>'女','age'=>33]
];
print_r(array_map(function ($user) {
unset($user['age']);
return $user;
}, $users));
unset($user['age']);
删除属性
利用map提取数组部分数据,如获取所有会员名称:
$users = [
['name'=>'小黑','sex'=>'男','age'=>20],
['name'=>'小丽','sex'=>'女','age'=>33]
];
print_r(array_map(function ($user) {
return $user['name'];
}, $users));
array_values
返回数组中所有的值组成的数组
$formats = array_map(function ($user) {
return implode('-', array_values($user));
}, $users);
print_r($formats); //输出 Array ( [0] => 小黑-男-20 [1] => 小丽-女-33 )
implode(连接符,数组)
用于数组转字符串
array_merge
合并一个或多个数组
array_merge(数组名,合并的数组),返回合并后的数组
$database = [
'host'=>'localhost','port'=>3306,'user'=>'root','password'=>''
];
print_r(
array_merge($database, ['user'=>'hdcms','password'=>'admin888'])
);
注意:相同键名会被覆盖
array_change_key_case
将数组中的所有键名修改为全大写或小写
用于将不规范的键名转换到规范的
//键名转大写
print_r(array_change_key_case($database, CASE_UPPER));
//键名转小写
print_r(array_change_key_case($database, CASE_LOWER));
注意:如果是多维数组,只有第一层的键名会发生变化
递归改变数组键名
$config = [
'database'=>['host'=>'localhost','port'=>3306,'user'=>'root','password'=>''],
'app'=>['name'=>'小黑','url'=>'baidu.com','app'=>["hdcms"]]
];
function hd_array_change_key_case(array $data, int $type=CASE_UPPER):array
{
foreach ($data as $k=>$v):
$action = $type ==CASE_UPPER?'strtoupper':'strtolower';
// 将原来的值删除
unset($data[$k]);
$data[$action($k)] = is_array($v)?hd_array_change_key_case($v, $type):$v;
endforeach;
return $data;
}
print_r(hd_array_change_key_case($config));
hd_array_change_key_case
是自定义函数,它接受两个参数,一个数组,另一个是大小写标志位。$action($k)
调用的是变量函数
递归改变数组值
$config = [
'database'=>['host'=>'localhost','port'=>3306,'user'=>'root','password'=>''],
'app'=>['name'=>'小黑','url'=>'http://houdunren.com','app'=>["hdcms"]]
];
function hd_array_change_value_case(array $data, int $type=CASE_UPPER):array
{
foreach ($data as $k=>$v):
$action = $type ==CASE_UPPER?'strtoupper':'strtolower';
$data[$k] = is_array($v)?hd_array_change_value_case($v, $type):$action($v);
endforeach;
return $data;
}
print_r(hd_array_change_value_case($config));
高效改变数组键值:array_walk_recursive
array_walk_recursive(数组, 回调函数(值, 键))
对数组中的每个成员递归地应用用户函数,本函数会递归到更深层的数组中去。下面是改变数组键值的操作
// array_walk_recursive(数组, 回调函数(值, 键))
array_walk_recursive($database, function (&$value, $key) {
$value = strtolower($value);
});
如果需要往回调函数增加参数,直接在array_walk_recursive(...,[新增参数])
增加即可,同时在回调函数增加变量接受这个参数。例如以下代码向回调函数传递$type
$config = [
'database'=>['host'=>'localhost','port'=>3306,'user'=>'root','password'=>''],
'app'=>['name'=>'小黑','url'=>'http://houdunren.com',['app'=>'hdcms']]
];
function change_array_value(array $data, int $type=CASE_UPPER):array
{
array_walk_recursive($data, function (&$value, $key, $type) {
$action = $type==CASE_UPPER?'strtoupper':'strtolower';
$value=$action($value);
}, $type);
return $data;
}
print_r(change_array_value($config));
var_export
输出或返回一个变量的字符串表示,第二个参数为 TRUE
时返回字符串
$config = [
'database'=>['host'=>'localhost','port'=>3306,'user'=>'root','password'=>''],
'app'=>['name'=>'小黑','url'=>'baidu.com']
];
//生成合法的PHP代码
$configContent = "<?php return ".var_export($config, true).';';
file_put_contents('database.php', $configContent);
serialize
将数组序列化为字符串,经常用于序列化数组存入数据库
$config = [
'database'=>['host'=>'localhost','port'=>3306,'user'=>'root','password'=>''],
'app'=>['name'=>'小黑','url'=>'baidu.com',['app'=>'hdcms']]
];
echo serialize($config);
unserialize
从已存储的表示中创建 PHP 的值,下面是缓存数据的操作实例
$config = [
'database'=>['host'=>'localhost','port'=>3306,'user'=>'root','password'=>''],
'app'=>['name'=>'小黑','url'=>'baidu.com',['app'=>'hdcms']]
];
function cache(string $name, array $data=null)
{
$file = 'cache'.DIRECTORY_SEPARATOR.md5($name).'.php';
if (is_null($data)) {
$content = is_file($file)?file_get_contents($file):null;
return unserialize($content)?:null;
} else {
return file_put_contents($file, serialize($data));
}
}
cache('database', $config);
var_dump(cache('database'));
DIRECTORY_SEPARATOR
是文件分隔符,file_put_contents
是写文件,写文件前将文件名用md5加密以下,防止出现特殊字符。函数通过判断data是否我空来判断读缓存还是写缓存。