|
|
|
เก็บค่าจาก url ไม่รู้ว่าทำได้รึเปล่า ช่วยชี้แนะเป็นแนวทางด้วยค่ะ |
|
|
|
|
|
|
|
ตอนนี้ ลอง ใช้ โค็ดตัวนี้แต่ติดที่ preg_match_all หรือเปล่าไม่แน่ใจ
Code (PHP)
<?php
$ch_url = curl_init();
curl_setopt($ch_url, CURLOPT_URL, 'http://sbayjai.com/forum/index.php?action=post;board=12.0'); // first url
curl_setopt($ch_url, CURLOPT_USERAGENT, 'AppleWebKit/530.5 (KHTML, like Gecko) Chrome/2.0.172.39 Safari/530.5');
curl_setopt($ch_url, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch_url, CURLOPT_HEADER, 1);
curl_setopt($ch_url, CURLOPT_NOBODY, 1); //we don't need to recieve the body of response
$headers = curl_exec($ch_url);
curl_close ($ch_url);
$pattern = '`.*?((http)://[\w#$&+,\/:;[email protected]]+)[^\w#$&+,\/:;[email protected]]*?`i'; //this regexp finds your url
if (preg_match_all($pattern,$headers,$matches))
$url = $matches[1][0]; // second url
print_r($url);
?>
|
|
|
|
|
Date :
2016-02-15 22:12:45 |
By :
sammam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|