PHP:读取包含未定义函数的文件?

时间:2014-05-06 16:05:03

标签: php file undefined-function

偶然发现了一个恼人的问题。

我需要以编程方式从php文件中提取特定的文本行。 (它是注释中的插件版本号)

看起来很简单,但是我试图读取的文件中包含一个未定义的函数,只要尝试打开它的脚本是关注的。

无论如何,我可以使用PHP的内置函数读取文件,到目前为止,file_get_contents(),file()和readfile()都会遇到同样的问题。

非常感谢任何帮助。

------------------------------------------- UPDATE

好吧,看来我以前的错误一直是缓存问题,因为它似乎没有任何未定义函数错误,但现在我的返回数组似乎是空的?

读者脚本

<?php

//some other code

//lines in question
$lines = file('path/to/file.php');          
$data['Version']=$lines[6];

?>

正在阅读的文件

<?php
/*
Plugin Name: Wordfence Security
Plugin URI: http://www.wordfence.com/
Description: Wordfence Security - Anti-virus, Firewal and Site Speedup
Author: Wordfence
Version: 5.0.6
Author URI: http://www.wordfence.com/
*/
if(defined('WP_INSTALLING') && WP_INSTALLING){
    return;
}
define('WORDFENCE_VERSION', '5.0.6');
if(get_option('wordfenceActivated') != 1){
    add_action('activated_plugin','wordfence_save_activation_error'); function wordfence_save_activation_error(){ update_option('wf_plugin_act_error',  ob_get_contents()); }
}
if(! defined('WORDFENCE_VERSIONONLY_MODE')){
    if((int) @ini_get('memory_limit') < 64){
        if(strpos(ini_get('disable_functions'), 'ini_set') === false){
            @ini_set('memory_limit', '64M'); //Some hosts have ini set at as little as 32 megs. 64 is the min sane amount of memory.
        }
    }
    require_once('lib/wordfenceConstants.php');
    require_once('lib/wordfenceClass.php');
    wordfence::install_actions();
}

?>

0 个答案:

没有答案