HTML解析如何删除mysql数据库中的标签,属性

时间:2016-06-22 04:59:33

标签: php html mysql html-parsing

HTML解析如何删除mysql数据库中的标签,属性

 preg_match("/<td id=\"enrolment_number\".*td>/", $page, $eno);   
    $e_no=$eno[0];
    $e_no = mysqli_real_escape_string($conn,$e_no);
    preg_match_all("/<p>(.*)<\/p>/", $page, $matches);    
    $nm=$matches[0][0];    
    $mob=$matches[0][4];    
    $sql= "INSERT INTO `leads` (`S.No`, `Enrolment_No`, `Enrolment_TimeStamp`, `Aadhaar_No`, `Name`, `Mobile`, `Address`, `City`, `District`, `State`, `Pincode`, `Remarks`) VALUES (NULL, '$e_no', '$e_dt', '$a_no', '$nm', '$mob', '$add', '$cit', '$dis', '$state', '$pin', '')";

1 个答案:

答案 0 :(得分:0)

在php中使用strip_tags函数,

string strip_tags ( string $str [, string $allowable_tags ] );

其中$allowable_tags是可选的,您可以在其中传递允许的标记

有关详细信息,请查看:http://php.net/manual/en/function.strip-tags.php