摘要: <?php header("content-type:text/html;charset=utf-8"); //数组 定义 $arr = array('a','b'); $arr = ['a','b']; //数值数组 $arr = [1,2]; //关联数组 $arr = [ 'name'=>'张 阅读全文
posted @ 2021-01-08 11:58 孙旋 阅读(37) 评论(0) 推荐(0) 编辑
摘要: <?php header("content-type:text/html;charset=utf-8"); //变量的作用域 //php中,全局变量无法在定义的函数中直接使用 $i = 1; function con($i){ // echo $i; //错误,$iunderfind //如果想使用 阅读全文
posted @ 2021-01-08 10:53 孙旋 阅读(40) 评论(0) 推荐(0) 编辑