下面是我整理的PHP中常用的函数,有兴趣的小伙伴可以去看看。
array_intersect()
比较两个数组的键值,并返回交集:
<?php $a1=array("a"=>"red","b"=>"green","c"=>"blue","d"=>"yellow"); $a2=array("e"=>"red","f"=>"green","g"=>"blue");$result=array_intersect($a1,$a2); print_r($result); ?> result:Array ( [a] => red [b] => green [c] => blue )
array_keys() 函数
返回包含数组中所有键名的一个新数组。
<?php $a=array("Volvo"=>"XC90","BMW"=>"X5","Toyota"=>"Highlander"); print_r(array_keys($a)); ?> result:Array ( [0] => Volvo [1] => BMW [2] => Toyota )123456
array_key_exists() 函数
检查某个数组中是否存在指定的键名,如果键名存在则返回 true,如果键名不存在则返回 false。
<?php $a=array("Volvo"=>"XC90","BMW"=>"X5"); if (array_key_exists("Volvo",$a)) { echo "键存在!"; } else { echo "键不存在!"; }?> result:键存在!12345678910111213
array_merge() 函数
把两个数组合并为一个数组:
<?php $a1=array("red","green");$a2=array("blue","yellow"); print_r(array_merge($a1,$a2)); ?> result:Array ( [0] => red [1] => green [2] => blue [3] => yellow )1234567
array_reverse()
以相反的元素顺序返回数组:
<?php $a=array("a"=>"Volvo","b"=>"BMW","c"=>"Toyota"); print_r(array_reverse($a)); ?> result:Array ( [c] => Toyota [b] => BMW [a] => Volvo )123456
array_unshift() 函数
用于向数组插入新元素。新数组的值将被插入到数组的开头。
<?ph $a=array("a"=>"red","b"=>"green"); array_unshift($a,"blue"); print_r($a); ?> result:Array ( [0] => blue [a] => red [b] => green )1234567
array_values
返回一个包含给定数组中所有键值的数组,但不保留键名。
<?php $a=array("Name"=>"Bill","Age"=>"60","Country"=>"USA"); print_r(array_values($a)); ?> result:Array ( [0] => Bill [1] => 60 [2] => USA )123456
hash_equals
可防止时序攻击的字符串比较
比较两个字符串,无论它们是否相等,本函数的时间消耗是恒定的。
本函数可以用在需要防止时序攻击的字符串比较场景中, 例如,可以用在比较 crypt() 密码哈希值的场景。
bool hash_equals ( string $known_string , string $user_string )1
参数:
known_string
已知长度的、要参与比较的 string
user_string
用户提供的字符串
返回值:
当两个字符串相等时返回 TRUE,否则返回 FALSE。
<?php$expected = crypt('12345', '$2a$07$usesomesillystringforsalt$'); $correct = crypt('12345', '$2a$07$usesomesillystringforsalt$'); $incorrect = crypt('apple', '$2a$07$usesomesillystringforsalt$'); var_dump(hash_equals($expected, $correct)); var_dump(hash_equals($expected, $incorrect)); ?> result: bool(true) bool(false)123456789101112
in_array() 函数
搜索数组中是否存在指定的值。
<?php$people = array("Bill", "Steve", "Mark", "David");if (in_array("Mark", $people)) { echo "匹配已找到"; }else { echo "匹配未找到"; } ?> result:匹配已找到1234567891011121314
sprintf() 函数
把百分号(%)符号替换成一个作为参数进行传递的变量:
<?php $number = 2; $str = "Shanghai"; $txt = sprintf("There are %u million cars in %s.",$number,$str); echo $txt; ?> result:There are 2 million cars in Shanghai.12345678
str_ireplace()
替换字符串中的一些字符(不区分大小写) str_ireplace(find,replace,string,count)
<?php echo str_ireplace("WORLD","Shanghai","Hello world!"); ?> result:Hello Shanghai!12345
strpos
查找字符串在另一字符串中第一次出现的位置。
<?php echo strpos("You love php, I love php too!","php"); ?> result:912345
str_replace()
以其他字符替换字符串中的一些字符(区分大小写)
<?php echo str_replace("world","Shanghai","Hello world!"); ?> result:Hello Shanghai!12345
str_ireplace()
替换字符串中的一些字符(不区分大小写)
str_ireplace(find,replace,string,count)
<?php echo str_ireplace("WORLD","Shanghai","Hello world!"); ?> result:Hello Shanghai!12345
substr
返回字符串的一部分。
<?php echo substr("Hello world",6); ?> result:world
上面是我整理给大家的PHP常用函数,希望今后会对大家有帮助。
相关文章:

