使用简单的HTML DOM解析器从Javascript中查找内容

时间:2011-06-30 23:01:16

标签: php dom simple-html-dom php-parser

如何使用Simple HTML DOM Parser找到“请再次输入有效密钥”的内容?

示例:

<script language="javascript">
     function Enable() {      
        alert('Please enter a valid key again');
     }
</script>

这似乎不起作用:

<?php

include_once("simple_html_dom.php");

$html = file_get_html("incorrect.html");

$ret = $html->find("Please enter a valid key again", 0);

if ($ret) {
    echo "found";
} else {
    echo "not found";
}
?>

1 个答案:

答案 0 :(得分:4)

您可以通过更简单的方式执行此操作:

<?php    
include_once("simple_html_dom.php");        
$html = file_get_html('incorrect.html');
(strstr($html,'Please enter a valid key again')) ? print("found") : print("not found");
?>