PHP Classes

File: vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/BackfillExplicitOctalNotationTest.inc

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Nolimitbuzz WP Theme   vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/BackfillExplicitOctalNotationTest.inc   Download  
File: vendor/squizlabs/php_codesniffer/tests/Core/Tokenizers/PHP/BackfillExplicitOctalNotationTest.inc
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Nolimitbuzz WP Theme
WordPress theme to used as start of new themes
Author: By
Last change:
Date: 19 days ago
Size: 403 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; /* testInvalid7 */ $foo = 0o;