PHP Classes

File: zray/vendor/PHP_CodeSniffer-2.2.0/CodeSniffer/Standards/Generic/Docs/Files/InlineHTMLStandard.xml

Recommend this page to a friend!
  Classes of Simo   CodeIgniter Plugin for Z-Ray   zray/vendor/PHP_CodeSniffer-2.2.0/CodeSniffer/Standards/Generic/Docs/Files/InlineHTMLStandard.xml   Download  
File: zray/vendor/PHP_CodeSniffer-2.2.0/CodeSniffer/Standards/Generic/Docs/Files/InlineHTMLStandard.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: CodeIgniter Plugin for Z-Ray
Show CodeIgniter application information in Z-Ray
Author: By
Last change:
Date: 1 year ago
Size: 595 bytes
 

Contents

Class file image Download
<documentation title="Inline HTML"> <standard> <![CDATA[ Files that contain php code should only have php code and should not have any "inline html". ]]> </standard> <code_comparison> <code title="Valid: A php file with only php code in it."> <![CDATA[ <?php $foo = 'bar'; echo $foo . 'baz'; ]]> </code> <code title="Invalid: A php file with html in it outside of the php tags."> <![CDATA[ <em>some string here</em> <?php $foo = 'bar'; echo $foo . 'baz'; ]]> </code> </code_comparison> </documentation>