我的spl_autoload_register()函数不适用于cpanel,但在localhost中工作正常

时间:2018-05-16 09:50:41

标签: php html mysql

我的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";
   }

0 个答案:

没有答案