mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
25 lines
230 B
PHP
25 lines
230 B
PHP
--TEST--
|
|
#-style comments
|
|
--FILE--
|
|
#teste
|
|
#teste2
|
|
<?php
|
|
|
|
#ahahah
|
|
#ahhfhf
|
|
|
|
echo '#ola'; //?
|
|
echo "\n";
|
|
echo 'uhm # ah'; #ah?
|
|
echo "\n";
|
|
echo "e este, # hein?";
|
|
echo "\n";
|
|
|
|
?>
|
|
--EXPECT--
|
|
#teste
|
|
#teste2
|
|
#ola
|
|
uhm # ah
|
|
e este, # hein?
|