http://simplehtmldom.sourceforge.net/manual.htm
ถ้าดึง Web ปกติ สามารถใช้ ได้เลย
แต่ถ้าเป็น HTTPS จะไม่ได้จะมี Error
Warning: file_get_contents(): SSL: Connection reset by peer in Line Error
Warning: file_get_contents(): Failed to enable crypto in Line Error
ต้องใช้ เพื่อให้ https ผ่าน
- include('simple_html_dom.php');
- $url = 'https://www.pbebank.com/rates/forex.html';
- $arrContextOptions=array(
- "ssl"=>array(
- "verify_peer"=>false,
- "verify_peer_name"=>false,
- ),
- );
- stream_context_create($arrContextOptions));
- $response = file_get_contents("https://www.pbebank.com/rates/forex.html", false, stream_context_create($arrContextOptions));
- print_r($response);
- $dom = str_get_html($response);
- $html = $dom->find('table[id=tech-companies] tbody tr');
- print_r("<br>".$html[1]);
- print_r("<br>".$html[3]);
No comments:
Post a Comment