我想用PHP filepath文件夹创建。我的意思是什么?
例如我有链接 的 example.com/Test/One/Two/Three/index.php?id=asdjasdsad
我希望在我的htaccess错误页面上显示$_SERVER['REQUEST_URI'];
应该从其他页面获取(example2.com/Test/One/Two/Three/index.php) < / p>
所以我不知道如何编码。我知道我可以用file_gets_content("http://example2.com/". $_SERVER['REQUEST_URI']);
回复内容
但我也希望文件能够保存。
如果我使用
$filename= $_SERVER['REQUEST_URI'];
$content = file_get_contents("example.com. $_SERVER['REQUEST_URI'], true);
file_put_contents($filename, $content);
并且有文件夹我希望文件夹也被创建
我该怎么做?
由于
编辑: