需要来自 URL 的 PHP 个文件
Require PHP file from URL
当我在 PHP 上编写代码时,我需要要求或导入 .PHP 文件,其中包含 类 和我需要的函数。例如`
<?php require("ffmpeg.php"); ?>
我可以需要 PHP 文件吗,我在根目录中没有,但它存储在网站上,例如 `
<?php require("http://example.com/ffmpeg.php"); ?>
如果是真的,请帮我解答一下这个问题。
使用file_get_contents然后你需要将内容写入文件或者你可以直接使用eval执行。
//option 1 save to file
$contents = file_get_contents("http://example.com/ffmpeg.php");
file_put_content("yourphpfilename.php", $contents);
//option 2 get and execute
$contents = file_get_contents("http://example.com/ffmpeg.php");
eval($contents);
当我在 PHP 上编写代码时,我需要要求或导入 .PHP 文件,其中包含 类 和我需要的函数。例如`
<?php require("ffmpeg.php"); ?>
我可以需要 PHP 文件吗,我在根目录中没有,但它存储在网站上,例如 `
<?php require("http://example.com/ffmpeg.php"); ?>
如果是真的,请帮我解答一下这个问题。
使用file_get_contents然后你需要将内容写入文件或者你可以直接使用eval执行。
//option 1 save to file
$contents = file_get_contents("http://example.com/ffmpeg.php");
file_put_content("yourphpfilename.php", $contents);
//option 2 get and execute
$contents = file_get_contents("http://example.com/ffmpeg.php");
eval($contents);