PHP preg_match_all is a search-based function in the PHP programming language. It returns the total number of matches found in a string. It also uses the regular expression pattern as a parameter to complete the search process. This function is very while we must extract the phone number from a given string, including some textual information. We can perform various other matching using this built-in PHP function. It provides all matching as an array output as preg_match_all includes all in its name (suffix). preg_match() is the singular version of this function that gives only a single finding as an output.
ADVERTISEMENT Popular Course in this category PHP DEVELOPER - Specialization | 8 Course Series | 3 Mock TestsStart Your Free Software Development Course
Web development, programming languages, Software testing & others
Syntax and Parameter of PHP preg_match_all
The syntax of PHP preg_match_all is given below:
preg_match_all(regexPattern, inputString, matches, flags, offset)
Parameter:
- regexPattern: it is a required parameter. This is a regular expression that we would like to move to use in the search process.
- inputString: String upon which the whole operation depends. It is a required parameter.
- Matches: It is an optional parameter. This will give us the array containing all the games in this. That means in this parameter variable, the output will be stored.
- Flags: Again, the optional one. It is all about how the search structures will be framed. It could be PREG_PATTERN_ORDER, PREG_SET_ORDER, PREG_OFFSET_CAPTURE, PREG_UNMATCHED_AS_NULL, etc.
- Offset: Again, the optional one. The default will be 0.
The user of preg_match_all()
$string = "WELCOME TO INDIA"; // string $patternRex = "/E/i"; // regular expression or the pattern if(preg_match_all($patternRex, $string, $matches)) { echo "<pre class="brush:php;toolbar:false">"; print_r($matches); }
In the above line of the code, we are searching for ‘E’ character. ‘i’ is being used in the regular expression for the not case sensitive. We will explore and see various other examples in the example section of this article.
Examples of PHP preg_match_all()
Following are examples of the php preg_match_all are given below:
Example #1
Searching ‘E’ character in the given string irrespective of the case of that string.
Code:
<?php $string = "WELCOME TO INDIA."; // string $patternRex = "/E/i"; // regular expression or the pattern $matchFound = preg_match_all($patternRex, $string, $matches); if($matchFound){ echo "<pre class="brush:php;toolbar:false">"; print_r($matches); } ?>
Output:
Example #2
Checked whether ‘E’ character (capital letter of E) exists in the given string or not.
Code:
<?php $string = "Lorem Ipsum is simply dummy text of the printing and typesetting industry."; // string $patternRex = "/E/"; // regular expression or the pattern $matchFound = preg_match_all($patternRex, $string, $matches); if($matchFound){ echo "<pre class="brush:php;toolbar:false">"; echo "Match Found."; print_r($matches); }else{ echo "No match found."; } ?>
Output:
The ‘e’ character exists, as we can see in the string of the above example code, but the case is not matching as per the written in the pattern. No match found will be output, but if we change how to search for in-case sensitive, it will give some output.
Example #3
Extracting all phone numbers from a given string.
Code:
<?php $string = "Hi, please call us at 800-222-1212 or 800-001-1212 or 700-555-1212 or 800-555-1312"; // string $patternRex = "/\b\d{3}\s*-\s*\d{3}\s*-\s*\d{4}\b/"; // regular expression or the pattern $matchFound = preg_match_all($patternRex, $string, $matches); if($matchFound){ echo "<pre class="brush:php;toolbar:false">"; echo "Match Found.<br>"; print_r($matches); }else{ echo "No match found."; } ?>
Output:
Example #4
List the HTML tag element of a given string of various tags.
Code:
<?php $userinfo = "Name: <b>John Raw Title: <b>PHP Lover</b> Name: <b>Shree Sham</b> Title: <b>JAVA Lover</b> Name: <b>Jonathan</b> Title: <b>Node Lover</b> Name: <b>Amla Palekar </b> Title: <b>Comic Reader</b>"; preg_match_all ("/<b>(.*)/U", $userinfo, $matches); for ($i=0; $i"; } ?></b>
Output:
As we can see in the above example code, the code extracts all the tag with the value of the tag. is usually used for making the string bold in the HTML. In the same way, we can try other elements of the combination of factors to get the desired result per our business requirements.
Example #5
A program to count the number of spaces of a given string using the preg_match_all() function.
Code:
<?php $userinfo = "The code below count the number of spaces of the given string."; $search = preg_match_all ("/\\s/", $userinfo, $matches); if($search){ echo "Number of spaces: ".count($matches[0]); } ?>
The above line of code shows that we have a string containing spaces. We have a regular expression to match the pattern of the area. We can see all the rooms inside the $matches array if the games are found. Then we use the count() function to get the count of that $matches array. We can use this PHP pattern-based PHP search function in various other ways.
Output:
結論
內建函數 preg_match_all() 可以使用正規表示式搜尋字串中的任何內容。該函數不僅給出搜尋是否找到,而且還以數組的形式提供搜尋是否找到。開發人員或編碼人員可以使用此正規表示式函數來滿足其業務需求的各種需求。開發人員在使用它時應該小心,因為有時它會給出多維數組作為匹配數組的輸出。
以上是PHP preg_match_all的詳細內容。更多資訊請關注PHP中文網其他相關文章!

PHP在現代Web開發中仍然重要,尤其在內容管理和電子商務平台。 1)PHP擁有豐富的生態系統和強大框架支持,如Laravel和Symfony。 2)性能優化可通過OPcache和Nginx實現。 3)PHP8.0引入JIT編譯器,提升性能。 4)雲原生應用通過Docker和Kubernetes部署,提高靈活性和可擴展性。

