File: variables.php

package info (click to toggle)
php-elisp 1.24.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,220 kB
  • sloc: lisp: 7,069; php: 5,343; makefile: 58; sh: 10
file content (19 lines) | stat: -rw-r--r-- 290 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
<?php

// Test highlighting of variables with the variable-name-face
$_;
$regularVariable;
$$variableVariable;
$漢字;
$snake_case;
$abc123xyz;
$def_456_ghi;
${'var'};
${"var"};
${$var};
${'v' . 'ar'};
$a{1};
$a{'a'};
MyClass::$staticVariable;
$object->memberVariable;
$object->funCall();