我使用file_get_content
來獲取網站的內容。這獲得了所有的內容,但我只需要<div class="nomal">
標籤中的內容。它有一些<div class="nomal">
標籤,我需要得到所有<div class="nomal">
標籤。我的功能:獲取file_get_content函數中的一些內容
function get_need_content($str, $strstart, $strend){
$new_startstr = strpos($str, $strstart);
$new_strend = strpos($str, $strend);
echo $final_str=substr($str, $new_startstr, $new_strend);
}
此功能只能得到一個在所有<div class="nomal">
標記。我需要全部。
您可以使用DOM解析器,如[DOM文檔(HTTP:// PHP。 net/manual/en/class.domdocument.php)來獲取你需要的數據。 –