PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Functions/FunctionDuplicateArgumentStandard.xml

Recommend this page to a friend!
  Classes of milenmk   Simple PHP Password Manager   vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Functions/FunctionDuplicateArgumentStandard.xml   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Docs/Functions/FunctionDuplicateArgumentStandard.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: 517 bytes
 

Contents

Class file image Download
<documentation title="Lowercase Built-In functions"> <standard> <![CDATA[ All PHP built-in functions should be lowercased when called. ]]> </standard> <code_comparison> <code title="Valid: Lowercase function call."> <![CDATA[ if (<em>isset</em>($foo)) { echo $foo; } ]]> </code> <code title="Invalid: isset not called as lowercase."> <![CDATA[ if (<em>isSet</em>($foo)) { echo $foo; } ]]> </code> </code_comparison> </documentation>