PHP ANOTATION , Reflection 입니다.

· 10년 전 · 1353

PHP 에서도 anotation 드리븐을 구현 할 수 있을거 같내요 ㅎ;
 
http://code.google.com/p/addendum/
 
 
 
잘만 활용 하면, spring framework 장점만 경량화 하여
 
 php 진영에서도 ... framework 도 나오지 않을가 하는

생각을 문득 해봤습니다.

 
 
------------------------------------------------------------------
 
 
 
 
 
/** @Table("people") */
class Person {
   // some code
}
 
 
 
$reflection = new ReflectionAnnotatedClass('Person'); // by class name
$reflection->getAnnotation('Table')->value; // contains string "people"
 
 
 
----------------------------------------------------------------------
 
 
 
class RolesAllowed extends Annotation {}
 
/** @RolesAllowed({'admin', 'web-editor'}) */
class CMS {
 // some code
}
 
$reflection = new ReflectionAnnotatedClass('CMS');
$annotation = $reflection->getAnnotation('RolesAllowed');
$annotation->value; // contains array('admin', 'web-editor'
 
 
 
 
 
-------------------------------------------------------------
 
 
 
/** @Mapping(inheritance = @SingleTableInheritance, columns = {@ColumnMapping('id'), @ColumnMapping('name')}) */
class Person {}
 
$reflection = new ReflectionAnnotatedClass('Person');
$annotation = $reflection->getAnnotation('Mapping');
$annotation->inheritance; // SingleTableInheritance annotation
$annotation->columns; // array of ColumnMapping annotations
$annotation->columns[0]->value; // 'id'

|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
10년 전 조회 1,244
10년 전 조회 1,352
10년 전 조회 1,312
10년 전 조회 1,331
10년 전 조회 1,458
10년 전 조회 1,319
10년 전 조회 1,280
10년 전 조회 1,292
10년 전 조회 1,413
10년 전 조회 1,290
10년 전 조회 1,246
10년 전 조회 1,278
10년 전 조회 1,287
10년 전 조회 1,337
10년 전 조회 1,267
10년 전 조회 1,495
10년 전 조회 1,629
10년 전 조회 1,539
10년 전 조회 1,303
10년 전 조회 1,293
10년 전 조회 1,261
10년 전 조회 1,251
10년 전 조회 1,378
10년 전 조회 1,290
10년 전 조회 1,245
10년 전 조회 1,296
10년 전 조회 1,639
10년 전 조회 2,115
10년 전 조회 1,680
10년 전 조회 1,476
10년 전 조회 1,328
10년 전 조회 1,310
10년 전 조회 1,332
10년 전 조회 1,284
10년 전 조회 1,302
10년 전 조회 1,329
10년 전 조회 1,490
10년 전 조회 1,389
10년 전 조회 2,119
10년 전 조회 1,655
10년 전 조회 1,402
10년 전 조회 1,491
10년 전 조회 1,725
10년 전 조회 1,404
10년 전 조회 1,591
10년 전 조회 1,423
10년 전 조회 1,546
10년 전 조회 1,382
10년 전 조회 1,344
10년 전 조회 1,354
10년 전 조회 1,388
10년 전 조회 1,380
10년 전 조회 1,412
10년 전 조회 1,448
10년 전 조회 1,413
10년 전 조회 1,569
10년 전 조회 1,554
10년 전 조회 1,348
10년 전 조회 1,658
10년 전 조회 1,999
10년 전 조회 1,455
10년 전 조회 1,702
10년 전 조회 1,663
10년 전 조회 1,525
10년 전 조회 1,473
10년 전 조회 1,437
10년 전 조회 1,546
10년 전 조회 1,281
10년 전 조회 1,373
10년 전 조회 1,595
10년 전 조회 1,416
10년 전 조회 1,403
10년 전 조회 1,358
10년 전 조회 1,397
10년 전 조회 1,383
10년 전 조회 1,386
10년 전 조회 1,417
10년 전 조회 1,367
10년 전 조회 1,528
10년 전 조회 1,350
10년 전 조회 1,364
10년 전 조회 1,466
10년 전 조회 2,189
10년 전 조회 1,423
10년 전 조회 1,409
10년 전 조회 1,487
10년 전 조회 1,399
10년 전 조회 1,596
10년 전 조회 1,487
10년 전 조회 1,408
10년 전 조회 1,414
10년 전 조회 1,452
10년 전 조회 1,434
10년 전 조회 1,358
10년 전 조회 1,316
10년 전 조회 1,293
10년 전 조회 1,328
10년 전 조회 1,727
10년 전 조회 1,352
10년 전 조회 1,462