如何解决文件php意外结束

时间:2019-07-14 22:11:38

标签: php

这段代码给我一个问题

我正在XAMPP上使用php 7

<?php
header( "HTTP/1.1 301 Moved Permanently", TRUE, 302 );
header("location: /wordpress/index.php”);

VSCode中的错误:语法错误,文件意外结束,预期变量(T_VARIABLE)或$ {(T_DOLLAR_OPEN_CURLY_BRACES)或{$(T_CURLY_OPEN)

之后 我添加了结束标签。

<?php
header( "HTTP/1.1 301 Moved Permanently", TRUE, 302 );
header("location: /wordpress/index.php”);
?>

代码仍无法正常工作

0 个答案:

没有答案