我想使用 cURL 从以下 HTML 代码中获取值updateXXXX :
<input type="hidden" id="_postupdate" name="_postupdate" value="updateXXXX" /><input type="hidden"(...)
我试过了
$regex = '/name="_postupdate" value="(.*?)" \/><input type="hidden"/s';
if ( preg_match($regex, $page, $list) )
echo $list[0];
但没有成功。有什么建议吗?:) 谢谢