我一直在寻找一种将相对路径放入file_put_content()
PHP 函数的方法。基本上我想将一个文件复制到我的服务器目录之一。这是我到目前为止所做的:
function curl($url){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
$image_new = curl($image);
file_put_contents("/minimaled_server_path/app/webroot/logo_url",
$image_new);
它向我抛出了以下错误:
file_put_contents(/minimal_server_path/app/webroot/logo_url)
[function.file-put-contents]:
failed to open stream: No such file or directory
[APP/Controller/AppsController.php, line 105]
我在这里想念什么?