1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/tests/lang/comments.phpt
2009-01-05 17:53:53 +00:00

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?