コード例 #1
0
ファイル: index.php プロジェクト: lingPro/zj_web_demo
<?php

//应用zj_php框架
require_once '../../zj_php.php';
//设置应用路径
setC("APP_PATH", dirname(__FILE__));
setC("TPL_PATH", getC("APP_PATH") . "/Tpl/");
//设置 APP URL
$arr1 = explode("index.php", $_SERVER["SCRIPT_NAME"]);
setC("APP_URL", $arr1[0]);
setC("APP_URL_ACTIONTAG", "");
//添加应用自动加载类路径
add_autoload_path(getC("APP_PATH") . "/Action/");
//添加应用配置文件
add_app_config(getC("APP_PATH") . "/Conf/App1_Conf.php");
//加载自定义函数
require_once "./Conf/AppFunction.php";
//执行请求
Runtime::doQuery();
コード例 #2
0
ファイル: test.php プロジェクト: lingPro/zj_web_demo
<?php

//?t=testModel
require_once '../zj_php.php';
setC("APP_PATH", dirname(__FILE__));
add_app_config(getC("APP_PATH") . "/App1/Conf/App1_Conf.php");
if (function_exists($q_t)) {
    eval("{$q_t} ();");
} else {
    my_log("{$q_t} 测试现不存在! ");
}
/*
 * ========= 测试项目 ==========
 */
function testDesCsh()
{
    $deskey = "AAacM12+";
    $des = DES::share("wp");
    $str = $des->encode("掌上贵金属sfsdaf", $deskey);
    my_log($str);
    $dstr = $des->decode($str, $deskey);
    my_log($dstr);
}
function testGuid()
{
    echo create_guid();
}
function testDesParam()
{
    $deskey = "AAacM12+";
    $des = DES::share("android");