出于某种原因,当我尝试打开页面时,PHP崩溃了。我在localhost:82
中使用Uniform Server Zero
代码如下:
的index.php
<?php
require_once 'core/init.php';
$db = new DB();
?>
芯/的init.php
<?php
session_start();
$GLOBALS['config'] = array(
'mysql' => array(
'host' => 'localhost:82',
'username' => 'root',
'password' => 'password',
'db' => 'forum'
),
'remember' => array(
'coolie_name' => 'hash',
'cookie_expiry' => 604800
),
'session' => array(
'session_name' => 'user'
)
);
spl_autoload_register(function($class) {
require_once '../classes/' . $class . '.php';
});
require_once '../functions/sanitize.php';
?>
功能/ sanitize.php
<?php
function escape($string) {
return htmlentities($string, ENT_QUOTES, 'UTF-8');
}
?>
我尝试在每个test
代码之前和之后添加文字php
,似乎只有index.php
崩溃(它会在test
之前显示php
文字{1}}标签,但不在之后 - 甚至在查看源模式下)。
我使用的浏览器是Aurora开发版,我从this youtube教程获取代码。