You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
notepad-plus-plus/lexilla/test/examples/hypertext/Issue19.php

31 lines
412 B

<?php
$number = 1_234;
$var = 'variable value';
$test = [
<<<EOTEST
string $var string EOTEST
EOTEST_NOT
EOTEST,
0b00_01,
<<<"EOTEST"
"string" "$var" "string" EOTEST
EOTEST_NOT
EOTEST,
0x00_02,
<<<'EOTEST'
'string' '$var' 'string' EOTEST
EOTEST_NOT
EOTEST,
0x00_03,
];
print_r($test);
# Attribute tests
#[SingleLineAnnotation('string', 1, null)]
#[
MultiLineAnnotation('string', 1, null)
]
?>