画像をアップロードしたいときはOK。私は通常、次のようなことをします:
$file = Input::file('image');
$destinationPath = 'whereEver';
$filename = $file->getClientOriginalName();
$uploadSuccess = Input::file('image')->move($destinationPath, $filename);
if( $uploadSuccess ) {
// save the url
}
これは、ユーザーが画像をアップロードするときに正常に機能します。しかし、URLから画像を保存するにはどうすればよいですか???
次のようなことを試してみると:
$url = 'http://www.whereEver.com/some/image';
$file = file_get_contents($url);
その後:
$filename = $file->getClientOriginalName();
$uploadSuccess = Input::file('image')->move($destinationPath, $filename);
次のエラーが表示されます。
Call to a member function move() on a non-object
では、laravel 4でURLから画像をアップロードするにはどうすればよいですか??
エイミーの助けに感謝します。