Definition of array
The essence of an array is to manage and operate a set of variables. An array can store data of any length or any type of data. The units in the array are called elements. Each element includes a subscript (key) and a value. When accessing an element, it is accessed through the subscript, including one-dimensional arrays, two-dimensional arrays and multi-dimensional arrays (that is, nesting of arrays) , PHP is divided into index array and associated element group.
(1) Index array: use integer as index, such as $arr=array('PHP course','HTML course','CSS course');
(2) Associative array: use string as index, such as $arr =array('ID'=>1,'name'=>'PHP Course','class=>'PHPcn');
Declaration and use of PHP arrays
1. Directly assign values to array elements.
If the index subscript is not given, the sequential indexing will start from 0; if the index subscript is given, the next one will increase by 1 starting from the largest subscript; if the previous subscript appears later, it will be the previous one. Elements are reassigned; in mixed declarations, indexed arrays and associative arrays do not affect each other.
For example:
$array[0]="I";
$array[1]="love";
$array[2]="PHP";
print_r($array);
where, print_r() is A special function that allows you to view the value in a PHP array variable. It will display all the elements in the array in the order of a certain key value and element. This is helpful for program debugging.
2. Use the array() function to declare
The default is an index array. If it is an associative array, you need to specify a subscript for the array, use "key => value", and use "," to separate multiple members.
For example:
$fruits = array('red' => 'apple', 'yellow' => 'banana', 'purple' => 'plum', 'green' => 'grape');
print_r($fruits);
Traversal of PHP arrays
We often need to traverse arrays. There are many ways to traverse arrays in PHP. You can use for() to loop through arrays. Here, sizeof is often used. () function, this function is one of the commonly used array functions. It returns the size of the array, that is, the number of elements read in the array, as the upper limit of the loop counter. You can also use the list() function to iterate through an array. It can only be used for numerically indexed arrays, and the numerical index starts from 0.
In PHP, you can also use a function specifically designed for looping arrays: foreach(). foreach() executes once for each element in the array passed to it. It does not require a counter or calling the function sizeof(). It can automatically track the position of the array in the array while requiring less maintenance. foreach() has two syntax structures:
(1) foreach (array_expression as $value)
(2) foreach (array_expression as $key => $value)
The first structure will traverse the given array_expression array, each In the second loop, the value of the current cell is assigned to $value and the pointer inside the array moves forward one step. In the second structure, the key name of the current unit will also be assigned to $key in each loop. The foreach loop runs to the end, and the internal pointer of the original array will point to the end of the array. For example:
foreach ($arr as $value) {
echo "Value: $value ";
}
foreach ($arr as $key => $value) {
echo "Key: $key; Value: $value ";
}
Sort of PHP array
Sorting array elements, we use it more when doing projects, and there are many related functions involved, such as sort(), rsort(), usort(), ksort(), uasort(), uksort(), etc. , here are a few introduced first. Use sort() and rsort() to sort the array in ascending and descending order respectively, for example:
$arr=array(23,4,65,11,64,8);
sort($arr);
print_r($arr) ;
Run result:
Array ([0] => 4 [1] => 8 [2] => 11 [3] => 23 [4] => 64 [5] => 65 )
In addition, we can notice that after sorting through the sort function, the original index key names of the array will be reassigned. rsort() sorts the array in reverse order.
If you use an associative array, you need to keep the order of keys and values consistent after sorting. This requires using the ksort() and asort() functions, for example:
$array=array('php'=>1, 'jsp'=>2,'asp'=>3);
ksort($array);
print_r($array);
Run result:
Array ( [asp] => 3 [jsp] => ; 2 [php] => 1)

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


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

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
