php数组总结篇(一)


Posted in PHP onSeptember 30, 2008

数组
1.数组的下标是整型数值或者是字符串类型。
eg1.索引数组的键是______,关联数组的键是______。
2.字符串作为索引的时候,应加上引号。常量或者变量不用加引号,否则无法编译。
在php中,没有引号的字符串会自动生成一个裸字符串,而 PHP 可能会在以后定义此常量,不幸的是你的代码中有同样的名字,那么这个字符串就被重新赋值。
eg2.<?php
// 显示所有错误
error_reporting(E_ALL);
$arr = array('fruit' => 'apple', 'veggie' => 'carrot');
// 正确
print $arr['fruit']; // apple
print $arr['veggie']; // carrot
// 不正确。This works but also throws a PHP error of
// level E_NOTICE because of an undefined constant named fruit
//
// Notice: Use of undefined constant fruit - assumed 'fruit' in...
print $arr[fruit]; // apple
// Let's define a constant to demonstrate what's going on. We
// will assign value 'veggie' to a constant named fruit.
define('fruit','veggie');
// Notice the difference now
print $arr['fruit']; // apple
print $arr[fruit]; // carrot
// The following is okay as it's inside a string. Constants are not
// looked for within strings so no E_NOTICE error here
print "Hello $arr[fruit]"; // Hello apple
// With one exception, braces surrounding arrays within strings
// allows constants to be looked for
print "Hello {$arr[fruit]}"; // Hello carrot
print "Hello {$arr['fruit']}"; // Hello apple
// This will not work, results in a parse error such as:
// Parse error: parse error, expecting T_STRING' or T_VARIABLE' or T_NUM_STRING'
// This of course applies to using autoglobals in strings as well
print "Hello $arr['fruit']";
print "Hello $_GET['foo']";
// Concatenation is another option
print "Hello " . $arr['fruit']; // Hello apple
?>
3.键值问题
$a['color'] = 'red';
$a['taste'] = 'sweet';
$a['shape'] = 'round';
$a['name'] = 'apple';
$a[] = 4; // key will be 0
$b[] = 'a'; // key will be 0
$b[] = 'b'; // key will be 1
$b[] = 'c'; // key will be 2
switching = array( 10, // key = 0
5 => 6,
3 => 7,
'a' => 4,
11, // key = 6 (maximum of integer-indices was 5)
'8' => 2, // key = 8 (integer!)
'02' => 77, // key = '02'
0 => 12 // the value 10 will be overwritten by 12
);
<?php
$multi_array = array("red",
"green",
42 => "blue","yellow" => array("apple",9 => "pear","banana","orange" => array("dog","cat","iguana")));
?>
A.$multi_array['yellow']['apple'][0]
B.$multi_array['blue'][0]['orange'][1]
C.$multi_array[3][3][2]
D.$multi_array['yellow']['orange']['cat']
E.$multi_array['yellow']['orange'][1]
--------------------------------待续待续待续------
4.array_walk
5.var_dump
6.array_intersect
7.array_sum
8.array_count_values
9.array_flip
10.natsort
11.ksort(),asort(),krsort(),sort(),usort()
12.array_reverse()
13.array_merge
14.reset
-------------------------------待续待续待续------
15.array_combine
16array_count_values
17.array_diff
18.array_filter
19.array_search

PHP 相关文章推荐
一个简单的自动发送邮件系统(三)
Oct 09 PHP
PHP实现MVC开发得最简单的方法――模型
Apr 10 PHP
typecho插件编写教程(二):写一个新插件
May 28 PHP
PHP开发Apache服务器配置
Jul 15 PHP
人脸识别测颜值、测脸龄、测相似度微信接口
Apr 07 PHP
php使用文本统计访问量的方法
May 12 PHP
PHP对象的浅复制与深复制的实例详解
Oct 26 PHP
php合并数组并保留键值的实现方法
Mar 12 PHP
JSON PHP中,Json字符串反序列化成对象/数组的方法
May 31 PHP
php微信开发之谷歌测距
Jun 14 PHP
浅谈PHP匿名函数和闭包
Mar 08 PHP
php和asp语法上的区别总结
May 12 PHP
PHP EOT定界符的使用详解
Sep 30 #PHP
40个迹象表明你还是PHP菜鸟
Sep 29 #PHP
PHP网站基础优化方法小结
Sep 29 #PHP
10条PHP编程习惯助你找工作
Sep 29 #PHP
PHP生成带有雪花背景的验证码
Sep 28 #PHP
PHP编实现程动态图像的创建代码
Sep 28 #PHP
php 三维饼图的实现代码
Sep 28 #PHP
You might like
一些操作和快捷键的理解和讨论
2020/03/04 星际争霸
php站内搜索并高亮显示关键字的实现代码
2011/12/29 PHP
php摘要生成函数(无乱码)
2012/02/04 PHP
phpmyadmin在宝塔面板里进不去的解决方案
2020/07/06 PHP
javascript下arguments,caller,callee,call,apply示例及理解
2009/12/24 Javascript
Js中的onblur和onfocus事件应用介绍
2013/08/27 Javascript
javascript实现炫酷的拖动分页
2015/05/11 Javascript
CSS中position属性之fixed实现div居中
2015/12/14 Javascript
JavaScript与ActionScript3两者的同性与差异性
2016/09/22 Javascript
JS实现一个简单的日历
2017/02/22 Javascript
JS作用域链详解
2017/06/26 Javascript
深入理解Node.js中通用基础设计模式
2017/09/19 Javascript
关于laydate.js加载laydate.css路径错误问题解决
2017/12/27 Javascript
微信小程序 行的删除和增加操作实现详解
2019/09/29 Javascript
jQuery模仿ToDoList实现简单的待办事项列表
2019/12/30 jQuery
微信小程序自定义菜单切换栏tabbar组件代码实例
2019/12/30 Javascript
python 数据加密代码
2008/12/24 Python
Python分治法定义与应用实例详解
2017/07/28 Python
python3使用requests模块爬取页面内容的实战演练
2017/09/25 Python
python中WSGI是什么,Python应用WSGI详解
2017/11/24 Python
python3.6+opencv3.4实现鼠标交互查看图片像素
2018/02/26 Python
Python中的heapq模块源码详析
2019/01/08 Python
django项目简单调取百度翻译接口的方法
2019/08/06 Python
python实现根据文件格式分类
2019/10/31 Python
TensorFlow2.0矩阵与向量的加减乘实例
2020/02/07 Python
python with语句的原理与用法详解
2020/03/30 Python
深入理解Python 多线程
2020/06/16 Python
python判断变量是否为列表的方法
2020/09/17 Python
Django跨域请求原理及实现代码
2020/11/14 Python
canvas绘制视频封面的方法
2018/02/05 HTML / CSS
英国最大的美妆产品在线零售商之一:Beauty Bay
2017/09/29 全球购物
2014年五四青年节活动方案
2014/03/29 职场文书
消防宣传口号
2014/06/16 职场文书
2014年人事专员工作总结
2014/11/19 职场文书
2014年医院科室工作总结
2014/12/20 职场文书
小班下学期幼儿评语
2014/12/30 职场文书