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


PHP Gateway::setClassPath方法代码示例

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


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

示例1: parseRequest

 /**
  * Parse the request / request object
  *
  * @param PASL_Web_Service_Request The intial request object
  */
 public function parseRequest($oRequest)
 {
     $this->gateway->setClassPath($oRequest->operationClassPath);
     return $oRequest;
 }
开发者ID:how,项目名称:openpasl,代码行数:10,代码来源:AMF.php

示例2: disableDebug

		
	  - disableDebug()
		Stops debug info from being sent (independant of remote trace setting)
*/
//You can set this constant appropriately to disable traces and debugging headers
//You will also have the constant available in your classes, for changing
//the mysql server info for example
define("PRODUCTION_SERVER", false);
//Include things that need to be global, for integrating with other frameworks
include "globals.php";
//Include framework
include "core/amf/app/Gateway.php";
$gateway = new Gateway();
//Set where the services classes are loaded from, *with trailing slash*
//$servicesPath defined in globals.php
$gateway->setClassPath($servicesPath);
//Set where class mappings are loaded from (ie: for VOs)
//$voPath defined in globals.php
$gateway->setClassMappingsPath($voPath);
//Read above large note for explanation of charset handling
//The main contributor (Patrick Mineault) is French,
//so don't be afraid if he forgot to turn off iconv by default!
$gateway->setCharsetHandler("utf8_decode", "ISO-8859-1", "ISO-8859-1");
//Error types that will be rooted to the NetConnection debugger
$gateway->setErrorHandling(E_ALL ^ E_NOTICE);
if (PRODUCTION_SERVER) {
    //Disable profiling, remote tracing, and service browser
    $gateway->disableDebug();
    // Keep the Flash/Flex IDE player from connecting to the gateway. Used for security to stop remote connections.
    $gateway->disableStandalonePlayer();
}
开发者ID:rdmpage,项目名称:gbif-sdr,代码行数:30,代码来源:gateway.php

示例3: sent

		Stops debug info from being sent (independant of remote trace setting)
*/
//You can set this constant appropriately to disable traces and debugging headers
//You will also have the constant available in your classes, for changing
//the mysql server info for example
define("PRODUCTION_SERVER", false);
//Include things that need to be global, for integrating with other frameworks
//include "./globals.php";
// Set start time before loading framework
$amfphp['startTime'] = microtime(true);
//Include framework
include "../framework/protocal/amf/core/amf/app/Gateway.php";
$gateway = new Gateway();
//Set where the services classes are loaded from, *with trailing slash*
//$servicesPath defined in globals.php
$gateway->setClassPath('./services/');
//Set where class mappings are loaded from (ie: for VOs)
//$voPath defined in globals.php
//$gateway->setClassMappingsPath($voPath);
//Read above large note for explanation of charset handling
//The main contributor (Patrick Mineault) is French,
//so don't be afraid if he forgot to turn off iconv by default!
$gateway->setCharsetHandler("mbstring", "UTF-8", "UTF-8");
//$gateway->setCharsetHandler("iconv", "GB2312", "GB2312");
//Error types that will be rooted to the NetConnection debugger
$gateway->setErrorHandling(E_ERROR);
if (PRODUCTION_SERVER) {
    //Disable profiling, remote tracing, and service browser
    $gateway->disableDebug();
    // Keep the Flash/Flex IDE player from connecting to the gateway. Used for security to stop remote connections.
    $gateway->disableStandalonePlayer();
开发者ID:GameCrusherTechnology,项目名称:HeroTowerServer,代码行数:31,代码来源:gateway.php


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