// 指定加拿大的 index 为 0
$mobileNation = array(
86 => '中国 + 0086', 44 => '英国 + 0044', 1 => '美国 + 001',
0 => '加拿大 + 001', 61 => '澳大利亚 + 0061', 64 => '新西兰 + 0064',
852 => '香港 + 00852', 853 => '澳门 + 00853', 886 => '台湾 + 00886',
81 =>'日本 + 0081', 82 =>'韩国 + 0082',65 => '新加坡 + 0065',60 =>'马来西亚 + 0060', 66 => '泰国 + 0066', 33 => '法国 + 0033',34 => '西班牙 + 0034',
49 => '德国 + 0049',39 => '意大利 + 0039', 351 => '葡萄牙 + 00351'
); // 未指定加拿大的 index 为 0 , php 会默认分配一个index 为 87
$mobileNation = array(
86 => '中国 + 0086', 44 => '英国 + 0044', 1 => '美国 + 001',
'加拿大 + 001', 61 => '澳大利亚 + 0061', 64 => '新西兰 + 0064',
852 => '香港 + 00852', 853 => '澳门 + 00853', 886 => '台湾 + 00886',
81 =>'日本 + 0081', 82 =>'韩国 + 0082',65 => '新加坡 + 0065',60 =>'马来西亚 + 0060', 66 => '泰国 + 0066', 33 => '法国 + 0033',34 => '西班牙 + 0034',
49 => '德国 + 0049',39 => '意大利 + 0039', 351 => '葡萄牙 + 00351'
);
//  数字索引数组 , 888 将会得到的 index 是 10
$arr=array(9 => 1234 , 3 => 454 , 5 => 4545 , 888 , 7878=>90909);

[php-array] PHP 数组的怪异之处的更多相关文章

  1. golang之 Array(数组)

    目录 一.Array(数组) 二.数组的定义 1. 基本语法 三.数组的初始化 1. 方式一 2. 方式二 3. 方式三 四.数组的遍历 1. 方式一:for循环遍历 2. 方式二:for range ...

  2. vector以及array和数组

    //比较数组.vector.array #include <iostream> #include <vector> #include <array> #includ ...

  3. java中Array(数组)的用法

    8.Array(数组)    数组是作为对象来实现的.(really occupy the memopry,真实的占用内存 ) An array is a data structure that st ...

  4. javascript中的Array对象 —— 数组的合并、转换、迭代、排序、堆栈

    Array 是javascript中经常用到的数据类型.javascript 的数组其他语言中数组的最大的区别是其每个数组项都可以保存任何类型的数据.本文主要讨论javascript中数组的声明.转换 ...

  5. [LeetCode] Find the Derangement of An Array 找数组的错排

    In combinatorial mathematics, a derangement is a permutation of the elements of a set, such that no ...

  6. flexible array柔性数组、不定长的数据结构Struct详解

    柔性数组,这个名词对我来说算是比较新颖的,在学习跳跃表的实现时看到的.这么好听的名字,的背后到底是如何的优雅. 柔性数组,其名称的独特和迷惑之处在于“柔性”这个词.在C/C++中定义数组,是一个定长的 ...

  7. JavaScript中的内置对象-8--1.Array(数组)-Array构造函数; 数组的栈方法; 数组的转换方法; 数组的操作方法; 删除-插入-替换数组项; ECMAScript为数组实例添加的两个位置方法;

    JavaScript内置对象-1Array(数组) 学习目标 1.掌握任何创建数组 2.掌握数值元素的读和写 3.掌握数组的length属性 如何创建数组 创建数组的基本方式有两种: 1.使用Arra ...

  8. [Leetcode] merge sorted array 合并数组

    Given two sorted integer arrays A and B, merge B into A as one sorted array. Note: You may assume th ...

  9. Array(数组)的基本方法

    1.定义:var   arr=new  Array ("12" , "zhang") 2.简写:var   arr=[ 12 , "zhang&quo ...

随机推荐

  1. 如何修改隐藏Zblog/WordPress默认后台登录地址

    我相信很多博主站长都遇到过站点被暴力破解,虽然未被破解,但是经常收到那些尝试登录失败的邮件提醒也会心慌慌的.对于这种情况,最好的办法就是修改/隐藏我们的后台登录地址. 关于zblogASP后台登录地址 ...

  2. Luogu 2575 高手过招-SG函数

    Solution SG函数跑一遍就过了ouo Code #include<cstring> #include<cstdio> #include<algorithm> ...

  3. Codeforces 757C. Felicity is Coming!

    C. Felicity is Coming! time limit per test:2 seconds memory limit per test:256 megabytes input:stand ...

  4. luaFramework

    BeginStaticLibs  参考CustomSettings.cs public static List<Type> staticClassTypes = new List<T ...

  5. https传输过程嗅探

    C1->浏览器告知服务器自身的信息 length = 165 a5 16 03 01 00 A0 01 00 00 9C 03 03 5E 1C 37 CD 40 [ ^ 7 @] B6 4A ...

  6. m序列c语言实现

    演示,不是算法 void m4() { int a[4]={1,0,0,1}; int m[15]; int temp; for(int i=0;i<15;i++){ m[i] = a[0]; ...

  7. openssl初步使用

    centos平台 md5.c #include <stdio.h> #include <string.h> #include <stdlib.h> //#inclu ...

  8. mybatis学习七 typeAliases 别名

    1. mybatis中内置的一些别名,例如Map,List,int 等常用类型 2.手动为某个类设置别名 在mybatis的全局配置文件中加如下代码 <typeAliases> <t ...

  9. UVALive-7041(回文树

    题意:给你两个字符串,问你有多少对公共回文串. 思路:先对a字符串建回文树.然后再把b字符串加进去就好了. #include<cstdio> #include<cmath> # ...

  10. canvas 实现赛车游戏

    一:创建画布 <canvas width="200" height="500" id="canvas" style="bor ...