如何使用 phpQuery 获取具有特定名称的表单?
<form method="POST" name="example">
<input type="hidden"
...
我的尝试:
include 'phpQuery-onefile.php';
//example site with this form
$html = file_get_contents("http://www.example.com");
$pq = phpQuery::newDocument($html);
$a = $pq->find("form name=example");