xmlhttprequest.class.inc.php

来自「This is the script which used on 10minut」· PHP 代码 · 共 37 行

PHP
37
字号
<?php
 
/** 
 * GentleSource List Script - list.class.inc.php
 * 
 * (C) Ralf Stadtaus http://www.gentlesource.com/
 */




/**
 * 
 */
class t12l_xmlhttprequest
{
    
    
    /**
     * Server
     */
    function server()
    {
        global $t12l;
        
        include 'HTML/AJAX/Server.php';

        $server = new HTML_AJAX_Server();
        $server->setClientJsLocation(T12L_ROOT . $t12l['xmlhttprequest_library_path']);
        $server->handleRequest();
        
    }
    
    
    
    
} // End of class

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?