當前位置: 首頁>>代碼示例>>PHP>>正文


PHP resource::save方法代碼示例

本文整理匯總了PHP中resource::save方法的典型用法代碼示例。如果您正苦於以下問題:PHP resource::save方法的具體用法?PHP resource::save怎麽用?PHP resource::save使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在resource的用法示例。


在下文中一共展示了resource::save方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: save

 /**
  * 保存操作,當包含_id時更新對應的_id所對應的文檔,否則創建新的文檔。
  *
  * @param array $datas            
  * @return array
  */
 public function save($datas)
 {
     try {
         return $this->result($this->_client->save(serialize($datas)));
     } catch (SoapFault $e) {
         $this->soapFaultMsg($e);
         return false;
     }
 }
開發者ID:im286er,項目名稱:ent,代碼行數:15,代碼來源:iDatabase.php

示例2: save

 /**
  * 保存圖片
  * @param  string  $imgname   圖片保存名稱
  * @param  string  $type      圖片類型
  * @param  integer $quality   圖像質量      
  * @param  boolean $interlace 是否對JPEG類型圖片設置隔行掃描
  * @return Object             當前圖片處理庫對象
  */
 public function save($imgname, $type = null, $quality = 100, $interlace = true)
 {
     $this->img->save($imgname, $type, $quality, $interlace);
     //同步圖片到騰訊雲Cos
     //$imgname = realpath(dirname($imgname)) . '/' . basename($imgname); //強製絕對路徑
     defined('ROOT') || define('ROOT', dirname(dirname(dirname(__FILE__))));
     include_once ROOT . '/gb_php/to8to_file.fun.php';
     to8to_putFile($imgname, $imgname, array());
     return $this;
 }
開發者ID:shenhuiyyh,項目名稱:php-development,代碼行數:18,代碼來源:IMage.class.php

示例3: save

 /**
  * Save's the image resource in a target location.
  *
  * @since	1.0
  * @access	public
  * @param	string	The target where the image should be saved into.
  * @return	bool	True on success, false otherwise
  * @return
  */
 public function save($target)
 {
     // Set the image target.
     $this->image->target($target);
     // Try to save the image.
     $state = $this->image->save();
     // TODO: Add some logging if failed.
     if (!$state) {
     }
     return $state;
 }
開發者ID:knigherrant,項目名稱:decopatio,代碼行數:20,代碼來源:image.php

示例4: save

 /**
  * 保存圖片
  * @param  string  $imgname   圖片保存名稱
  * @param  string  $type      圖片類型
  * @param  integer $quality   圖像質量
  * @param  boolean $interlace 是否對JPEG類型圖片設置隔行掃描
  * @return Object             當前圖片處理庫對象
  */
 public function save($imgname, $type = null, $quality = 80, $interlace = true)
 {
     $this->img->save($imgname, $type, $quality, $interlace);
     return $this;
 }
開發者ID:a3147972,項目名稱:ThinkPHP-,代碼行數:13,代碼來源:Image.class.php

示例5: save

 /**
  * 保存圖片
  * @param  string  $imgname   圖片保存名稱
  * @param  string  $type      圖片類型
  * @param  integer $quality   圖像質量
  * @param  boolean $interlace 是否對JPEG類型圖片設置隔行掃描
  * @return Object             當前圖片處理庫對象
  */
 public static function save($imgname, $type = null, $quality = 80, $interlace = true)
 {
     self::$img->save($imgname, $type, $quality, $interlace);
 }
開發者ID:beelibrary820145,項目名稱:tanxiongfeng,代碼行數:12,代碼來源:Image.class.php

示例6: save

 /**
  * 保存圖片
  * @param  string  $imgname   圖片保存名稱
  * @param  string  $type      圖片類型
  * @param  boolean $interlace 是否對JPEG類型圖片設置隔行掃描
  * @return Object             當前圖片處理庫對象
  */
 public function save($imgname, $type = NULL, $interlace = true)
 {
     $this->img->save($imgname, $type, $interlace);
     return $this;
 }
開發者ID:DoveChen,項目名稱:tp,代碼行數:12,代碼來源:ThinkImage.class.php


注:本文中的resource::save方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。