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

PHP c类代码示例

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

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



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

示例1: main

function main()
{
    set_error_handler('error_handler');
    $c = new c(false);
    $c->get();
    echo "Error\n";
}
开发者ID:badlamer,项目名称:hhvm,代码行数:7,代码来源:720.php


示例2: main

function main()
{
    $c = new c();
    $f = $c->genclo();
    foreach ($f() as $v) {
        var_dump($v);
    }
}
开发者ID:n3b,项目名称:hiphop-php,代码行数:8,代码来源:inline_closure_gen.php


示例3: __construct

 /**
  * Create an instance of the view
  *
  * @param array $options
  * @return void
  */
 public function __construct($options = array())
 {
     $views = isset($options['views']) ? $options['views'] : Config::get('blade_views_dir', kirby()->roots()->templates());
     $cache = isset($options['cache']) ? $options['cache'] : Config::get('blade_cache_dir', kirby()->roots()->cache() . DS . 'views');
     $this->engine = new Blade($views, $cache);
     $this->setEchoFormat();
 }
开发者ID:jevets,项目名称:kirby-view-blade,代码行数:13,代码来源:BladeView.php


示例4: ct

function ct($n, $m)
{
    $ct = c::get($n, $m);
    if (!is_null($ct)) {
        return $ct;
    }
    if ($n === $m) {
        $ct = 0.0;
    } elseif ($n === 1 && $m === 0) {
        $ct = 2.0;
    } elseif ($m === 0) {
        $ct = (1 + ct($n - 1, 0)) * 2;
    } else {
        for ($i = $m + 1; $i != $n; ++$i) {
            $ct0 = c::get($n, $i);
            if (!is_null($ct0)) {
                break;
            }
        }
        for ($i -= 1; $i != $m; --$i) {
            $ct1 = 1 + $ct0 / 2 + ct($n, 0) / 2;
            c::set($n, $i, $ct1);
            $ct0 = $ct1;
        }
        $ct = 1 + ct($n, $m + 1) / 2 + ct($n, 0) / 2;
    }
    c::set($n, $m, $ct);
    return $ct;
}
开发者ID:BastinRobin,项目名称:CodeSprints,代码行数:29,代码来源:ct.php


示例5: set_cache

 public function set_cache($type, $result)
 {
     $cache_path = __DIR__ . '/../cache/' . $type . '.json';
     $period = c::get('kg.cache_period') ? c::get('kg.cache_period') : '30 Minutes';
     $cache = array('to' => strtotime($period), 'payload' => $result);
     \f::write($cache_path, json_encode($cache));
 }
开发者ID:sethmcleod,项目名称:patsymcenroe.com,代码行数:7,代码来源:Instagram.php


示例6: __construct

 /**
  * Load and prepare configuration
  *
  * @since 1.0.0
  *
  * @return \WysiwygField
  */
 public function __construct()
 {
     /*
        (1) Load button configuration
     */
     $this->buttons = c::get('field.wysiwyg.buttons', false);
     if (!is_array($this->buttons) or count($this->buttons) <= 0) {
         $this->buttons = $this->defaults['buttons'];
     }
     /*
        (2) Load heading style configuration
     */
     $this->headingStyle = c::get('field.wysiwyg.heading-style', false);
     if (!in_array($this->headingStyle, array('atx', 'setext'))) {
         $this->headingStyle = $this->defaults['heading-style'];
     }
     /*
        (3) Load double returns configuration
     */
     $this->doubleReturns = c::get('field.wysiwyg.double-returns', null);
     if (!is_bool($this->doubleReturns)) {
         $this->doubleReturns = $this->defaults['double-returns'];
     }
     /*
        (4) Load drag/drop configuration
     */
     $this->kirbyDragDrop = c::get('field.wysiwyg.dragdrop.kirby', false);
     if (!is_bool($this->kirbyDragDrop)) {
         $this->kirbyDragDrop = false;
     }
     $this->mediumDragDrop = c::get('field.wysiwyg.dragdrop.medium', false);
     if (!is_bool($this->mediumDragDrop)) {
         $this->mediumDragDrop = false;
     }
 }
开发者ID:aoimedia,项目名称:kirby-wysiwyg,代码行数:42,代码来源:wysiwyg.php


示例7: dragText

