我有一个很难调试的独特情况。
我需要在未严格定义为全局的 php 类中设置一个全局字符串,该类必须在另一个文件中。
带有字符串的file.php
只是这样:
//this cannot be changed
$foo_version = '1.1.1';
example.php
试图访问此字符串的文件必须使用一个类:
class Bar extends Task {
public function main() {
require_once('../file.php');
//global $foo_version; this doesn't work
// update the database with this string, does not work
update_option( 'db_field', $foo_version );
}
}
我怎样才能$foo_version
在课堂上返回一些东西?
在课堂之外也无法定义/完成任何事情。