当前位置: 首页>>代码示例>>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;未经允许,请勿转载。