2019年6月7日 星期五

PHP讀取網頁及csv檔

# 讀取網頁

<?php
//網址                                                                                                                 
$url = 'https://rate.bot.com.tw/xrt';
//通過file()函數將它存在一個陣列裡
$lines_array = file($url);
$lines_string = implode('', $lines_array);
//取得在 table 標籤中的資料
eregi("<table title(.*)</table>", $lines_string, $head);
//echo 出來表格
echo $head[0];

?>

沒有留言:

張貼留言