使用phpQuery获取数组的实例
时间:2020-11-20 18:04:46|栏目:PHP代码|点击: 次
使用phpQuery获取数组
<? include 'phpQuery.php'; phpQuery::newDocumentFile('https://www.jb51.net'); foreach (pq("input[name='jobEmail[]']") as $li){ $po['jobEmail'][] = pq($li)->attr('value'); }
使用phpQuery获取元素的值
$po['langSkills']['typeId'][] = $obj->find("select[name='langSkills[typeId][]']:eq(1) option:selected")->attr('value'); # 外语要求
上一篇:php使用simple_html_dom解析HTML示例
栏 目:PHP代码
下一篇:详谈PHP中的密码安全性Password Hashing
本文标题:使用phpQuery获取数组的实例
本文地址:http://www.codeinn.net/misctech/24512.html