本文整理汇总了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;
}