昨天我想知道在 PHP 中使用文件名作为文件本身的参数的可能性......基本上,我有一个名为“file.php”的文件,每当通过浏览器请求任何文件时即“test1.php”,我调用文件“file.php”作为参数传递前一个文件的名称。有可能做这样的事情吗?
<Files *.php>
//I call the "anotherpath/file.php" file passing as argument the filename of the file called before
//i.e. Call anotherpath/file.php?arg=filename of the "virtual" file
</Files>
“test1.php”(甚至不在服务器中)调用“anotherpath/file.php”,这个可以访问“test1”字符串。提前致谢!