summaryrefslogtreecommitdiff
path: root/test/scanners/php/labels.in.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/scanners/php/labels.in.php')
-rw-r--r--test/scanners/php/labels.in.php34
1 files changed, 0 insertions, 34 deletions
diff --git a/test/scanners/php/labels.in.php b/test/scanners/php/labels.in.php
deleted file mode 100644
index 2839ecd..0000000
--- a/test/scanners/php/labels.in.php
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-goto a;
-echo 'Foo';
-
-a:
-echo 'Bar';
-?>
-
-<?php
-
-$headers = Array('subject', 'bcc', 'to', 'cc', 'date', 'sender');
-$position = 0;
-
-hIterator: {
-
- $c = 0;
- echo $headers[$position] . PHP_EOL;
-
- cIterator: {
- echo ' ' . $headers[$position][$c] . PHP_EOL;
-
- if(!isset($headers[$position][++$c])) {
- goto cIteratorExit;
- }
- goto cIterator;
- }
-
- cIteratorExit: {
- if(isset($headers[++$position])) {
- goto hIterator;
- }
- }
-}
-?> \ No newline at end of file