• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP is_sae函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中is_sae函数的典型用法代码示例。如果您正苦于以下问题:PHP is_sae函数的具体用法?PHP is_sae怎么用?PHP is_sae使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



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

示例1: send_mail

/**
 * 系统邮件发送函数
 * @param string $to 接收邮件者邮箱
 * @param string $name 接收邮件者名称
 * @param string $subject 邮件主题
 * @param string $body 邮件内容
 * @param string $attachment 附件列表
 * @茉莉清茶 [email protected]
 */
function send_mail($to = '', $subject = '', $body = '', $name = '', $attachment = null)
{
    if (is_sae()) {
        return sae_mail($to, $subject, $body, $name);
    } else {
        return send_mail_local($to, $subject, $body, $name, $attachment);
    }
}
开发者ID:nullog,项目名称:zhanglubao,代码行数:17,代码来源:vendors.php


示例2: getImageUrlByPath

/**
 * Created by PhpStorm.
 * User: caipeichao
 * Date: 14-3-10
 * Time: PM7:40
 */
function getImageUrlByPath($path, $size)
{
    //TODO 重新开启缩略
    $thumb = getThumbImage($path, $size, $size);
    // $thumb['src']=$path;
    $thumb = $thumb['src'];
    if (!is_sae()) {
        $thumb = getRootUrl() . $thumb;
    }
    return $thumb;
}
开发者ID:fishling,项目名称:chatPro,代码行数:17,代码来源:thumb.php


示例3: send_mail

/**
 * 系统邮件发送函数
 * @param string $to 接收邮件者邮箱
 * @param string $name 接收邮件者名称
 * @param string $subject 邮件主题
 * @param string $body 邮件内容
 * @param string $attachment 附件列表
 * @茉莉清茶 [email protected]
 */
function send_mail($to = '', $subject = '', $body = '', $name = '', $attachment = null)
{
    $host = C('MAIL_SMTP_HOST');
    $user = C('MAIL_SMTP_USER');
    $pass = C('MAIL_SMTP_PASS');
    if (empty($host) || empty($user) || empty($pass)) {
        return '管理员还未配置邮件信息,请联系管理员配置';
    }
    if (is_sae()) {
        return sae_mail($to, $subject, $body, $name);
    } else {
        return send_mail_local($to, $subject, $body, $name, $attachment);
    }
}
开发者ID:ccccy,项目名称:wuanlife,代码行数:23,代码来源:vendors.php


示例4: send_mail

/**
 * 系统邮件发送函数
 * @param string $to 接收邮件者邮箱
 * @param string $name 接收邮件者名称
 * @param string $subject 邮件主题
 * @param string $body 邮件内容
 * @param string $attachment 附件列表
 * @茉莉清茶 [email protected]
 */
function send_mail($to = '', $subject = '', $body = '', $name = '', $attachment = null)
{
    $host = C('MAIL_SMTP_HOST');
    $user = C('MAIL_SMTP_USER');
    $pass = C('MAIL_SMTP_PASS');
    if (empty($host) || empty($user) || empty($pass)) {
        return L('_THE_ADMINISTRATOR_HAS_NOT_YET_CONFIGURED_THE_MESSAGE_INFORMATION_PLEASE_CONTACT_THE_ADMINISTRATOR_CONFIGURATION_');
    }
    if (is_sae()) {
        return sae_mail($to, $subject, $body, $name);
    } else {
        return send_mail_local($to, $subject, $body, $name, $attachment);
    }
}
开发者ID:terrydeng,项目名称:beimeibang1205,代码行数:23,代码来源:vendors.php


示例5: complete

 public function complete()
 {
     //更新缓存
     define('PLATFORM', is_sae() ? 'sae' : 'default');
     define('DILICMS_SHARED_PATH', BASEPATH . '../shared/');
     $this->load->add_package_path(DILICMS_SHARED_PATH);
     $this->load->library('platform', array('type' => PLATFORM, 'storage' => 'public'));
     $this->load->library('settings');
     $this->load->helper('common');
     $this->load->database();
     $this->load->model('cache_mdl');
     $this->cache_mdl->update_model_cache();
     $this->cache_mdl->update_category_cache();
     $this->cache_mdl->update_menu_cache();
     $this->cache_mdl->update_role_cache();
     $this->cache_mdl->update_site_cache();
     $this->cache_mdl->update_backend_cache();
     $this->cache_mdl->update_plugin_cache();
     $this->cache_mdl->update_fieldtypes_cache();
     //创建安装锁定文件
     if (is_sae()) {
         $this->platform->file_write('install.lock', 'Welcome to DiliCMS!');
     } else {
         $this->platform->file_write(DILICMS_SHARED_PATH . 'settings/install.lock', 'Welcome to DiliCMS!');
     }
 }
开发者ID:PoppyLi,项目名称:DiliCMS,代码行数:26,代码来源:install.php


