本文整理汇总了PHP中app\Image::uploadImage方法的典型用法代码示例。如果您正苦于以下问题:PHP Image::uploadImage方法的具体用法?PHP Image::uploadImage怎么用?PHP Image::uploadImage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\Image
的用法示例。
在下文中一共展示了Image::uploadImage方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ajaxImageUpload
public function ajaxImageUpload()
{
$user_id = Input::get('user_id');
$file = Input::file('display_image');
//get the image folder to store the image, in this case the specific restaurant folder.
$image_folder = '/assets/images/users/';
//upload the image and return the file path
$file_path = Image::uploadImage($file, $image_folder);
if ($file_path['status'] != 1) {
return Response::json(['success' => false, 'errors' => $file_path['errors']]);
}
$user = User::find($user_id);
$user->display_image = $file_path['data'];
$user->save();
User::updateUserSession();
return Response::json(['success' => true, 'message' => 'Profile Image Updated.', 'file' => $user->display_image]);
}