tostartaphpsession,usesesses_start()attheScript'Sbeginning.1)placeitbeforeanyOutputtosetThesessionCookie.2)useSessionsforuserDatalikeloginstatusorshoppingcarts.3)regenerateSessiveIdStopreventFentfixationAttacks.s.4)考慮使用AttActAcks.s.s.4)

會話再生是指在用戶進行敏感操作時生成新會話ID並使舊ID失效,以防會話固定攻擊。實現步驟包括:1.檢測敏感操作,2.生成新會話ID,3.銷毀舊會話ID,4.更新用戶端會話信息。

PHP会话对应用性能有显著影响。优化方法包括:1.使用数据库存储会话数据,提升响应速度;2.减少会话数据使用,只存储必要信息;3.采用非阻塞会话处理器,提高并发能力;4.调整会话过期时间,平衡用户体验和服务器负担;5.使用持久会话,减少数据读写次数。

PHPsessionsareserver-side,whilecookiesareclient-side.1)Sessionsstoredataontheserver,aremoresecure,andhandlelargerdata.2)Cookiesstoredataontheclient,arelesssecure,andlimitedinsize.Usesessionsforsensitivedataandcookiesfornon-sensitive,client-sidedata.

phpIdentifiesauser'ssessionSessionSessionCookiesAndSessionId.1)whiwsession_start()被稱為,phpgeneratesainiquesesesessionIdStoredInacookInAcookInAcienamedInAcienamedphpsessIdontheuser'sbrowser'sbrowser.2)thisIdallowSphptpptpptpptpptpptpptpptoretoreteretrieetrieetrieetrieetrieetrieetreetrieetrieetrieetrieetremthafromtheserver。

PHP會話的安全可以通過以下措施實現:1.使用session_regenerate_id()在用戶登錄或重要操作時重新生成會話ID。 2.通過HTTPS協議加密傳輸會話ID。 3.使用session_save_path()指定安全目錄存儲會話數據,並正確設置權限。

phpsessionFilesArestoredIntheDirectorySpecifiedBysession.save_path,通常是/tmponunix-likesystemsorc:\ windows \ windows \ temponwindows.tocustomizethis:tocustomizEthis:1)useession_save_save_save_path_path()


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

DVWA
Damn Vulnerable Web App (DVWA) 是一個PHP/MySQL的Web應用程序,非常容易受到攻擊。它的主要目標是成為安全專業人員在合法環境中測試自己的技能和工具的輔助工具,幫助Web開發人員更好地理解保護網路應用程式的過程,並幫助教師/學生在課堂環境中教授/學習Web應用程式安全性。 DVWA的目標是透過簡單直接的介面練習一些最常見的Web漏洞,難度各不相同。請注意,該軟體中

Safe Exam Browser
Safe Exam Browser是一個安全的瀏覽器環境,安全地進行線上考試。該軟體將任何電腦變成一個安全的工作站。它控制對任何實用工具的訪問,並防止學生使用未經授權的資源。

mPDF
mPDF是一個PHP庫,可以從UTF-8編碼的HTML產生PDF檔案。原作者Ian Back編寫mPDF以從他的網站上「即時」輸出PDF文件,並處理不同的語言。與原始腳本如HTML2FPDF相比,它的速度較慢,並且在使用Unicode字體時產生的檔案較大,但支援CSS樣式等,並進行了大量增強。支援幾乎所有語言,包括RTL(阿拉伯語和希伯來語)和CJK(中日韓)。支援嵌套的區塊級元素(如P、DIV),

Dreamweaver CS6
視覺化網頁開發工具

SAP NetWeaver Server Adapter for Eclipse
將Eclipse與SAP NetWeaver應用伺服器整合。