2

我一直在寻找一种将相对路径放入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]

我在这里想念什么?

4

1 回答 1

0

尝试使用 realpath 函数从执行函数的文件中计算路径

file_put_contents(realpath("/../../minimaled_server_path/app/webroot/logo_url"), $image_new);
于 2012-08-01T10:12:29.917 回答