笨鸟学php(六) 数组
一、数组概述
1.1 数组是复合类型
1.2 数组中可以存储任意长度的数据, 也可以存储任意类型的数据
二、数组的类型
2.1 索引数组: 下标是顺序整数作为索引
<?php $user[0] = 1; $user[1] = "zhangsan"; $user[2] = "[email protected]"; echo '<pre class="brush:php;toolbar:false">'; print_r($user); echo '';?> 2.2 关联数组: 下标是字符串作为索引
<?php $user["id"] = 1; $user["name"] = "zhangsan"; $user["email"] = "[email protected]"; echo '<pre class="brush:php;toolbar:false">'; print_r($user); echo ''; $user["name"] = "lisi"; echo $user["name"];?>
三、数组的多种声明方式
3.1 直接为数组元素赋值
a. 如果索引下标不给值,就会从0开始顺序索引
b. 如果给出索引下标,下一个就会是从最大的开始增1
c. 如果后面出现前面的下标,如果是赋值就是为前面的元素重新赋值
d. 混合声明时,索引和关联不互相影响(不影响索引下标的声明)
3.2 使用array()函数
a. 默认是索引数组
b. 如果为关联数组和索引数组指定下标,使用 键=>值
c. 多个成员之前使用“,”分割
<?php $user1 = array (1, "zhsangsan", 10, "nan", "[email protected]"); echo '<pre class="brush:php;toolbar:false">'; print_r($user1); echo ''; /** Array( [0] => 1 [1] => zhsangsan [2] => 10 [3] => nan [4] => [email protected] ) */ $user2 = array("id"=>1, "name"=>"zhsangsan", "age"=>10, 100=>"nan", "[email protected]"); echo '
'; print_r($user2); echo ''; /** Array( [id] => 1 [name] => zhsangsan [age] => 10 [100] => nan [101] => [email protected] ) */?>
重要知识点: 二维数组
<?php $info=array( "user"=>array( array(1, "zansan", 10, "nan"), array(2, "lisi", 20, "nv") ) ); echo $info["user"][1][1]; // lisi echo '<pre class="brush:php;toolbar:false">'; print_r($info); echo ''; /** Array ( [user] => Array ( [0] => Array ( [0] => 1 [1] => zansan [2] => 10 [3] => nan ) [1] => Array ( [0] => 2 [1] => lisi [2] => 20 [3] => nv ) ) ) */?>
四、数组的遍历
4.1 使用for语句循环遍历(不推荐)
局限性: 数组必须是索引数组, 而且下标必须是连续的 (然而索引数组下标可以不连续, 数组还可能是关联数组)
<?php $user = array(1, "zhasna", "[email protected]"); for($i = 0; $i < count($user); $i++){ echo "\$user[{$i}]=".$user[$i]."<br>"; } /** $user[0]=1 $user[1]=zhasna $user[2][email protected] */?>
4.2 使用foreach语句循环遍历(强烈推荐)
循环次数由数组的元素个数决定, 每一次循环都会将数组中的元素分别赋值给后面的变量
<?php $user=array(1, "name"=>"zhasna", "age"=>40, 100=>"nan", "[email protected]"); foreach($user as $key => $val){ // $var 是自定义变量, $key自定义变量 echo $key." =====> ".$val."<br>"; } /* 0 =====> 1 name =====> zhasna age =====> 40 100 =====> nan 101 =====> [email protected] */ foreach($user as $val){ // 不要key也可以, 直接遍历$user的值 echo $val."<br>"; } /* 1 zhasna 40 nan [email protected] */?>
4.3 使用while(), list(), each() 组合循环遍历(不推荐)
each() 函数:
* 需要一个数组作为参数
* 返回来的也是一个数组
* 返回来的数组时0, 1, key, value四个下标, 0和key下标是当前数组元素的键, 1和value下标是当前数组元素的值
* 默认当前元素就是第一个元素
* 每执行一次后就会将当前元素向后移动
* 如果已经到了最后还执行这个函数, 则返回false
<?php $user = array("id"=>1, "name"=>"zhangsan", "age"=>10, "sex"=>"nan"); while($arr = each($user)){ // echo $arr[0]."==>".$arr[1]."<br>"; echo $arr["key"]." ----> ".$arr["value"]."<br>"; } /** id ----> 1 name ----> zhangsan age ----> 10 sex ----> nan */?>
list() 函数:
* list()=array(); 需要将一个数组赋值给这个函数
* 数组中的元素个数要和list()函数中的参数个数相同
* 数组中的每个元素值会赋值给list()函数中的每个参数,list()将每个参数转为变量
* list()只能接收索引数组
<?php list($name, $age, $sex) = array("zansan", 10, "nnnnn"); echo $name."<br>"; echo $age."<br>"; // list中的值和数组中的值一一对应 echo $sex."<br>"; // 如果不想给name赋值, 那就写成list(, $age, $sex) /* zansan 10 nnnnn */ $user1 = array("id"=>1, "name"=>"zhangsan", "age"=>10, "sex"=>"nan"); list($key, $value) = each($user1); // Array ( [1] => 1 [0] => id ) echo $key." --> ".$value; /* id --> 1 */ $user2 = array("id"=>1, "name"=>"zhangsan", "age"=>10, "sex"=>"nan"); while(list($key, $value) = each($user2)){ echo $key." ==> ".$value."<br>"; } /* name ==> zhangsan age ==> 10 sex ==> nan */?>

phpisusedforsendendemailsduetoitsignegrationwithservermailservicesand andexternalsmtpproviders,自动化notifications andMarketingCampaigns.1)设置设置yourphpenvironcormentswironmentswithaweberswithawebserverserverserverandphp,确保themailfunctionisenabled.2)useabasicscruct

