本文整理匯總了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;
}
}
示例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;
}
示例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;
}
示例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;
}
示例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);
}
示例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;
}