使用phpQuery获取数组的实例

githubphpnobug 2019-04-16

使用phpQuery获取数组

<? 
include 'phpQuery.php'; 
phpQuery::newDocumentFile('//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');  # 外语要求

相关推荐