>  기사  >  백엔드 개발  >  Facade 패키징 클래스 - 뷰 spring 네임스페이스 qq space 명명 전역 네임스페이스에서 긴 네임스페이스 호출 문제를 해결합니다.

Facade 패키징 클래스 - 뷰 spring 네임스페이스 qq space 명명 전역 네임스페이스에서 긴 네임스페이스 호출 문제를 해결합니다.

WBOY
WBOY원래의
2016-07-29 08:52:56909검색

有时候模版里面定义需要写很长的全路径类名,此处提供一个 简易的别名调用代码来规避此问题,缺点就是IDE 代码提示功能就没有了

<?php
/**
 * Facade 包装类
 *
 * 优点:
 * 		使用简单的方式来省掉视图里面长长的命名空间调用,诸如 YII 的模版
 * 缺点:
 * 		这么写在 IDE 中会失去代码自动提示的功能,对于 sublime 狗而言貌似不是缺点
 *
 * 使用方法:
 * 		ZGFacade::{方法名}( {facade名称}, 参数1, 参数2,...参数n )
 * 
 * <code>
 * // 初始化
 * ZGFacade::setZGFacade('form', 'Aert_Form');
 * ZGFacade::setZGFacade('esClient', '\Elasticsearch\Client');
 * 
 * // 使用demo
 * $form = ZGFacade::newInstance('form', 'frm2', 'delete');
 * dump($form);
 * 
 * echo ZGFacade::server('form', 'REQUEST_METHOD');
 * echo ZGFacade::get('form', 'a');
 * 
 * 	$dsn      = Config::get('esken.dsn');
 * 	$esClient = ZGFacade::newInstance('esClient', $dsn);
 * 	dump($esClient);
 * </code>
 * @author vb2005xu@qq.com
 */
final class ZGFacade
{
	private static $map = [
		'form'	=> 'Aert_Form'
	];

	public static function setZGFacade($alias, $class)
	{
		self::$map[ $alias ] = $class;
	}

	private static function __facade__($facade, $method, $arguments=[])
	{
		if ( is_object($facade) )
		{
			// 调用 对象方法
			return call_user_func_array( [$facade, $method], $arguments );
		}
		else if (is_string($facade))
		{
			if ( empty(self::$map[$facade]) )
			{
				throw new Exception("未定义 'facade': {$facade} ");
			}
			// 调用 静态方法
			if ( 'newInstance' == $method )
	    	{
	    		$class = new ReflectionClass( self::$map[$facade] );
	    		return $class->newInstanceArgs( $arguments );
	    	}
			$class = self::$map[$facade];
			return call_user_func_array( [$class, $method], $arguments );
		}

		throw new Exception("无效 'facade' 调用!");
	}

	public function __call($method, $arguments) 
    {
    	$facade = array_shift($arguments);
    	return self::__facade__($facade, $method, $arguments);
    }

    public static function __callStatic($method, $arguments) 
    {
    	$facade = array_shift($arguments);    	
    	return self::__facade__($facade, $method, $arguments);
    }

}

위 내용은 Facade 래퍼 클래스를 소개합니다. 네임스페이스 및 acad 측면을 포함하여 뷰의 긴 네임스페이스 호출 문제를 해결하는 것이 PHP 튜토리얼에 관심이 있는 친구에게 도움이 되기를 바랍니다.

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.