使用phpQuery获取数组的实例
程序员文章站
2024-03-07 23:09:27
使用phpquery获取数组
include 'phpquery.php';
phpquery::newdocumentfile('/...
使用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'); # 外语要求
以上这篇使用phpquery获取数组的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。