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


PHP Server::Run方法代码示例

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


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

示例1: testLoadServerWithNonExistentAction

 public function testLoadServerWithNonExistentAction()
 {
     ob_start();
     $_SERVER["QUERY_STRING"] = "Index/foo";
     Server::Run();
     $html = ob_get_contents();
     ob_end_clean();
     $this->assertTrue(strpos($html, "inside the view") <= 0);
 }
开发者ID:giraldomauricio,项目名称:phpXelerator5,代码行数:9,代码来源:serverTest.php

示例2: ServerPush

<?php

require_once '../php/EventHttpServer.class.php';
class Server extends EventHttpServer
{
    protected function ServerPush($Data)
    {
        echo "Push\n";
        $ClientData = $this->getClientDataArray();
        foreach ($ClientData as $SocketName => $Client) {
            $this->ClientWrite($SocketName, $Data);
        }
    }
}
$Server = new Server();
$Server->Run();
开发者ID:RickySu,项目名称:phpEventHttpd,代码行数:16,代码来源:server.php

示例3:

<?php

/* 
 * phpXelerator5 MVC
 * Bootstrap load the Autoloader and then loads all the required directories.
 * Then the constants are loaded and the Server Runs the application.
 * The server instantiates the Controller based on the first parameter passed
 * to Index.php, the seconds is the action and the rest are parameters.
 * 
 * Version: 1.0 09/24/2015
 * 
 * @author Mauricio Giraldo <mgiraldo@gmail.com>
 * 
 */
include_once './bootstrap.php';
Server::Run();
开发者ID:giraldomauricio,项目名称:phpXelerator5,代码行数:16,代码来源:index.php


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