萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> php獲取指定位置內容

php獲取指定位置內容

這款函數比較實用於數據采集,一般采集數據時會要指定一個區域的內容,這個代碼就可以實例;
*/

 代碼如下 復制代碼

$str="<!-- fdaf-- -->";
echo strip_comments( $str );

function strip_comments($data) {
    $the_rest = $data;
    $result = "";

    while ($the_rest) {
        $start = strpos($the_rest, "<!--");
        if ($start === false) {
            $result .= $the_rest;
            break;
        }

        $result .= substr($the_rest, 0, $start);

        $end = strpos($the_rest, "-->", $start);
        if ($end === false) {
            break;
        }

        $the_rest = substr($the_rest, $end+3);
    }

    return $result;
}

copyright © 萬盛學電腦網 all rights reserved