当前位置: 首页>>代码示例>>PHP>>正文


PHP S3::delete方法代码示例

本文整理汇总了PHP中S3::delete方法的典型用法代码示例。如果您正苦于以下问题:PHP S3::delete方法的具体用法?PHP S3::delete怎么用?PHP S3::delete使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在S3的用法示例。


在下文中一共展示了S3::delete方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: updateInfo

 public function updateInfo($title, $image, $description, $repository, $con = null)
 {
     $this->row['title'] = $title;
     $this->row['description'] = $description;
     $this->row['repository'] = $repository;
     $old_icon_key = null;
     if ($image) {
         $old_icon_key = $this->value('icon_key');
         $this->row['icon_key'] = ApplicationDb::uploadIcon($image, $this->getId());
     }
     $this->update($con);
     if ($old_icon_key) {
         try {
             S3::delete($old_icon_key);
         } catch (Exception $e) {
             error_log(__METHOD__ . '(' . __LINE__ . '): ' . get_class($e) . ":{$e->getMessage()}");
             // 画像削除は失敗しても気にしない
         }
     }
 }
开发者ID:kzfk,项目名称:emlauncher,代码行数:20,代码来源:Application.php

示例2: removeVideo

 private function removeVideo($url)
 {
     Trace::output($this->traceID, "removeVideo");
     //----------------------------------------------------------
     //init var
     //----------------------------------------------------------
     $chk = array("bool" => true, "traceID" => "removeVideo");
     //----------------------------------------------------------
     $file = str_replace($this->s3Path, "videoOrganizer_v0/", rawurldecode($url));
     $chk = S3::delete($file);
     if ($chk['bool']) {
         $chk['message'] = 'video was successfully removed.';
     }
     if (!$chk['bool']) {
         $chk['message'] = $file . ' does not exist.';
     }
     return $chk;
 }
开发者ID:awwthentic1234,项目名称:hey,代码行数:18,代码来源:VideoOrganizer.php

示例3: deleteFile

 public function deleteFile()
 {
     $key = $this->getFileKey();
     S3::delete($key);
 }
开发者ID:kzfk,项目名称:emlauncher,代码行数:5,代码来源:Package.php


注:本文中的S3::delete方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。