สุดท้ายเลยตัดสินใจ ดึงข้อมูลมา convert ภาษาที่ต้องการเองซะเลย
ดึงข้อมูลจากหน้าเว็บอื่นมาแสดงด้วย 4 ฟังก์ชั่น
1.) file_get_contents()
2.) iconv()
3.) preg_match_all()
4.) foreach()
<?php
$url = 'http://www.myweb.com/target_page.php';
$content = file_get_contents($url);
$content = iconv('tis-620', 'utf-8', $content );
preg_match_all ("/<strong>(.*?)<\/strong>/is", $content, $matches);
foreach($matches[1] as $link){
//Coding here..
}
?>
PHP CI MANIA - PHP Code Generator
โปรแกรมช่วยสร้างโค้ด "ลดเวลาการเขียนโปรแกรม"
ความคิดเห็น
แสดงความคิดเห็น