警告的含义是什么?
Warning: preg_replace() [function.preg-replace]: Compilation failed: PCRE does not support \L, \l, \N{name}, \U, or \u at offset 1 in
它是由这个函数触发的:
file_put_contents($file,preg_replace('(\uid=\d+)', 'uid=' . $uid, file_get_contents($file)));
即这种模式:
'(\uid=\d+)'
它可以在本地运行,但不能在线运行,这意味着它可能是我主机的 PHP 版本。我试图用谷歌搜索解决方法,但找不到任何东西。