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


PHP make_json_response函數代碼示例

本文整理匯總了PHP中make_json_response函數的典型用法代碼示例。如果您正苦於以下問題:PHP make_json_response函數的具體用法?PHP make_json_response怎麽用?PHP make_json_response使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


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

示例1: make_json_error

/**
 * 創建一個JSON格式的錯誤信息
 *
 * @access  public
 * @param   string  $msg
 * @return  void
 */
function make_json_error($msg)
{
    make_json_response('', 1, $msg);
}
開發者ID:songtaiwu,項目名稱:m-cmsold,代碼行數:11,代碼來源:lib_main.php

示例2: make_json_result

     }
     $sql = 'UPDATE ' . $GLOBALS['ecs']->table('order_info') . " SET pay_note='{$no}' WHERE order_id = '{$order_id}'";
     if ($GLOBALS['db']->query($sql)) {
         if (empty($no)) {
             make_json_result('N/A');
         } else {
             make_json_result(stripcslashes($no));
         }
     } else {
         make_json_error($GLOBALS['db']->errorMsg());
     }
 } elseif ($_REQUEST['act'] == 'get_goods_info') {
     /* 取得訂單商品 */
     $order_id = isset($_REQUEST['order_id']) ? intval($_REQUEST['order_id']) : 0;
     if (empty($order_id)) {
         make_json_response('', 1, $_LANG['error_get_goods_info']);
     }
     $goods_list = array();
     $goods_attr = array();
     $sql = "SELECT o.*, g.goods_thumb, g.goods_number AS storage, o.goods_attr, IFNULL(b.brand_name, '') AS brand_name " . "FROM " . $ecs->table('order_goods') . " AS o " . "LEFT JOIN " . $ecs->table('goods') . " AS g ON o.goods_id = g.goods_id " . "LEFT JOIN " . $ecs->table('brand') . " AS b ON g.brand_id = b.brand_id " . "WHERE o.order_id = '{$order_id}' ";
     $res = $db->query($sql);
     while ($row = $db->fetchRow($res)) {
         /* 虛擬商品支持 */
         if ($row['is_real'] == 0) {
             /* 取得語言項 */
             $filename = ROOT_PATH . 'plugins/' . $row['extension_code'] . '/languages/common_' . $_CFG['lang'] . '.php';
             if (file_exists($filename)) {
                 include_once $filename;
                 if (!empty($_LANG[$row['extension_code'] . '_link'])) {
                     $row['goods_name'] = $row['goods_name'] . sprintf($_LANG[$row['extension_code'] . '_link'], $row['goods_id'], $order['order_sn']);
                 }
開發者ID:norain2050,項目名稱:benhu,代碼行數:31,代碼來源:order.php

示例3: make_json_error

/**
 * 創建一個JSON格式的錯誤信息
 *
 * @access  public
 * @param   string  $msg
 * @return  void
 */
function make_json_error($msg, $code = 1)
{
    make_json_response('', $code, $msg);
}
開發者ID:firsteam,項目名稱:falcons,代碼行數:11,代碼來源:lib_main.php

示例4: install_plugins

    /* 安裝所有插件 */
    install_plugins();
}
/* ------------------------------------------------------ */
// - 異步 - 插件安裝
/* ------------------------------------------------------ */
if ($_REQUEST['act'] == 'uninstall') {
    /* 卸載所有插件 */
    uninstall_plugins();
}
/* ------------------------------------------------------ */
// - 異步 - 插件列表
/* ------------------------------------------------------ */
$tpl['list'] = list_plugin();
/* 加載視圖 */
make_json_response(empty($tpl['list']['data']) ? -1 : 0, '', tpl_fetch('sysplugin.html', $tpl));
?>

<?php 
/**
 * 獲取所有插件
 * 過濾沒有配置文件或者無效配置信息的插件
 */
function all_plugin()
{
    global $_CFG;
    /* 初始化 */
    $plugins = array();
    $fdgroups = array('php', 'javascript');
    // 插件的父文件夾組
    /* 遍曆父文件夾 */
開發者ID:laiello,項目名稱:lengdoframe,代碼行數:31,代碼來源:sysplugin.php

示例5: make_json_result

function make_json_result($content, $message = '', $append = array())
{
    make_json_response($content, 0, $message, $append);
}
開發者ID:thezawad,項目名稱:xjoj,代碼行數:4,代碼來源:lib_main.php

示例6: sprintf

    $_LANG['ok_dbbackup_importing'] = sprintf($_LANG['spr_dbbackup_import_part'], $_POST['vol'] + 1, $_POST['total']);
    /* 返回消息 */
    make_json_response(-1, $_LANG['ok_dbbackup_importing'], $params);
} elseif ($_REQUEST['act'] == 'importinit') {
    /* 根據索引文件獲取所有文件 */
    $fnames = all_sqlfile(array('findex' => $_POST['findex']));
    /* 文件總卷 */
    $total = count($fnames);
    /* 構建返回參數 */
    $params = 'fname=' . $fnames[0] . '&vol=1&total=' . $total;
    /* 構建返回消息 */
    if ($total > 1) {
        $_LANG['ok_dbbackup_importing'] = sprintf($_LANG['spr_dbbackup_import_part'], 1, $total);
    }
    /* 返回消息 */
    make_json_response(-1, $_LANG['ok_dbbackup_importing'], $params);
} elseif ($_REQUEST['act'] == 'upload') {
    /* 權限檢查 */
    admin_privilege_valid('db_backup.php', 'backup');
    /* 檢查上傳是否成功 */
    if (isset($_FILES['file']['error']) && $_FILES['file']['error'] != 0) {
        make_json_fail($_LANG['fill_dbbackup_sqlfile']);
    }
    /* 檢查文件格式 */
    if (substr($_FILES['file']['name'], -4) != '.sql') {
        make_json_fail($_LANG['file_ext_error']);
    }
    /* 設置文件路徑 */
    $fname = 'upload_sqlfile_temp.sql.php';
    $fpath = $_CFG['DIR_ADMIN_DUMPSQL'] . $fname;
    /* 將文件移動到備份文件夾下 */
開發者ID:laiello,項目名稱:lengdoframe,代碼行數:31,代碼來源:db_backup.php

示例7: make_json_fail

function make_json_fail($message = '')
{
    make_json_response('1', $message);
}
開發者ID:laiello,項目名稱:lengdoframe,代碼行數:4,代碼來源:func.php


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