


1. Processing of arrays:
1.1 Creation and initialization of arrays:
1. The array() function creates an array. By default, element 0 is the first element of the array.
count() and sizeof( ) function to obtain the number of data elements
2. Create an array using variables
compact() finds the variable name in the current symbol table and adds it to the output array. The variable name becomes the key name and the variable The content becomes the value of the key.
$num= 10;
$str="string";
$array=array(1,2,3);
$newarray=compact("num","str","array");
print_r($newarray);
/*Result
array([num]=10 [str]=>string [array]=>array([0]=>1 [1]=> ;2 [2]=>3))
*/
?>
extract() Convert the cells in the array into variables
$array=array("key1"=>1,"key2"=2, "key3"=3);
extract($array);
echo "$key1 $key2 $key3";//Output 1 2 3
?>
3. Use two arrays to create an array
array_combine(array $keys, array $values )
$a=array('green','red','yellow');
$b=array(' volcado','apple','banana');
$c=array_combine($a,$b);
print_r($c);
?>
4. Create a specified range array
range( )
5. Automatically create an array
1.2 Operations on key names and values
This section only talks about commonly used ones
. Checks whether a certain key and value exist in an array and can be used. Array_key_exists() and in_arrary functions, isset() checks the key name in the array. When the key name is NULL, isset() returns false, while array_key_exists() returns true.
. The array_search() function is used to check whether the key value of the array exists. If it does not exist, NULL is returned.
. The key() function can obtain the key name of the current unit of the array.
. The list() function assigns the values in the array to the specified variable. Very useful in array traversal.
$arr=array("red","blue","white");
list($red,$blue,$white)=$arr;
echo $red; //red
echo $blue; //blue
echo $white; // white
. array_fill() and array_fill_keys() can fill the values and keys of an array with the given values
. array_filp() can exchange the key names and values in the array. In addition, if there are the same values in the exchange array, after the same values are converted into key names, the last
of the value will be retained. The array_keys() and array_values() functions can obtain the key names and values in the array and save them to a new array.
. array_splice(arry $input,int $offset[,int $length[,array $replacement]]) deletes one or more cells in the array and replaces them with other values.
. array_unique() can remove duplicate values from an array and return a new array without destroying the original array.
1.3 Array traversal and output
1. Use while loop to access the array
Apply while, list(), and each() functions to traverse the array
2. for loop to access the array
3. Use foreach to loop through the array
$color=array(" a"=>"red","blue","white");
foreach($color as $value)
{
echo $value."
";//output Value of array
}
foreach($color as $key=>$value)
{
echo $key."=>".$value."
"; //Output the key name and value of the array
}
?>
Example 4.1 Generate a text box on the page, the user enters the student's score, and after submitting the form, output the score less than 60 The score value is calculated and output after calculating the average score.
echo "";
if(isset($_POST['bt'])) //Check whether the submit button is pressed
{
$sum=0; //The total score is initialized to 0
$k=0;
$stu=$_POST['stu']; //Get the values of all text boxes and assign them to the array $stu
$num=count($stu); //Calculate the number of elements in the array $stu
echo "The scores you entered are:
";
foreach($stu as $score) //Use foreach loop to traverse the array $stu
{
echo $score."
" ; //Output the received value
$sum=$sum+$score; //Calculate the total score
if($score{
$sco [$k]=$score; //Assign the value with a score less than 60 to the array $sco
$k++; //Add 1 to the key index of the array $sco
}
}
echo "
The scores below 60 points are:
";
for($k=0;$k
";
$average=$sum/$num; //Calculate the average score
echo "
Average score: $average "; //Output average score
}
?>
1.4 Sorting of arrays
1. Sort in ascending order. sort(array $array[,int $sort_flags])
Note: Be careful when sorting values containing mixed types, as errors may occur.
asort() can also be sorted in ascending order, which sorts the values of the array, but the sorted array still maintains the association between key names and values.
Ksort() sorts the keys of the array. The relationship between the keys and values does not change after sorting.
2. Sort in descending order. rsort(), arsort(), krsort()
3. Sorting of multi-dimensional arrays.
4. Reorder the array.
. shuffle() function. Its function is to arrange the array in random order and delete the original key name
. array_reverse() function. Sort an array in reverse order.
5. Natural sorting
. natsort(). Case sensitive
1.5 Other operations
1. Merge arrays
array_merge($array1,$array2). After merging, all arrays after one dimension will be returned as one unit. array_merge_recusive() can merge arrays while maintaining the existing array structure.
2. Stack operation of array.
Pop: array_pop($arr);
Push: array_push($arr,var);
3. Get the current unit of the array
1. The current() function can obtain the value of the cell pointed to by the internal pointer of the array, but does not move the internal pointer of the array.
2. next($arr), moves the pointer to the next unit.
3. end($arr) moves the pointer to the end.
4. Array calculation
count() and sizeof() calculate the number of elements in the array
array_count_values() function can count the number of times a value appears in the array
Example: 4.2 Processing table data
Receive information such as students’ academic affairs, names, grades and other information input by the user, store the received information into an array and sort it in ascending order of grades. Then output it as a table. .
注意:学号值不能重复
if(isset($_POST['bt_stu'])) //判断按钮是否按下
{
$XH=$_POST['XH']; //接收所有学号的值存入数组$XH
$XM=$_POST['XM']; //接收所有姓名的值存入数组$XM
$CJ=$_POST['CJ']; //接收所有成绩的值存入数组$CJ
array_multisort($CJ,$XH,$XM); //对以上三个数组排序,$CJ为首要数组
for($i=0;$i
echo "
//表格的首部
echo "
学号 | 姓名 | 成绩 |
$stu_number | $stu_name | $stu_score |
"; //表格尾部
reset($sum); //重置$sum数组的指针
while(list($key,$value)=each($sum)) //使用while循环遍历数组
{
list($stu_number,$stu_name,$stu_score)=$value;
if($stu_number=="081101") //查询是否有学号为081101的值
{
echo "
echo $stu_number."的姓名为:".$stu_name.",";
echo "成绩为:".$stu_score;
break; //找到则结束循环
}
}
}
?>

随着数据的不断增长,数据分析和处理的需求也越来越重要。因此,现在越来越多的人开始将PHP和ApacheSpark集成来实现数据分析和处理。在本文中,我们将讨论什么是PHP和ApacheSpark,如何将二者集成到一起,并且用实例说明集成后的数据分析和处理过程。什么是PHP和ApacheSpark?PHP是一种通用的开源脚本语言,主要用于Web开发和服务

Vue3中的过滤器函数:优雅的处理数据Vue是一个流行的JavaScript框架,拥有庞大的社区和强大的插件系统。在Vue中,过滤器函数是一种非常实用的工具,允许我们在模板中对数据进行处理和格式化。Vue3中的过滤器函数有了一些改变,在这篇文章中,我们将深入探讨Vue3中的过滤器函数,学习如何使用它们优雅地处理数据。什么是过滤器函数?在Vue中,过滤器函数是

随着大数据时代的到来,数据处理变得越来越重要。对于各种不同的数据处理任务,不同的技术也应运而生。其中,Spark作为一种适用于大规模数据处理的技术,已经被广泛地应用于各个领域。此外,Go语言作为一种高效的编程语言,也在近年来得到了越来越多的关注。在本文中,我们将探讨如何在Go语言中使用Spark实现高效的数据处理。我们将首先介绍Spark的一些基本概念和原理

使用JavaSDK对接七牛云数据处理:如何实现数据转换和分析?概述:在云计算和大数据时代,数据处理是一个非常重要的环节。七牛云提供了强大的数据处理功能,可以对存储在七牛云中的各种类型的文件进行图像处理、音视频处理、文字处理等。本文将介绍如何使用JavaSDK对接七牛云的数据处理功能,并给出一些常用的代码示例。安装JavaSDK首先,我们需要在项目中引入

数据可视化是当前许多企业和个人在处理数据时非常关注的问题,它可以将复杂的数据信息转化为直观易懂的图表和图像,从而帮助用户更好地了解数据的内在规律和趋势。而PHP作为一种高效的脚本语言,在数据可视化方面也具有一定的优势,本文将介绍如何使用PHP进行数据可视化。一、了解PHP图表插件在PHP的数据可视化领域,大量的图表插件可以提供图表绘制、图表美化以及图表数据呈

PHP是一门广泛应用于Web开发的语言,通常被用来构建动态的Web应用程序。随着数据驱动型应用程序的兴起,PHP在数据分析和处理方面也变得越来越重要。本文将介绍如何使用PHP进行数据分析处理,从数据的获取、存储、分析和可视化展示等方面进行讲解。一、数据获取要进行数据分析处理,首先需要获取数据。数据可以来自各种不同的来源,例如数据库、文件、网络等。在PHP中,

随着数据量不断增大,数据分析和处理也变得越来越复杂。在大规模数据处理的过程中,内存泄漏是很常见的问题之一。如果不正确地处理,内存泄漏不仅会导致程序崩溃,还会对性能和稳定性产生严重影响。本文将介绍如何处理大量数据的内存泄漏问题。了解内存泄漏的原因和表现内存泄漏是指程序在使用内存过程中,分配的内存没有被及时释放而导致内存空间浪费。这种情况常常发生在大量数据处理的

在数据分析领域中,数据清洗是非常重要的环节。数据清洗包括识别和修改数据中的任何错误、表征与处理丢失或无效信息等。在Python中,有许多库可以帮助我们进行数据清洗。接下来,我们将介绍如何使用Python进行数据清洗。一、加载数据在Python中,可以使用pandas库来加载数据。当然,数据清洗之前需要对数据的类型进行检查。对于CSV文件,pandas中


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

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

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

Atom editor mac version download
The most popular open source editor

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),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
