我的spl_autoload_register()
函数不适用于cpanel,但在localhost中正常工作。
以下是input.php
文件中输入类的代码: -
class Input {
public static function exists($type = 'post') {
switch($type) {
case 'post':
return return $_POST[$item];
break;
default:
return false;
break;
}
}}
并通过下面的init.php
文件,我正在尝试访问我的input.php
文件。
spl_autoload_register(function($class) {
require_once $class . '.php';
});
现在我正在尝试访问init.php
文件中的form.php
文件,我无法查看该页面,并且在cpanel中上传这些文件时显示空白屏幕但是我的当地主人没关系。
require_once 'init.php';
if(Input::exists()) {
<form action="" method="post">
<label for='name'>name</label>
<input type="text" name="name" id="name">
<input type="submit" value="Login">
</form>
}else{
echo "no form";
}