使用preg_match_all來解析附加的bbcode標籤
我有兩種類型的bbcode:[附件]1234[/附件][attach=full]1234[/attach]$message='thisismessagewithattach[attach=full]1234[/attach]我想刪除字串中的所有內容並使用:(preg_match_all('/\[ATTACH((.*?)\](.+?)\[\/ATTACH\]/i',$message,$out,PR
P粉086993788 2024-04-02 23:21:39 0 1 465
curl 採集網頁資料時,for迴圈中preg_match_all()只能取得前兩個數據
get()是可以獲取到數據的,到了preg_match_all這裡就只能獲取前兩條,後面所的都是顯示暫無記錄,如果修改$i從第三條開始獲取,也是只有前兩條,所以第三條是有資料的,只是循環中preg_match_all取得不到
Amy_烊 2018-11-16 10:10:34 0 1 900
問個關於正規表示式的問題
<?php $a=12; $reg='/1*/'; preg_match_all( $reg, $a, $match); var_dump($match); exit;//輸出結果array(1) { [0]=> &n
额…… 2018-11-04 20:38:55 0 0 895