正则表达式 - php提取html中指定div下a标签的text和href问题原创2016-06-06 20:27:030617
已解决,有点凌乱,速度就行。
(.*?)%sim';
preg_match_all($pa,$response,$arr);
$pa = '%(.*?)%sim';
preg_match_all($pa,$response,$arr);
$result=array();
$number=count($arr[1]);
for($i=0;$i1000 ) {
die('possible deep recursion attack');
}
foreach ($array as $key => $value) {
if (is_array($value)) {
arrayRecursive($array[$key], $function, $apply_to_keys_also);
} else {
$array[$key] = $function($value);
}
if ($apply_to_keys_also && is_string($key)) {
$new_key = $function($key);
if ($new_key != $key) {
$array[$new_key] = $array[$key];
unset($array[$key]);
}
}
}
$recursive_counter--;
}
/**************************************************************
*
* 将数组转换为JSON字符串(兼容中文)
* @param array $array 要转换的数组
* @return string 转换得到的json字符串
* @access public
*
*************************************************************/
function JSON($array)
{
arrayRecursive($array, 'urlencode', true);
$json = json_encode($array);
return urldecode($json);
}
URL:http://www.hkxy.edu.cn/
如图所示:
我想提取.offer_box_wide1下a元素的text和href怎么破?求教
回复内容:
已解决,有点凌乱,速度就行。
(.*?)%sim';
preg_match_all($pa,$response,$arr);
$pa = '%(.*?)%sim';
preg_match_all($pa,$response,$arr);
$result=array();
$number=count($arr[1]);
for($i=0;$i1000 ) {
die('possible deep recursion attack');
}
foreach ($array as $key => $value) {
if (is_array($value)) {
arrayRecursive($array[$key], $function, $apply_to_keys_also);
} else {
$array[$key] = $function($value);
}
if ($apply_to_keys_also && is_string($key)) {
$new_key = $function($key);
if ($new_key != $key) {
$array[$new_key] = $array[$key];
unset($array[$key]);
}
}
}
$recursive_counter--;
}
/**************************************************************
*
* 将数组转换为JSON字符串(兼容中文)
* @param array $array 要转换的数组
* @return string 转换得到的json字符串
* @access public
*
*************************************************************/
function JSON($array)
{
arrayRecursive($array, 'urlencode', true);
$json = json_encode($array);
return urldecode($json);
}
URL:http://www.hkxy.edu.cn/
如图所示:
我想提取.offer_box_wide1下a元素的text和href怎么破?求教
最简单的办法是phpQuery
参考PHP Simple HTML DOM Parser
http://simplehtmldom.sourceforge.net/
可以像jquery选择器一样灵活操作html。
本文原创发布php中文网,转载请注明出处,感谢您的尊重!