how can i save a file using curl and php
|
|
|||||
|
|
|
You can use:
See: http://jp2.php.net/manual/en/function.curl-exec.php and http://us3.php.net/manual/en/function.fwrite.php |
||
|
|
|
|
did you want like this ?
Functionality: Its a function and accepts three parameters get_file1($file, $local_path, $newfilename) $file : is the filename of the object to be retrieved $local_path : is the local path to the directory to store the object $newfilename : is the new file name on the local system To use it:
|
|||
|
|
|
|
I think curl has -o option to write the output to a file instead of stdout. After -o you have to provide the name of the output file. example: curl -o path_to_the_file url |
|||
|
|
