Apache 处理 PHP 数组标记作为结束标记
Apache Handles PHP Array Tag as closing Tag
enter image description here我在我的 Windows 本地主机 XAMPP 上做了一个 PHP-项目。现在我想在 Apache2.4 上的公司 Linux 服务器上启动它,但是这个 Apache 以某种方式处理数组部分 (=>) 作为 php
的结束标记。如何解决这个问题?
感谢您提前申请!
<?php
$error = "";
if(isset($_POST['username'],$_POST['password'])){
$user = array('usern' =>'xxx',"passw"=>"yyy",);
$username = $_POST['username'];
$pass = $_POST['password'];
if($username == $user['usern'] && $pass == $user['passw']){
session_start();
$_SESSION['simple_login'] = $username;
echo '{"error":0}';
}else{
echo '{"error":1}';
}
exit();
}
?>
你怎么描述的,代码好像解释成html.
很可能 php 网络服务器上没有安装 apache 模块。
enter image description here我在我的 Windows 本地主机 XAMPP 上做了一个 PHP-项目。现在我想在 Apache2.4 上的公司 Linux 服务器上启动它,但是这个 Apache 以某种方式处理数组部分 (=>) 作为 php
的结束标记。如何解决这个问题?
感谢您提前申请!
<?php
$error = "";
if(isset($_POST['username'],$_POST['password'])){
$user = array('usern' =>'xxx',"passw"=>"yyy",);
$username = $_POST['username'];
$pass = $_POST['password'];
if($username == $user['usern'] && $pass == $user['passw']){
session_start();
$_SESSION['simple_login'] = $username;
echo '{"error":0}';
}else{
echo '{"error":1}';
}
exit();
}
?>
你怎么描述的,代码好像解释成html.
很可能 php 网络服务器上没有安装 apache 模块。