JD\Cloudder\CloudinaryWrapper::destroyImage PHP 메소드

destroyImage() 공개 메소드

Alias for destroy
public destroyImage ( string $publicId, array $options = [] ) : array
$publicId string
$options array
리턴 array
    public function destroyImage($publicId, $options = array())
    {
        return $this->destroy($publicId, $options);
    }

Usage Example

예제 #1
0
파일: _ide_helper.php 프로젝트: HOFB/HOFB
 /**
  * Destroy image from Cloudinary
  *
  * @param string $publicId
  * @param array $options
  * @return array 
  * @static 
  */
 public static function destroyImage($publicId, $options = array())
 {
     return \JD\Cloudder\CloudinaryWrapper::destroyImage($publicId, $options);
 }