PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/CharacterBeforePHPOpeningTagStandard.xml

Recommend this page to a friend!
  Classes of milenmk   Simple PHP Password Manager   vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/CharacterBeforePHPOpeningTagStandard.xml   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Docs/PHP/CharacterBeforePHPOpeningTagStandard.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Simple PHP Password Manager
Application to store and retrieve user password
Author: By
Last change:
Date: 1 year ago
Size: 545 bytes
 

Contents

Class file image Download
<documentation title="Opening Tag at Start of File"> <standard> <![CDATA[ The opening php tag should be the first item in the file. ]]> </standard> <code_comparison> <code title="Valid: A file starting with an opening php tag."> <![CDATA[ <em></em><?php echo 'Foo'; ]]> </code> <code title="Invalid: A file with content before the opening php tag."> <![CDATA[ <em>Beginning content</em> <?php echo 'Foo'; ]]> </code> </code_comparison> </documentation>