function dragText($obj)
{
    if (c::get('panel.kirbytext') === false) {
        if (is_a($obj, 'Page')) {
            return '[' . $obj->title() . '](' . $obj->url() . ')';
        } else {
            if (is_a($obj, 'File')) {
                switch ($obj->type()) {
                    case 'image':
                        return '![' . $obj->name() . '](' . $obj->url() . ')';
                        break;
                    default:
                        return '[' . $obj->filename() . '](' . $obj->url() . ')';
                        break;
                }
            }
        }
    } else {
        if (is_a($obj, 'Page')) {
            return '(link: ' . $obj->uri() . ' text: ' . $obj->title() . ')';
        } else {
            if (is_a($obj, 'File')) {
                switch ($obj->type()) {
                    case 'image':
                        return '(image: ' . $obj->filename() . ')';
                        break;
                    default:
                        return '(file: ' . $obj->filename() . ')';
                        break;
                }
            }
        }
    }
}
开发者ID:robinandersen,项目名称:robin,代码行数:34,代码来源:helpers.php


示例8: template

 protected function template($class = false)
 {
     $output = new Brick('div');
     $output->addClass('oembed');
     if ($class !== false) {
         $output->addClass($class);
     } else {
         $output->addClass('oembed-' . substr(md5($this->url), 0, 6));
     }
     if ($this->media->get('type') === 'video') {
         $output = OembedTemplate::ratio($output, $this->media);
         if (c::get('oembed.lazyvideo', false)) {
             $output->addClass('oembed-lazyvideo');
         }
         $play = OembedTemplate::play();
         $output->append($play);
         $thumb = OembedTemplate::thumb($this->thumb->get($this->media()));
         $output->append($thumb);
         $html = OembedTemplate::embed($this->media, $this->autoplay);
     } else {
         $html = $this->media->get('html');
     }
     $html = OembedTemplate::validation($html);
     $output->append($html);
     return $output;
 }
开发者ID:muten84,项目名称:luigibifulco.it,代码行数:26,代码来源:oembed.php


示例9: relativeDate

/**
 *  Helpfer function relativeDate()
 */
function relativeDate($date, $args = array())
{
    // default for $args
    $defaults = array('lang' => count(site()->languages()) >= 1 ? site()->language()->code() : c::get('relativedate.lang', 'en'), 'length' => c::get('relativedate.length', 2), 'threshold' => c::get('relativedate.threshold', false), 'fuzzy' => c::get('relativedate.fuzzy', true), 'format' => c::get('relativedate.format', 'd.m.Y'));
    $args = array_merge($defaults, $args);
    // check if $date is a timestamp
    if (RelativeDate::isTimestamp($date)) {
        $date = date(DATE_ATOM, $date);
    }
    // only convert to relative if time difference no exceeds threshold
    if ($args['threshold'] === false or abs(strtotime($date) - time()) <= $args['threshold']) {
        try {
            $relative = new RelativeDate($date, $args);
            $result = $relative->get($args['length']);
        } catch (Exception $e) {
            $result = $date;
        }
    } else {
        $result = $date;
    }
    // if we had no change to date due to any bug or exceeding threshold
    if ($result === $date) {
        $date = new Datetime($date);
        $result = $date->format($args['format']);
    }
    return $result;
}
开发者ID:groenewege,项目名称:relative-date,代码行数:30,代码来源:relative-date.php


示例10: index

 public function index()
 {
     if (app::$site->users()->count() > 0) {
         go('panel/login');
     }
     if ($problems = installation::check()) {
         $content = view('installation/check', array('problems' => $problems));
     } else {
         $form = app::form('installation', array('language' => c::get('panel.language', 'en')));
         $form->cancel = false;
         $form->save = l::get('installation.signup.button');
         $form->centered = true;
         foreach (app::languages() as $lang) {
             $form->fields()->get('language')->options[$lang->code()] = $lang->title();
         }
         $form->on('submit', function ($form) {
             try {
                 app::$site->users()->create($form->serialize());
                 go('panel/login/welcome');
             } catch (Exception $e) {
                 $form->alert($e->getMessage());
             }
         });
         $content = view('installation/signup', array('form' => $form));
     }
     return layout('installation', array('meta' => new Snippet('meta'), 'content' => $content));
 }
开发者ID:kompuser,项目名称:panel,代码行数:27,代码来源:installation.php


