deprecated: preg_replace(): the /e modifier is deprecated, use preg_replace_callback instead in f:\1ndown\phpdemo\upload\includes\cls_template.php on line 300
strict standards: only variables should be passed by reference in f:\1ndown\phpdemo\upload\includes\cls_template.php on line 422
基本出现这两个错误
f:\1ndown\phpdemo\upload\includes\cls_template.php on line 422:
422行语句: $tag_sel = array_shift(explode(' ', $tag));(有人说是php版本版本太高了,不支持)
$tag_sel = array_shift(explode(' ', $tag));
改成:
$tag_arr = explode(' ', $tag);
$tag_sel = array_shift($tag_arr);
//改完后,还是不行,求大神帮忙
回复讨论(解决方案)
php和apache版本太高了 试下php5.2 apache2.2