这是我的快速代码。这使我可以为常用的 PHP 函数保留一个文件,并在需要时检索它。这主要是我的私人工作,而不是为客户服务。
$include_contents = '<?php '.file_get_contents("http://example.com/inc/functions.php");
$handle = fopen("_functions.php", 'w');
fputs($handle, $include_contents );
fclose($handle);
include('_functions.php');