发送电子邮件的最佳方法是使用PHPMailer库。1)使用mail()函数简单但不可靠,可能导致邮件进入垃圾邮件或无法送达。2)PHPMailer提供更好的控制和可靠性,支持HTML邮件、附件和SMTP认证。3)确保正确配置SMTP设置并使用加密(如STARTTLS或SSL/TLS)以增强安全性。4)对于大量邮件,考虑使用邮件队列系统来优化性能。

CustomHeadersheadersandAdvancedFeaturesInphpeMailenHanceFunctionalityAndreliability.1)CustomHeadersheadersheadersaddmetadatatatatataatafortrackingandCategorization.2)htmlemailsallowformattingandttinganditive.3)attachmentscanmentscanmentscanbesmentscanbestmentscanbesentscanbesentingslibrarieslibrarieslibrariesliblarikelikephpmailer.4)smtppapapairatienticationaltication enterticationallimpr

使用PHP和SMTP发送邮件可以通过PHPMailer库实现。1)安装并配置PHPMailer,2)设置SMTP服务器细节,3)定义邮件内容,4)发送邮件并处理错误。使用此方法可以确保邮件的可靠性和安全性。

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

使用依赖注入(DI)的原因是它促进了代码的松耦合、可测试性和可维护性。1)使用构造函数注入依赖,2)避免使用服务定位器,3)利用依赖注入容器管理依赖,4)通过注入依赖提高测试性,5)避免过度注入依赖,6)考虑DI对性能的影响。

phperformancetuningiscialbecapeitenhancesspeedandeffice,whatevitalforwebapplications.1)cachingwithapcureduccureducesdatabaseloadprovesrovesponsemetimes.2)优化

ThebestpracticesforsendingemailssecurelyinPHPinclude:1)UsingsecureconfigurationswithSMTPandSTARTTLSencryption,2)Validatingandsanitizinginputstopreventinjectionattacks,3)EncryptingsensitivedatawithinemailsusingOpenSSL,4)Properlyhandlingemailheaderstoa


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

SecLists
SecLists是最终安全测试人员的伙伴。它是一个包含各种类型列表的集合,这些列表在安全评估过程中经常使用,都在一个地方。SecLists通过方便地提供安全测试人员可能需要的所有列表,帮助提高安全测试的效率和生产力。列表类型包括用户名、密码、URL、模糊测试有效载荷、敏感数据模式、Web shell等等。测试人员只需将此存储库拉到新的测试机上,他就可以访问到所需的每种类型的列表。

DVWA
Damn Vulnerable Web App (DVWA) 是一个PHP/MySQL的Web应用程序,非常容易受到攻击。它的主要目标是成为安全专业人员在合法环境中测试自己的技能和工具的辅助工具,帮助Web开发人员更好地理解保护Web应用程序的过程,并帮助教师/学生在课堂环境中教授/学习Web应用程序安全。DVWA的目标是通过简单直接的界面练习一些最常见的Web漏洞,难度各不相同。请注意,该软件中

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

SublimeText3 英文版
推荐:为Win版本,支持代码提示!

SublimeText3 Linux新版
SublimeText3 Linux最新版