使用phpQuery获取数组
1
2
3
4
5
6
|
<? include 'phpQuery.php' ; 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'); # 外语要求
以上这篇使用phpQuery获取数组的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。