blob: 17b539362576cc7efd4fadff657f8e111df2a6bd (
plain) (
blame)
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
|
<?php
echo <<<OMG
// ^^^ @operator
// ^^^ @label
something
OMG;
//^ @label
echo true, TRUE, false, FALSE;
// ^^^^ @boolean
// ^^^^ @boolean
// ^^^^^ @boolean
// ^^^^^ @boolean
echo PI_314;
// ^^^^^^ @constant
echo __DIR__;
// ^^^^^^^ @constant.builtin
echo null, 42, 42.524, "Testing\n";
// ^^^^ @constant.builtin
// ^^ @number
// ^^^^^^ @number.float
// ^^ @string.escape
|