 |
|
Code (PHP)
<?php
header("Content-Type:text/plain; charset=utf-8;");
$_handle = curl_init();
curl_setopt($_handle, CURLOPT_URL, "http://sport.mthai.com/livescore/");
curl_setopt($_handle, CURLOPT_HEADER, 0);
curl_setopt($_handle, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($_handle, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
$_results = curl_exec($_handle);
if(curl_errno($_handle)){
echo curl_error($_handle);
}
//echo htmlentities($_results);
preg_match_all("/<[^>]*?>(.+)<\/[^>]*?>/i", $_results, $_match);
foreach($_match[0] as $_text){
echo strip_tags($_text);
}
?>
ขอยกตัวอย่างผลบอล เว็บเอ็มไทยแล้วกันครับ หากผมจะดึงมาแค่ตัวหนังสือ ชื่อทีม โล้โก้ คะแนน ไม่ทราบว่าต้องทำอย่างไร
ไม่ค่อยเข้าใจส่วนนี้ มันมี / * ? ต้องใส่เพิ่มยังไงครับ
Code (PHP)
preg_match_all("/<[^>]*?>(.+)<\/[^>]*?>/i", $_results, $_match);
รอบช่วยสอนเป็นแนวทางสักนิดหน่อยครับ ขอบคุณครับผม
Tag : PHP
|
|
 |
 |
 |
 |
Date :
2013-12-18 17:46:38 |
By :
sorawit.ff |
View :
1330 |
Reply :
3 |
|
 |
 |
 |
 |
|
|
|
 |