當前位置: 首頁>>代碼示例>>PHP>>正文


PHP kekezu::exec_js方法代碼示例

本文整理匯總了PHP中kekezu::exec_js方法的典型用法代碼示例。如果您正苦於以下問題:PHP kekezu::exec_js方法的具體用法?PHP kekezu::exec_js怎麽用?PHP kekezu::exec_js使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在kekezu的用法示例。


在下文中一共展示了kekezu::exec_js方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: dirname

<?php

require dirname(__FILE__) . DIRECTORY_SEPARATOR . 'lib/inc/keke_base_class.php';
require dirname(__FILE__) . DIRECTORY_SEPARATOR . 'lib/inc/keke_core_class.php';
$basic_config = $kekezu->_sys_config;
$model_list = $kekezu->_model_list;
$nav_list = $kekezu->_nav_list;
if ((bool) ini_get('safe_mode') == true) {
    ini_set('safe_mode', 'Off');
}
if ((bool) get_magic_quotes_runtime() == true) {
    ini_set('magic_quotes_runtime', 'Off');
}
$exec_time_traver = kekezu::exec_js('get');
!isset($exec_time_traver) || $exec_time_traver < time() and $exec_time_traver = true or $exec_time_traver = false;
$_R = $_REQUEST;
$_R = kekezu::k_input($_R);
$_GET = kekezu::k_input($_GET);
$_POST = kekezu::k_input($_POST);
$_R and extract($_R, EXTR_SKIP);
isset($inajax) and $_K['inajax'] = $inajax;
unset($uid, $username);
開發者ID:pengfeiaaa,項目名稱:web,代碼行數:22,代碼來源:app_comm.php

示例2: define

<?php

define("IN_KEKE", TRUE);
require 'app_comm.php';
$ops = array('time', 'tag');
in_array($op, $ops) or $op = "time";
switch ($op) {
    case "time":
        $last_respons = kekezu::exec_js();
        if ($last_respons) {
            $time_factory = new time_fac_class();
            $time_factory->run();
        }
        break;
    case "tag":
        $html_str = $kekezu->_cache_obj->get('tag_html_data_' . $tag_id);
        $html_str = $html_str ? $html_str : keke_loaddata_class::gettagHTML($tag_id);
        $html_str = str_replace("'", "\\'", trim($html_str));
        $html_str = str_replace("\r\n", "", $html_str);
        $html_str = str_replace("\n", "", $html_str);
        echo "document.write('" . $html_str . "');";
        break;
}
die;
開發者ID:huangbinzd,項目名稱:kppwGit,代碼行數:24,代碼來源:js.php


注:本文中的kekezu::exec_js方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。