好了,所以可以說我需要一個部分鏈接:http://www.dailymotion.com/video/xnstwx_bmw-eco-pro-race_auto
無法獲得的preg_match返回所需的數據
我需要得到
[0] => xnstwx
[1] => bmw-eco-pro-race_auto
和我正在嘗試:preg_match('/video\/([A-Za-z0-9]+)_/i', $video['url'], $match);
我得到:
[0] => video/xnstwx_
[1] => xnstwx
比我嘗試它:preg_match('/video\/([A-Za-z0-9]+)_/([A-Za-z0-9-_]+)', $video['url'], $match);
,我想你已經知道這是錯誤的。
我一直逃避正則表達式無緣無故,現在我試圖學習使用正則表達式作弊表,但現在我有點卡住:)。
感謝您的解決方案 – Alex