如何从#div中获取内容(指定的内容)。
我的表格如下:
<?php
require_once('phpQuery/phpQuery.php');
$key-one = $_POST['key01'];
$html = file_get_contents('http://google.com/search?q='.$key-one.'');
phpQuery::newDocumentHTML($html);
$result01 = pq('div#resultStats');
?>
<body>
<form name="form1" method="post" action="1.php">
<input type="text" name="key01"><br>
<input type="submit" name="Submit" value="Submit">
</form>
</body>
我得到的结果如下:
About 1,570,000,000 results
但我只想
1,570,000,000
提前致谢。