解析错误:语法错误,意外\'?> \',期待函数(T_FUNCTION)

时间:2015-03-23 10:56:16

标签: php wordpress-plugin

我有一切正确,我已关闭?> php 标记,但仍显示错误:

  

解析错误:语法错误,意外\'?> \',期待函数(T_FUNCTION)

这是我的代码:

<?php

class IWP_MMB_ErrorLog extends IWP_MMB_Core {

    function __construct() {
        parent::__construct();
    }


    function get_errorLog($args) {
        $myfile = fopen(ini_get('error_log'), "r") or die("Unable to open file!");
        // Output one line until end-of-file
        while (!feof($myfile)) {
            $string = fgets($myfile);
            $ar = explode("]", $string);
            if (!empty($ar[0])) {
                $remove = trim($ar[0], "[");
                $remove1 = trim($remove, "UTC");
            }
            if (!empty($ar[1]) && !empty($ar[0])) { 
                $error_data[] = array(
                    'date' => $remove1,
                    'content' => $ar[1],
                );
            }
        }
        fclose($myfile);
        return $error_data; 
    }
}

?>

1 个答案:

答案 0 :(得分:0)

使用NetBeans时遇到类似的问题。该文件看起来很好,但我得到了与你相同的错误。我认为NetBeans需要一些配置,但有用的只是创建一个新文件,复制粘贴内部的所有内容并重命名文件......肮脏的解决方案但有效...