yaf配置通用函式
在bootstrap.php中載入
/**
* 通用函式配置
*/public function _initcommonfunctions()
然後,在裡面寫通用的函式,就可以了!
<?php
/** * 通用函式庫
*/function test()
也可以引入類
/**
* 通用函式配置
*/public function _initcommonfunctions()
<?php
namespace common\func;
/** * 通用函式庫
*/class func
if ($no > 6 && $no < 12)
if ($no >= 12 && $no <= 18)
if ($no > 18 && $no <= 24)
return $return;
}}
使用
echo func::test();
Yaf安裝和配置
確定系統已經安裝了gcc gcc c make automake autoconf等依賴庫 sudo apt get install gcc gcc c make automake autoconf步驟 tar zxvf yaf 2.1.18.tgz cd yaf 2.1.18 wget tar z...
Yaf之配置和Bootstrap
common product common 2.列印出配置資訊看一下 class indexcontroller extends yaf controller abstract 3.檢視配置資訊 4.那麼怎麼加入多組配置資訊呢,比如我有兩個redis伺服器 很簡單,可以看出上面的配置檔案,裡面有乙個...
如何安裝配置yaf
用c語言開發的php框架,相比原生的php,幾乎不會帶來額外的效能開銷.所有的框架類,不需要編譯,在php啟動的時候載入,並常駐記憶體.更短的記憶體周轉週期,提高記憶體利用率,降低記憶體佔用率.靈巧的自動載入.支援全域性和區域性兩種載入規則,方便類庫共享.高效能的檢視引擎.高度靈活可擴充套件的框架,...