示例11: __construct

 function __construct($image, $options = array())
 {
     $this->root = c::get('thumb.cache.root', c::get('root') . '/thumbs');
     $this->url = c::get('thumb.cache.url', c::get('url') . '/thumbs');
     if (!$image) {
         return false;
     }
     $this->obj = $image;
     // set some values from the image
     $this->sourceWidth = $this->obj->width();
     $this->sourceHeight = $this->obj->height();
     $this->width = $this->sourceWidth;
     $this->height = $this->sourceHeight;
     $this->source = $this->obj->root();
     $this->mime = $this->obj->mime();
     // set the max width and height
     $this->maxWidth = @$options['width'];
     $this->maxHeight = @$options['height'];
     // set the quality
     $this->crop = @$options['crop'];
     // set the quality
     $this->quality = a::get($options, 'quality', c::get('thumb.quality', 100));
     // set the default upscale behavior
     $this->upscale = a::get($options, 'upscale', c::get('thumb.upscale', false));
     // set the alt text
     $this->alt = a::get($options, 'alt', $this->obj->name());
     // set the className text
     $this->className = @$options['class'];
     // set the new size
     $this->size();
     // create the thumbnail
     $this->create();
 }
开发者ID:roblen,项目名称:kirbycms-extensions,代码行数:33,代码来源:thumb.php


示例12: kirbyInstance

 public function kirbyInstance($options = array())
 {
     c::$data = array();
     $kirby = new Kirby($options);
     $kirby->roots->content = TEST_ROOT_ETC . DS . 'content';
     return $kirby;
 }
开发者ID:aoimedia,项目名称:kosmonautensofa,代码行数:7,代码来源:testcase.php


示例13: ourl

function ourl($url = false)
{
    if (!$url) {
        $url = c::get('url');
    }
    return replace_once('/' . c::get('panel.folder'), '', $url);
}
开发者ID:nilshendriks,项目名称:kirbycms-panel,代码行数:7,代码来源:helpers.php


示例14: foo

 function foo()
 {
     a::inFamilya();
     a::inFamilyb();
     a::notDefined();
     c::notAClass();
 }
开发者ID:exakat,项目名称:exakat,代码行数:7,代码来源:e.php


示例15: clearCache

 protected function clearCache($path)
 {
     $expired = time() - c::get('oembed.cacheexpires', 3600 * 24);
     if (file_exists($path) and filemtime($path) < $expired) {
         unlink($path);
     }
 }
开发者ID:muten84,项目名称:luigibifulco.it,代码行数:7,代码来源:thumb.php


示例16: modified

 static function modified($file)
 {
     if (!c::get('cache')) {
         return false;
     }
     return @filectime(self::file($file));
 }
开发者ID:narrenfrei,项目名称:kirbycms,代码行数:7,代码来源:cache.php


示例17: __construct

 public function __construct($params = null)
 {
     if (isset($params['baseurl'])) {
         $this->_baseUrl = $params['baseurl'];
     } else {
         $this->_baseUrl = c::config()->baseUrl->{c::env()};
     }
 }
开发者ID:arzynik,项目名称:cana,代码行数:8,代码来源:Sitemap.php


示例18: language

 static function language()
 {
     $root = c::get('root.site') . '/languages';
     $default = $root . '/' . c::get('lang.default') . '.php';
     $current = $root . '/' . c::get('lang.current') . '.php';
     self::file($default);
     self::file($current);
 }
开发者ID:nilshendriks,项目名称:kirbycms,代码行数:8,代码来源:load.php


示例19: __construct

 public function __construct()
 {
     $this->type = 'place';
     $this->icon = 'map-marker';
     $this->label = l::get('fields.place.label', 'Place');
     $this->placeholder = l::get('fields.place.placeholder', 'Address or Location');
     $this->map_settings = array('lat' => c::get('place.defaults.lat', 43.9), 'lng' => c::get('place.defaults.lng', -120.2291901), 'zoom' => c::get('place.defaults.zoom', 1));
 }
开发者ID:aguynamedirvin,项目名称:F-C,代码行数:8,代码来源:place.php


示例20: __construct

 public function __construct($visible)
 {
     $this->before = array();
     $this->elements = array();
     $this->after = array();
     $this->visible = $visible;
     $this->position = c::get('panelbar.position', 'top');
 }
开发者ID:dmak78,项目名称:panel-bar,代码行数:8,代码来源:output.php



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
PHP c2cTools类代码示例发布时间:2022-05-23
下一篇:
PHP bpBase类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

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

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

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