本文整理汇总了PHP中ErrorHandler::handle方法的典型用法代码示例。如果您正苦于以下问题:PHP ErrorHandler::handle方法的具体用法?PHP ErrorHandler::handle怎么用?PHP ErrorHandler::handle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ErrorHandler
的用法示例。
在下文中一共展示了ErrorHandler::handle方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: validateParams
/**
* Validate params.
*
* @author Alberto Miranda <alberto@nextive.com>
* @param array $params
*/
private function validateParams($params)
{
if (empty($params)) {
ErrorHandler::handle(__CLASS__ . ": Empty params!");
}
if (!is_array($params)) {
ErrorHandler::handle(__CLASS__ . ": Invalid params, not array: " . print_r($params, true));
}
$requiredKeys = array('name');
foreach ($requiredKeys as $key) {
if (!array_key_exists($key, $params)) {
ErrorHandler::handle(__CLASS__ . ": Required param not found: '{$key}'. Invalid params: " . print_r($params, true));
}
}
}
示例2: dispatch
/**
* Actual Dispatcher method.
* Calls service passing params.
*
* @author Alberto Miranda <alberto@nextive.com>
*/
public function dispatch()
{
$service = $this->getService();
$serviceClass = "{$service}Service";
$localPath = dirname(__FILE__) . '/..';
$servicesPath = $this->getServicesPath();
$serviceFile = "{$localPath}/{$servicesPath}/{$serviceClass}.class.php";
if (!file_exists($serviceFile)) {
ErrorHandler::handle(__CLASS__ . ": Oops! Service '{$service}' not found! Service file: {$serviceFile}");
}
//require, call and return
require $serviceFile;
if (!class_exists($serviceClass)) {
ErrorHandler::handle(__CLASS__ . ": Service class '{$serviceClass}' not exists!");
}
$service = new $serviceClass($this->getParams());
$method = $this->getMethod();
if (!method_exists($service, $method)) {
ErrorHandler::handle(__CLASS__ . ": Service method '{$method}' not exists!");
}
return $service->{$method}($this->getParams());
}
示例3: humanizeResponse
private static function humanizeResponse($rawData, $format = self::FORMAT_JSON)
{
if (true === isset($rawData['sys-error'])) {
return $rawData;
}
switch ($format) {
case self::FORMAT_JSON:
$out = JsonResponseParser::parse($rawData);
break;
default:
$out = $rawData;
}
if (true === is_array($out) && true === isset($out['error'])) {
return ErrorHandler::handle($out['error']);
}
return $out;
}