我需要一些帮助。因为在preg_replace / e中不推荐使用,我必须将我的所有preg_replace转换为preg_replace_callback ......
旧代码
dataList
这是我必须将其更改为preg_replace_callback
$status = preg_replace("/((http:\/\/|https:\/\/)[^ )
]+)/e", "'<a href=\"$1\" title=\"$1\" >'. ((strlen('$1')>=250 ? substr('$1',0,250).'...':'$1')).'</a>'", $status);
但它不起作用。我希望有人能帮助我