使用PHP程式語言攫取代碼案例
PHP攫取代碼案例,支援正則表達式設定從開始到結束區功能變數,代碼如下:
<?php
function preg_substr($start, $end, $str) // 正則截取函數
{
$temp = preg_split($start, $str);
$content = preg_split($end, $temp[1]);
return $content[0];
}
function str_substr($start, $end, $str) // 字串截取函數
{
$temp = explode($start, $str, 2);
$content = explode($end, $temp[1], 2);
return $content[0];
}
// —————- 使用案例 —————-
$str = iconv("UTF-8", "big5", file_get_contents("http://www.mycodes.net"));
echo ('標題: ' . str_substr("<title>", "</title>", $str)); // 通過字串提取標題
echo ('作者: ' . preg_substr("/userid=d+">/", "/<//", $str)); // 通過正則提取作者
echo ('內容: ' . str_substr('<div class="content">', '</div>', $str)); //內容當然不可以少
?>