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


PHP Chat::user_info方法代码示例

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


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

示例1: sc_chat_ajax_callback

/**
 * Ajax Callback
 *
 * @access public
 * @return void
 */
function sc_chat_ajax_callback()
{
    $response = array();
    try {
        // Handling the supported actions:
        switch ($_GET['mode']) {
            case 'login':
                $response = Chat::login(@$_POST['f_chat_user_name'], @$_POST['f_chat_user_email'], $_POST['f_chat_is_admin']);
                break;
            case 'send_contact_from':
                $response = Chat::send_contact_from($_POST);
                break;
            case 'is_user_logged_in':
                $response = Chat::is_user_logged_in();
                break;
            case 'logout':
                $response = Chat::logout();
                break;
            case 'online':
                $response = Chat::online();
                break;
            case 'offline':
                $response = Chat::offline();
                break;
            case 'send_chat_msg':
                $response = Chat::send_chat_msg($_POST);
                break;
            case 'get_online_users':
                $response = Chat::get_online_users();
                break;
            case 'get_chat_lines':
                $response = Chat::get_chat_lines($_GET['last_log_ID'], $_GET['sender']);
                break;
            case 'user_info':
                $response = Chat::user_info($_GET['ID']);
                break;
            default:
                throw new Exception('Wrong action');
        }
    } catch (Exception $e) {
        $response['error'] = $e->getMessage();
    }
    // Response output
    header("Content-Type: application/json");
    echo json_encode($response);
    exit;
}
开发者ID:k2jysy,项目名称:mergeshop,代码行数:53,代码来源:fn.init.php


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