PHP適合web開發,特別是在快速開發和處理動態內容方面表現出色,但不擅長數據科學和企業級應用。與Python相比,PHP在web開發中更具優勢,但在數據科學領域不如Python;與Java相比,PHP在企業級應用中表現較差,但在web開發中更靈活;與JavaScript相比,PHP在後端開發中更簡潔,但在前端開發中不如JavaScript。

PHP和Python各有優勢,適合不同場景。 1.PHP適用於web開發,提供內置web服務器和豐富函數庫。 2.Python適合數據科學和機器學習,語法簡潔且有強大標準庫。選擇時應根據項目需求決定。

PHP是一種廣泛應用於服務器端的腳本語言,特別適合web開發。 1.PHP可以嵌入HTML,處理HTTP請求和響應,支持多種數據庫。 2.PHP用於生成動態網頁內容,處理表單數據,訪問數據庫等,具有強大的社區支持和開源資源。 3.PHP是解釋型語言,執行過程包括詞法分析、語法分析、編譯和執行。 4.PHP可以與MySQL結合用於用戶註冊系統等高級應用。 5.調試PHP時,可使用error_reporting()和var_dump()等函數。 6.優化PHP代碼可通過緩存機制、優化數據庫查詢和使用內置函數。 7

PHP成為許多網站首選技術棧的原因包括其易用性、強大社區支持和廣泛應用。 1)易於學習和使用,適合初學者。 2)擁有龐大的開發者社區,資源豐富。 3)廣泛應用於WordPress、Drupal等平台。 4)與Web服務器緊密集成,簡化開發部署。

PHP在現代編程中仍然是一個強大且廣泛使用的工具,尤其在web開發領域。 1)PHP易用且與數據庫集成無縫,是許多開發者的首選。 2)它支持動態內容生成和麵向對象編程,適合快速創建和維護網站。 3)PHP的性能可以通過緩存和優化數據庫查詢來提升,其廣泛的社區和豐富生態系統使其在當今技術棧中仍具重要地位。

在PHP中,弱引用是通過WeakReference類實現的,不會阻止垃圾回收器回收對象。弱引用適用於緩存系統和事件監聽器等場景,需注意其不能保證對象存活,且垃圾回收可能延遲。

\_\_invoke方法允許對象像函數一樣被調用。 1.定義\_\_invoke方法使對象可被調用。 2.使用$obj(...)語法時,PHP會執行\_\_invoke方法。 3.適用於日誌記錄和計算器等場景,提高代碼靈活性和可讀性。


熱AI工具

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

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

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

Atom編輯器mac版下載
最受歡迎的的開源編輯器

ZendStudio 13.5.1 Mac
強大的PHP整合開發環境

SublimeText3漢化版
中文版,非常好用

WebStorm Mac版
好用的JavaScript開發工具

VSCode Windows 64位元 下載
微軟推出的免費、功能強大的一款IDE編輯器