PHP Classes

File: vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/BackfillExplicitOctalNotationTest.inc

Recommend this page to a friend!
  Classes of milenmk   Simple PHP Password Manager   vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/BackfillExplicitOctalNotationTest.inc   Download  
File: vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/BackfillExplicitOctalNotationTest.inc
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: 372 bytes
 

Contents

Class file image Download
<?php /* testExplicitOctal */ $foo = 0o137041; /* testExplicitOctalCapitalised */ $bar = 0O137041; /* testExplicitOctalWithNumericSeparator */ $octal = 0o137_041; /* testInvalid1 */ $foo = 0o_137; /* testInvalid2 */ $foo = 0O_41; /* testInvalid3 */ $foo = 0o91; /* testInvalid4 */ $foo = 0O282; /* testInvalid5 */ $foo = 0o28_2; /* testInvalid6 */ $foo = 0o2_82;