PHP Classes

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

Recommend this page to a friend!
  Classes of milenmk   Simple PHP Password Manager   vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/GotoLabelTest.inc   Download  
File: vendor/squizlabs/php_codesniffer/tests/Core/Tokenizer/GotoLabelTest.inc
Role: Example script
Content type: text/plain
Description: Example script
Class: Simple PHP Password Manager
Application to store and retrieve user password
Author: By
Last change:
Date: 1 year ago
Size: 1,060 bytes
 

Contents

Class file image Download
<?php

/* testGotoStatement */
goto marker;
echo
'Foo';

/* testGotoDeclaration */
marker:
echo
'Bar';

/* testGotoStatementInLoop */
for($i=0,$j=50; $i<100; $i++) {
  while(
$j--) {
    if(
$j==17) GOTO end;
  }
}
echo
"i = $i";
?>
<div><?php $cond ? TEST_A : TEST_B ?></div>

<?php
/* testGotoDeclarationOutsideLoop */
end:
echo
'j hit 17';

switch (
$x) {
   
/* testNotGotoDeclarationGlobalConstant */
   
case CONSTANT:
       
// Do something.
       
break;

   
/* testNotGotoDeclarationNamespacedConstant */
   
case MyNS\CONSTANT:
       
// Do something.
       
break;

   
/* testNotGotoDeclarationClassConstant */
   
case MyClass::CONSTANT:
       
// Do something.
       
break;

   
/* testNotGotoDeclarationClassProperty */
   
case $obj->property:
       
// Do something.
       
break;
}

switch (
true) {
   
/* testNotGotoDeclarationGlobalConstantInTernary */
   
case $x === ($cond) ? CONST_A : CONST_B:
       
// Do something.
       
break;
}

/* testNotGotoDeclarationEnumWithType */
enum Suit: string implements Colorful, CardGame {}