PHP数组

Posted yaomengli

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP数组相关的知识,希望对你有一定的参考价值。

 

 

 定义一个数组

1. <?php
$a1=array("red","green");
$a2=array("blue","yellow");
print_r(array_merge($a1,$a2));
?>

2. $arr=array($arr as $key=>$value)

 

     

  字符串转换为数组:implode()

数组转换为字符串:explode("从哪里开始分割",数组名) 例如 explode(",",$arr)

 

    像数组中添加或删除元素 (跟js中一样  (push(末尾添加)  pop(末尾删除)  unshift (像开头添加元素)shift(删除开头元素)) 

    遍历数组 foreach(数组名 as $key=>$value)

 数组与字符串综合使用
<?php
header("Content-type:text/html; charset=utf-8");
$arr=array("blue","red","yellow","green","pup","pop");
$string="勇敢,可爱,低调,淘气,直率,霸气";
$arr_1=explode(",", $string); //将字符串转换为数组
foreach ($arr_1 as $key=> $value){ //遍历数组
$index=array_rand($arr,1); //随机获取数组里面的一个键名
// echo "<span class="."$arr[$index]".">$value</span>";
echo "<span class=".$arr[$index].">$value</span>";
}
?>
给 span标签 .blue .red .yeelow....设置了样式
效果

 


 

以上是关于PHP数组的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段—— 数组的响应式方法

VSCode自定义代码片段10—— 数组的响应式方法

PHP代码-psysh调试代码片段工具

超实用的php代码片段

比较有用的php代码片段

不确定分配时 PHP 数组在做啥