当前位置: 首页>>代码示例>>PHP>>正文


PHP Facade::ext方法代码示例

本文整理汇总了PHP中RedBeanPHP\Facade::ext方法的典型用法代码示例。如果您正苦于以下问题:PHP Facade::ext方法的具体用法?PHP Facade::ext怎么用?PHP Facade::ext使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在RedBeanPHP\Facade的用法示例。


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

示例1: testDynamicPlugins

 /**
  * Test if we can dynamically extend the R-facade.
  * 
  * @return void
  */
 public function testDynamicPlugins()
 {
     testpack('Test dynamic plugins');
     //basic behaviour
     R::ext('makeTea', function () {
         return 'sorry cant do that!';
     });
     asrt(R::makeTea(), 'sorry cant do that!');
     //with parameters
     R::ext('multiply', function ($a, $b) {
         return $a * $b;
     });
     asrt(R::multiply(3, 4), 12);
     //can we call R inside?
     R::ext('singVersion', function () {
         return R::getVersion() . ' lalala !';
     });
     asrt(R::singVersion(), R::getVersion() . ' lalala !');
     //should also work with Facade
     asrt(Facade::singVersion(), R::getVersion() . ' lalala !');
     //test error handling
     try {
         R::ext('---', function () {
         });
         fail();
     } catch (RedException $e) {
         asrt($e->getMessage(), 'Plugin name may only contain alphanumeric characters.');
     }
     try {
         R::__callStatic('---', function () {
         });
         fail();
     } catch (RedException $e) {
         asrt($e->getMessage(), 'Plugin name may only contain alphanumeric characters.');
     }
     try {
         R::invalidMethod();
         fail();
     } catch (RedException $e) {
         asrt($e->getMessage(), 'Plugin \'invalidMethod\' does not exist, add this plugin using: R::ext(\'invalidMethod\')');
     }
 }
开发者ID:skullyframework,项目名称:skully,代码行数:47,代码来源:Plugins.php

示例2: function

<?php

namespace RedUNIT\Base;

use RedUNIT\Base;
use RedBeanPHP\Facade as R;
use RedBeanPHP\OODBBean;
use RedBeanPHP\QueryWriter\AQueryWriter;
R::ext('xdispense', function ($type) {
    return R::getRedBean()->dispense($type);
});
define('BOOK', 'tbl_book');
define('AUTHOR', 'tbl_author');
define('COAUTHOR', 'coAuthor');
define('FRIEND', 'tbl_friend');
define('PUBLISHER', 'tbl_publisher');
define('BOOKLIST', 'ownTbl_book');
define('FRIENDLIST', 'sharedTbl_friend');
/**
 * Prefixes
 *
 * @file    RedUNIT/Base/Prefixes.php
 * @desc    Tests whether you can use RedBeanPHP with table prefixes.
 * @author  Gabor de Mooij and the RedBeanPHP Community
 * @license New BSD/GPLv2
 *
 * (c) G.J.G.T. (Gabor) de Mooij and the RedBeanPHP Community.
 * This source file is subject to the New BSD/GPLv2 License that is bundled
 * with this source code in the file license.txt.
 */
class Prefixes extends Base
开发者ID:diego-vieira,项目名称:redbean,代码行数:31,代码来源:Prefixes.php

示例3: function

R::ext('getAllpage', function ($tbname, $startIndex = 0, $numRows = 20, $type = null, $userid = 'system') {
    return AMFUtil::getAllpage($tbname, $startIndex, $numRow, $type, $userid);
});
R::ext('getKey', function () {
    return AMFUtil::getKey();
});
// public static function setKey($key) {
R::ext('setKey', function ($key) {
    return AMFUtil::setKey($key);
});
// public static function mc_encrypt($encrypt, $key=null){
R::ext('mcencrypt', function ($encrypt, $key = null) {
    return AMFUtil::mcencrypt($encrypt, $key);
});
// public static function mc_decrypt($decrypt, $key=null){
R::ext('mcdecrypt', function ($decrypt, $key = null) {
    return AMFUtil::mcdecrypt($decrypt, $key);
});
R::ext('image_resize', function ($src, $dst, $width, $height, $crop = 0) {
    return AMFUtil::image_resize($src, $dst, $width, $height, $crop);
});
echo 'testRbplugin';
// R::ext('',function( ){
// 	return AMFUtil::();
// });
// R::ext('',function( ){
// 	return AMFUtil::();
// });
// R::ext('',function( ){
// 	return AMFUtil::();
// });
开发者ID:limweb,项目名称:webappservice,代码行数:31,代码来源:AMFUtil.php


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