本文整理汇总了PHP中UploadFile::move方法的典型用法代码示例。如果您正苦于以下问题:PHP UploadFile::move方法的具体用法?PHP UploadFile::move怎么用?PHP UploadFile::move使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UploadFile
的用法示例。
在下文中一共展示了UploadFile::move方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: save
/**
* Process the form.
* @return void
*/
public function save()
{
$photo = $this->flyer->addPhoto($this->makePhoto());
$this->file->move($photo->baseDir(), $photo->name);
$this->thumbnail->make($photo->path, $photo->thumbnail_path);
}
示例2: move
public function move(UploadFile $file)
{
$file->move($this->baseDir, $this->name);
Image::make($this->path)->fit(200)->save($this->thumbnail_path);
return $this;
}
示例3: __storeImagePost
/**
* Store image of post
* @param UploadFile $imagesFile
* @return string [new name image]
*/
private function __storeImagePost($imagesFile)
{
$nameImage = $imagesFile->getClientOriginalName();
$extensionImage = $imagesFile->getClientOriginalExtension();
$newNameImage = sha1($nameImage) . time() . "." . $extensionImage;
$desPath = public_path() . config('model.posts.path_folder_photo_post');
$imagesFile->move($desPath, $newNameImage);
return $newNameImage;
}