需要任意PHP文件,而不会将变量泄漏到作用域

2022-02-26 00:00:00 scope global-variables php

是否可以在PHP中require任意文件,而不将任何变量从当前作用域泄漏到所需文件的变量命名空间或污染全局变量作用域?

我想对PHP文件进行轻量级模板制作,出于纯粹的考虑,我想知道是否可以加载一个模板文件,它的作用域中除了预期变量之外没有任何变量。

我已经设置了一个测试,我希望解决方案通过该测试。它应该能够请求RequiredFile.php并使其返回Success, no leaking variables.

RequiredFile.php:

<?php

print array() === get_defined_vars()
    ? "Success, no leaking variables."
    : "Failed, leaked variables: ".implode(", ",array_keys(get_defined_vars()));

?>

我得到的最接近的结果是使用闭包,但它仍然返回Failed, leaked variables: _file

$scope = function( $_file, array $scope_variables ) {
    extract( $scope_variables ); unset( $scope_variables );
    //No way to prevent $_file from leaking since it's used in the require call
    require( $_file );
};
$scope( "RequiredFile.php", array() );

有什么想法吗?


解决方案

看这个:

$scope = function() {
    // It's very simple :)
    extract(func_get_arg(1));
    require func_get_arg(0);
};
$scope("RequiredFile.php", []);

相关文章