andresandoval/lithium

用于在对象和函数注解中管理元数据的PHP库

v1.0.0 2017-12-07 15:39 UTC

This package is not auto-updated.

Last update: 2024-09-25 08:37:00 UTC


README

用于管理对象和/或方法定义中元数据的库

####示例

<?php
 /**
 * @MetaSample(
 *   @propertyOne hello
 *   @propertyTwo world
 *   @propertyThree()
 *   @propertyFour(@subP41=001, @subp42=002)
 *   @propertyFive(
 *      @subP51=001
 *      @subp62=002
 *   ),
 *   @propertySix six, @propertySeven=seven 
 * )
 */
 class Test{...}