Warning: Use of undefined constant REQUEST_URI – assumed ‘REQUEST_URI’ (this will throw an Error in a future version of PHP) in /var/www/web/wp-content/themes/slatudou/functions.php on line 73
这个奇怪的错误,到底是为什么呢
打开funcitons.php第73行,代码如下:
$path = $_SERVER['HTTP_HOST'] . $_SERVER[REQUEST_URI];
注意到什么问题了么,一边少了一个单引号:REQUEST_URI的左右。
加上双引号,问题解决:
<pre>$path = $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];</pre>
评论