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");