亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定

正則匹配輸出的數組為什么是這樣的。

<?php

$p = "/<tr><td>(.*?)<\/td>\s*<td>(.*?)<\/td>\s*<\/tr>/i";

$str = "<table> <tr><td>Eric</td><td>25</td></tr> <tr><td>John</td><td>26</td></tr> </table>";

preg_match_all($p, $str, $matches);

print_r($matches);

$matches:

Array
(
? ?[0] => Array
? ? ? ?(
? ? ? ? ? ?[0] => Eric25
? ? ? ? ? ?[1] => John26
? ? ? ?)

? ?[1] => Array
? ? ? ?(
? ? ? ? ? ?[0] => Eric
? ? ? ? ? ?[1] => John
? ? ? ?)

? ?[2] => Array
? ? ? ?(
? ? ? ? ? ?[0] => 25
? ? ? ? ? ?[1] => 26
? ? ? ?)

)哪位大神能給解釋一下?


正在回答

1 回答

$matches ?是preg_match_all 最后得出的 是一個數組


?第0個代表全部 ?第1個代表正則匹配的第一個<td>Eric</td> 里的 ?第二個 代表第二個?<td>25</td>

0 回復 有任何疑惑可以回復我~

舉報

0/150
提交
取消

正則匹配輸出的數組為什么是這樣的。

我要回答 關注問題
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號