我在所有编辑页面上都注意到“注意:数组到字符串的转换”。而编辑页面网址之一是 xxxxx://xxx.xxx.xxx.com/xxx/careers.php?position_id = 23&mode = edit
我试图添加foreach以获得确切的值,但是没有任何解决方案。有人可以帮我吗
$str = "";
$q_string = explode('&',$_SERVER['QUERY_STRING']);
$new_qstring = "";
$q_string = array_filter($q_string);
if(!empty($q_string)){
for ($i=0;$i<count($q_string);$i++) {
if (!preg_match('/^&msg/i',!empty($subject),$matches) && !preg_match('/^mode=/i',!empty($subject),$matches) && !preg_match('/^ref_no=/i',!empty($subject),$matches) && !preg_match('/^type=/i',!empty($subject),$matches) )
$new_qstring .= $matches."&";
}
}
$smarty->assign('qstring',substr($new_qstring,0,-1));
注意:第10行的/xxxx/xxxx/xxxx/xxxxx/pagination_code.php中的数组到字符串的转换