示例6: saveAvatar

 /**
  * 将头像保存到本地
  * @param $url
  * @param $oid
  * @param $uid
  * autor:xjw129xjt
  */
 protected function saveAvatar($url, $oid, $uid, $type)
 {
     if (is_sae()) {
         $s = new \SaeStorage();
         $img = file_get_contents($url);
         //括号中的为远程图片地址
         $url_sae = $s->write(C('UPLOAD_SAE_CONFIG.domain'), '/Avatar/' . $type . 'Avatar/' . $oid . '.jpg', $img);
         $data['path'] = $url_sae;
     } else {
         mkdir('./Uploads/Avatar/' . $type . 'Avatar', 0777, true);
         $img = file_get_contents($url);
         $filename = './Uploads/Avatar/' . $type . 'Avatar/' . $oid . '.jpg';
         file_put_contents($filename, $img);
         $data['path'] = $type . 'Avatar/' . $oid . '.jpg';
     }
     $data['uid'] = $uid;
     $data['create_time'] = time();
     $data['status'] = 1;
     $data['is_temp'] = 0;
     D('avatar')->add($data);
 }
开发者ID:fishling,项目名称:chatPro,代码行数:28,代码来源:BaseController.class.php


示例7: getAvatarPath

 public function getAvatarPath($uid, $avatarSize)
 {
     $model = D('Addons://Avatar/Avatar');
     $avatar = $model->getAvatar($uid);
     if ($avatar) {
         if (is_sae()) {
             $avatar_path = $avatar;
         } else {
             $avatar_path = "/Uploads/Avatar/{$avatar}";
         }
         return getImageUrlByPath($avatar_path, $avatarSize);
     } else {
         //如果没有头像,返回默认头像
         if ($avatarSize != 0) {
             return getRootUrl() . "Addons/Avatar/default_" . $avatarSize . "_" . $avatarSize . ".png";
         } else {
             return getRootUrl() . "Addons/Avatar/default.png";
         }
     }
 }
开发者ID:Willshon,项目名称:OLCS,代码行数:20,代码来源:AvatarAddon.class.php


示例8: fixAttachUrl

function fixAttachUrl($url)
{
    if (!is_sae()) {
        return getRootUrl() . substr($url, 1);
    } else {
        return $url;
    }
}
开发者ID:Willshon,项目名称:OLCS,代码行数:8,代码来源:function.php


示例9: fixAttachUrl

function fixAttachUrl($url)
{
    if (!is_sae()) {
        return str_replace('//', '/', getRootUrl() . substr($url, 1));
        //防止双斜杠的出现
    } else {
        return $url;
    }
}
开发者ID:yaomoo,项目名称:bbs,代码行数:9,代码来源:thumb.php


示例10:

<blockquote>
  <p>DiliCMS 目前支持普通环境以及SAE(新浪云平台).</p>
</blockquote>
<?php 
if (!is_sae()) {
    ?>
    <div class="alert">
        当前运行环境为: <strong>普通环境</strong> 
    </div>
    <?php 
    if (!$is_config_ok) {
        ?>
    <div class="alert alert-error">
        shared/config/platform.php <strong>未正确配置</strong>,请先正确配置shared/config/platform.php。<br />
        shared/config/platform.php必须可读且type的值必须为default.
    </div>
    <?php 
    } else {
        ?>
    <div class="alert">
        shared/config/platform.php <strong>配置正确</strong>
    </div>
    <?php 
    }
} else {
    ?>
    <div class="alert">
        当前运行环境为: <strong>SAE</strong>, 需要开启以下环境: 
        <ul>
            <li>Memcache</li>
            <li>MySQL</li>
开发者ID:PoppyLi,项目名称:DiliCMS,代码行数:31,代码来源:platform.php


示例11: saveAvatar

 /**
  * saveAvatar  保存头像到本地
  * @param $url
  * @param $oid
  * @param $uid
  * @param $type
  * @author:xjw129xjt(肖骏涛) [email protected]
  */
 private function saveAvatar($url, $uid)
 {
     if (is_sae()) {
         // todo 兼容sae
     } else {
         mkdir('./Uploads/Avatar/' . $uid, 0777, true);
         $img = file_get_contents($url);
         $filename = './Uploads/Avatar/' . $uid . '/crop.jpg';
         file_put_contents($filename, $img);
         $data['path'] = '/' . $uid . '/crop.jpg';
     }
     $data['uid'] = $uid;
     $data['create_time'] = time();
     $data['status'] = 1;
     $data['is_temp'] = 0;
     D('avatar')->add($data);
 }
开发者ID:chenyongze,项目名称:bighaha,代码行数:25,代码来源:BaseController.class.php


示例12: is_installed

 function is_installed()
 {
     if (is_sae()) {
         $s = new SaeStorage();
         return $s->fileExists('public', 'install.lock');
     } else {
         return @file_exists(BASEPATH . '../shared/settings/install.lock');
     }
 }
开发者ID:leamiko,项目名称:DiliCMS,代码行数:9,代码来源:install_helper.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP is_safe_capability函数代码示例发布时间:2022-05-15
下一篇:
PHP is_rtmedia_album函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap