php array数组的懂得与使用[初级教程]
php array数组的理解与使用[初级教程]
最近在教一个朋友php,他没有其他语言的基础。对array的理解和用法有些模糊。
所以写了个教程,希望对大家有用
也可以加我微博讨论
weibo.com/jeiry
<?php //实例化一个数组$array = array();//数组由两部分组成 如下//array(键名[key]=>值[value])//键名一般用与索引//类型可以为 int 或 字符串[int是什么可以查php手册]//所以可以这样写//$array = array(0=>'a',1=>'b');//你也可以这样写//array会自动补充索引键名,默认是 int值 由0开始$array = array('a','b');//测试 不能用echo 只能用 print_r 打印数组 不要问为什么,做就对了print_r($array);//输出结果是 Array ( [0] => a [1] => b )//可以看出,如果你不设定键名[key] 它会自动补充 key//你也可以随意改变 key$array = array(3=>'a',5=>'b');print_r($array);//结果 Array ( [3] => a [5] => b )//如果你要读取数组的内容,你可以这么做echo $array[3];//结果是 a //这里用echo 是因为只要不是数组,都可以直接用echo输出//key可以为 字符串$array = array('aa'=>'a','bb'=>'b');print_r($array);//结果是Array ( [aa] => a [bb] => b )//所以你也可以 echo $array['aa']; 注意字符串都是要用引号括住//值[value]可以是一个变量,可以是数组$array = array(0=>array('a','b'),1=>array('c','d'));print_r($array);//结果是 Array ( [0] => Array ( [0] => a [1] => b ) [1] => Array ( [0] => c [1] => d ) )//这叫二维数组//读取里面的内容可以是这样echo $array[0][1];//结果是b 也可以用 //当然也可以是包含更多的数组$array = array(0=>array(array('a','b'),array('c','d')),1=>array(array('e','f'),array('g','h')));//看起来有点乱,要自己慢慢领悟//回归到实际应用中 实例化一个数租$array = array();//模拟一个sql循环 sql多数是用 while循环,我这里做一个简单的for 10次循环 echo '<br>'; echo '<br>';for($i=0;$i'我的名'.$i,'age'=>'我的年纪1'.$i); // $array[] 加中括号 是要让他生成10 个数组 分别0 - 10 //如果是 $array = array('name'=>'我的名'.i,'age'=>'我的年纪1'.i); //那么结果只有一条数组。最后一条会代替了前一条}print_r($array);//结果 Array ( [0] => Array ( [name] => 我的名0 [age] => 我的年纪10 ) [1] => Array ( [name] => 我的名1 [age] => 我的年纪11 ) [2] => Array ( [name] => 我的名2 [age] => 我的年纪12 ) [3] => Array ( [name] => 我的名3 [age] => 我的年纪13 ) [4] => Array ( [name] => 我的名4 [age] => 我的年纪14 ) [5] => Array ( [name] => 我的名5 [age] => 我的年纪15 ) [6] => Array ( [name] => 我的名6 [age] => 我的年纪16 ) [7] => Array ( [name] => 我的名7 [age] => 我的年纪17 ) [8] => Array ( [name] => 我的名8 [age] => 我的年纪18 ) [9] => Array ( [name] => 我的名9 [age] => 我的年纪19 ) [10] => Array ( [name] => 我的名10 [age] => 我的年纪110 ) )//怎么用呢??>
- '.$value['name'].' | '.$value['age'].'';} ?>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Many users will choose the Huawei brand when choosing smart watches. Among them, Huawei GT3pro and GT4 are very popular choices. Many users are curious about the difference between Huawei GT3pro and GT4. Let’s introduce the two to you. . What are the differences between Huawei GT3pro and GT4? 1. Appearance GT4: 46mm and 41mm, the material is glass mirror + stainless steel body + high-resolution fiber back shell. GT3pro: 46.6mm and 42.9mm, the material is sapphire glass + titanium body/ceramic body + ceramic back shell 2. Healthy GT4: Using the latest Huawei Truseen5.5+ algorithm, the results will be more accurate. GT3pro: Added ECG electrocardiogram and blood vessel and safety

Why Snipping Tool Not Working on Windows 11 Understanding the root cause of the problem can help find the right solution. Here are the top reasons why the Snipping Tool might not be working properly: Focus Assistant is On: This prevents the Snipping Tool from opening. Corrupted application: If the snipping tool crashes on launch, it might be corrupted. Outdated graphics drivers: Incompatible drivers may interfere with the snipping tool. Interference from other applications: Other running applications may conflict with the Snipping Tool. Certificate has expired: An error during the upgrade process may cause this issu simple solution. These are suitable for most users and do not require any special technical knowledge. 1. Update Windows and Microsoft Store apps

In today's era of rapid technological development, programming languages are springing up like mushrooms after a rain. One of the languages that has attracted much attention is the Go language, which is loved by many developers for its simplicity, efficiency, concurrency safety and other features. The Go language is known for its strong ecosystem with many excellent open source projects. This article will introduce five selected Go language open source projects and lead readers to explore the world of Go language open source projects. KubernetesKubernetes is an open source container orchestration engine for automated

"Go Language Development Essentials: 5 Popular Framework Recommendations" As a fast and efficient programming language, Go language is favored by more and more developers. In order to improve development efficiency and optimize code structure, many developers choose to use frameworks to quickly build applications. In the world of Go language, there are many excellent frameworks to choose from. This article will introduce 5 popular Go language frameworks and provide specific code examples to help readers better understand and use these frameworks. 1.GinGin is a lightweight web framework with fast

Part 1: Initial Troubleshooting Steps Checking Apple’s System Status: Before delving into complex solutions, let’s start with the basics. The problem may not lie with your device; Apple's servers may be down. Visit Apple's System Status page to see if the AppStore is working properly. If there's a problem, all you can do is wait for Apple to fix it. Check your internet connection: Make sure you have a stable internet connection as the "Unable to connect to AppStore" issue can sometimes be attributed to a poor connection. Try switching between Wi-Fi and mobile data or resetting network settings (General > Reset > Reset Network Settings > Settings). Update your iOS version:

Title: Example of using the Array.Sort function to sort an array in C# Text: In C#, array is a commonly used data structure, and it is often necessary to sort the array. C# provides the Array class, which has the Sort method to conveniently sort arrays. This article will demonstrate how to use the Array.Sort function in C# to sort an array and provide specific code examples. First, we need to understand the basic usage of the Array.Sort function. Array.So

age animation is a software that can provide users with various animations, so what is the official entrance of the software? Users only need to enter the URL below to watch various animations for free. They may encounter network problems when logging in. This sharing of the official entrance of age anime animation can tell you what the specific entrance is, come and take a look! Where is the official entrance to age animation? http://age.tv Software introduction: 1. There will be many animations in the software, allowing everyone to see more complete comic content. 2. The animations here are completely free, allowing everyone to read comics online without spending money. 3. You can watch animations more smoothly in the software. The animations here have many

With the development of the Internet and the advancement of information technology, the era of big data has arrived, and fields such as data analysis and machine learning have also been widely used. In these fields, task scheduling is an inevitable problem. How to achieve efficient task scheduling is crucial to improving efficiency. In this article, we will introduce how to use Golang's web framework Echo framework to implement distributed task scheduling. 1. Introduction to the Echo framework Echo is a high-performance, scalable, lightweight GoWeb framework. It is based on HTTP
