File: magicConst.test

package info (click to toggle)
php-parser 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,824 kB
  • ctags: 2,313
  • sloc: php: 8,944; makefile: 18; sh: 5
file content (31 lines) | stat: -rw-r--r-- 443 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Magic constants
-----
<?php

__CLASS__;
__DIR__;
__FILE__;
__FUNCTION__;
__LINE__;
__METHOD__;
__NAMESPACE__;
__TRAIT__;
-----
array(
    0: Scalar_MagicConst_Class(
    )
    1: Scalar_MagicConst_Dir(
    )
    2: Scalar_MagicConst_File(
    )
    3: Scalar_MagicConst_Function(
    )
    4: Scalar_MagicConst_Line(
    )
    5: Scalar_MagicConst_Method(
    )
    6: Scalar_MagicConst_Namespace(
    )
    7: Scalar_MagicConst_Trait(
    )
)