Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php/*Comments need to be indented 4 space.*//*same with multi-linecomments.*//*But they can:- be indented more than 4- but not less than 4*//*- This is not valid:Not indented correctly.*//*Comments need to be indented 4 space.*//*Comments need to be indented 4 space.Comments need to be indented 4 space.Comments need to be indented 4 space.Comments need to be indented 4 space.Comments need to be indented 4 space.Comments need to be indented 4 space.*//*Block comments require a blankline after them.*/$code = 'should not be here';/*Closing comment not aligned*//*Closing comment not aligned*//* Not allowed *//* Not allowedeither.*//* */$code = 'should not be here';/*Block comments require a blankline before them. *//**//** Not allowed *//** Not allowedeither.**//**no capitalletter.*/echo 'hi';function func(){echo 1;/**testhere**/echo 'test';/**Testhere**/}//end func()public static function test(){/*Block comments do not require a blank line before themif they are after T_OPEN_CURLY_BRACKET.*/$code = '';}//end test()public static function test(){/*Block comments do not require a blank line before themif they are after T_OPEN_CURLY_BRACKET.*/$code = '';}//end test()class MyClass{/*** Comment should be ignored.** @var integer* @since 4.0.0*/const LEFT = 1;}?>