3v4l.org

run code in 300+ PHP versions simultaneously
<?php $string = '<?php function MyFunction1() { // Some code goes here. } function MyFunction2() { // Some code goes here. } class MyClass { function MyFunction3() { // Some code goes here. } function MyFunction4() { // Some code goes here. } public function register(); } public function register(); function foo() { } function foo() {} function foo() { } function foo() { for ($i = 0; $i < $bar; $i++) { }//end for } '; $tokens = token_get_all($string); foreach ($tokens as $i => $token) { echo "$i : "; if (is_array($token) === false) { echo $token; } else { echo token_name($token[0]).' => '.str_replace(PHP_EOL, '\n', $token[1]); } echo PHP_EOL; }
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
0 : T_OPEN_TAG => <?php\n 1 : T_WHITESPACE => \n 2 : T_FUNCTION => function 3 : T_WHITESPACE => 4 : T_STRING => MyFunction1 5 : ( 6 : ) 7 : T_WHITESPACE => 8 : { 9 : T_WHITESPACE => \n 10 : T_COMMENT => // Some code goes here. 11 : T_WHITESPACE => \n\n 12 : } 13 : T_WHITESPACE => \n\n 14 : T_FUNCTION => function 15 : T_WHITESPACE => 16 : T_STRING => MyFunction2 17 : ( 18 : ) 19 : T_WHITESPACE => 20 : { 21 : T_WHITESPACE => \n 22 : T_COMMENT => // Some code goes here. 23 : T_WHITESPACE => \n 24 : } 25 : T_WHITESPACE => \n\n 26 : T_CLASS => class 27 : T_WHITESPACE => 28 : T_STRING => MyClass 29 : T_WHITESPACE => \n 30 : { 31 : T_WHITESPACE => \n 32 : T_FUNCTION => function 33 : T_WHITESPACE => 34 : T_STRING => MyFunction3 35 : ( 36 : ) 37 : T_WHITESPACE => 38 : { 39 : T_WHITESPACE => \n 40 : T_COMMENT => // Some code goes here. 41 : T_WHITESPACE => \n\n 42 : } 43 : T_WHITESPACE => \n\n 44 : T_FUNCTION => function 45 : T_WHITESPACE => 46 : T_STRING => MyFunction4 47 : ( 48 : ) 49 : T_WHITESPACE => 50 : { 51 : T_WHITESPACE => \n 52 : T_COMMENT => // Some code goes here. 53 : T_WHITESPACE => \n 54 : } 55 : T_WHITESPACE => \n\n 56 : T_PUBLIC => public 57 : T_WHITESPACE => 58 : T_FUNCTION => function 59 : T_WHITESPACE => 60 : T_STRING => register 61 : ( 62 : ) 63 : ; 64 : T_WHITESPACE => \n 65 : } 66 : T_WHITESPACE => \n\n 67 : T_PUBLIC => public 68 : T_WHITESPACE => 69 : T_FUNCTION => function 70 : T_WHITESPACE => 71 : T_STRING => register 72 : ( 73 : ) 74 : ; 75 : T_WHITESPACE => \n\n 76 : T_FUNCTION => function 77 : T_WHITESPACE => 78 : T_STRING => foo 79 : ( 80 : ) 81 : T_WHITESPACE => 82 : { 83 : T_WHITESPACE => 84 : } 85 : T_WHITESPACE => \n 86 : T_FUNCTION => function 87 : T_WHITESPACE => 88 : T_STRING => foo 89 : ( 90 : ) 91 : T_WHITESPACE => 92 : { 93 : } 94 : T_WHITESPACE => \n 95 : T_FUNCTION => function 96 : T_WHITESPACE => 97 : T_STRING => foo 98 : ( 99 : ) 100 : T_WHITESPACE => 101 : { 102 : T_WHITESPACE => \n 103 : } 104 : T_WHITESPACE => \n\n 105 : T_FUNCTION => function 106 : T_WHITESPACE => 107 : T_STRING => foo 108 : ( 109 : ) 110 : T_WHITESPACE => \n 111 : { 112 : T_WHITESPACE => \n 113 : T_FOR => for 114 : T_WHITESPACE => 115 : ( 116 : T_VARIABLE => $i 117 : T_WHITESPACE => 118 : = 119 : T_WHITESPACE => 120 : T_LNUMBER => 0 121 : ; 122 : T_WHITESPACE => 123 : T_VARIABLE => $i 124 : T_WHITESPACE => 125 : < 126 : T_WHITESPACE => 127 : T_VARIABLE => $bar 128 : ; 129 : T_WHITESPACE => 130 : T_VARIABLE => $i 131 : T_INC => ++ 132 : ) 133 : T_WHITESPACE => 134 : { 135 : T_WHITESPACE => \n 136 : } 137 : T_COMMENT => //end for 138 : T_WHITESPACE => \n\n\n 139 : } 140 : T_WHITESPACE => \n
Output for 5.0.2 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.38, 7.0.0 - 7.0.33, 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
0 : T_OPEN_TAG => <?php\n 1 : T_WHITESPACE => \n 2 : T_FUNCTION => function 3 : T_WHITESPACE => 4 : T_STRING => MyFunction1 5 : ( 6 : ) 7 : T_WHITESPACE => 8 : { 9 : T_WHITESPACE => \n 10 : T_COMMENT => // Some code goes here.\n 11 : T_WHITESPACE => \n 12 : } 13 : T_WHITESPACE => \n\n 14 : T_FUNCTION => function 15 : T_WHITESPACE => 16 : T_STRING => MyFunction2 17 : ( 18 : ) 19 : T_WHITESPACE => 20 : { 21 : T_WHITESPACE => \n 22 : T_COMMENT => // Some code goes here.\n 23 : } 24 : T_WHITESPACE => \n\n 25 : T_CLASS => class 26 : T_WHITESPACE => 27 : T_STRING => MyClass 28 : T_WHITESPACE => \n 29 : { 30 : T_WHITESPACE => \n 31 : T_FUNCTION => function 32 : T_WHITESPACE => 33 : T_STRING => MyFunction3 34 : ( 35 : ) 36 : T_WHITESPACE => 37 : { 38 : T_WHITESPACE => \n 39 : T_COMMENT => // Some code goes here.\n 40 : T_WHITESPACE => \n 41 : } 42 : T_WHITESPACE => \n\n 43 : T_FUNCTION => function 44 : T_WHITESPACE => 45 : T_STRING => MyFunction4 46 : ( 47 : ) 48 : T_WHITESPACE => 49 : { 50 : T_WHITESPACE => \n 51 : T_COMMENT => // Some code goes here.\n 52 : T_WHITESPACE => 53 : } 54 : T_WHITESPACE => \n\n 55 : T_PUBLIC => public 56 : T_WHITESPACE => 57 : T_FUNCTION => function 58 : T_WHITESPACE => 59 : T_STRING => register 60 : ( 61 : ) 62 : ; 63 : T_WHITESPACE => \n 64 : } 65 : T_WHITESPACE => \n\n 66 : T_PUBLIC => public 67 : T_WHITESPACE => 68 : T_FUNCTION => function 69 : T_WHITESPACE => 70 : T_STRING => register 71 : ( 72 : ) 73 : ; 74 : T_WHITESPACE => \n\n 75 : T_FUNCTION => function 76 : T_WHITESPACE => 77 : T_STRING => foo 78 : ( 79 : ) 80 : T_WHITESPACE => 81 : { 82 : T_WHITESPACE => 83 : } 84 : T_WHITESPACE => \n 85 : T_FUNCTION => function 86 : T_WHITESPACE => 87 : T_STRING => foo 88 : ( 89 : ) 90 : T_WHITESPACE => 91 : { 92 : } 93 : T_WHITESPACE => \n 94 : T_FUNCTION => function 95 : T_WHITESPACE => 96 : T_STRING => foo 97 : ( 98 : ) 99 : T_WHITESPACE => 100 : { 101 : T_WHITESPACE => \n 102 : } 103 : T_WHITESPACE => \n\n 104 : T_FUNCTION => function 105 : T_WHITESPACE => 106 : T_STRING => foo 107 : ( 108 : ) 109 : T_WHITESPACE => \n 110 : { 111 : T_WHITESPACE => \n 112 : T_FOR => for 113 : T_WHITESPACE => 114 : ( 115 : T_VARIABLE => $i 116 : T_WHITESPACE => 117 : = 118 : T_WHITESPACE => 119 : T_LNUMBER => 0 120 : ; 121 : T_WHITESPACE => 122 : T_VARIABLE => $i 123 : T_WHITESPACE => 124 : < 125 : T_WHITESPACE => 126 : T_VARIABLE => $bar 127 : ; 128 : T_WHITESPACE => 129 : T_VARIABLE => $i 130 : T_INC => ++ 131 : ) 132 : T_WHITESPACE => 133 : { 134 : T_WHITESPACE => \n 135 : } 136 : T_COMMENT => //end for\n 137 : T_WHITESPACE => \n\n 138 : } 139 : T_WHITESPACE => \n
Output for 5.0.0 - 5.0.1
0 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_OPEN_TAG => <?php Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL1 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL2 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FUNCTION => function Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL3 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL4 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => MyFunction1 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL5 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL6 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL7 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL8 : { Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL9 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL10 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_COMMENT => // Some code goes here. Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL11 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL12 : } Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL13 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL14 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FUNCTION => function Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL15 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL16 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => MyFunction2 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL17 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL18 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL19 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL20 : { Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL21 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL22 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_COMMENT => // Some code goes here. Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL23 : } Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL24 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL25 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_CLASS => class Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL26 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL27 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => MyClass Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL28 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL29 : { Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL30 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL31 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FUNCTION => function Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL32 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL33 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => MyFunction3 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL34 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL35 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL36 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL37 : { Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL38 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL39 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_COMMENT => // Some code goes here. Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL40 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL41 : } Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL42 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL43 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FUNCTION => function Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL44 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL45 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => MyFunction4 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL46 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL47 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL48 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL49 : { Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL50 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL51 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_COMMENT => // Some code goes here. Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL52 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL53 : } Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL54 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL55 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_PUBLIC => public Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL56 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL57 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FUNCTION => function Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL58 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL59 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => register Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL60 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL61 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL62 : ; Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL63 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL64 : } Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL65 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL66 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_PUBLIC => public Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL67 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL68 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FUNCTION => function Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL69 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL70 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => register Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL71 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL72 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL73 : ; Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL74 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL75 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FUNCTION => function Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL76 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL77 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => foo Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL78 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL79 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL80 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL81 : { Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL82 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL83 : } Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL84 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL85 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FUNCTION => function Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL86 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL87 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => foo Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL88 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL89 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL90 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL91 : { Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL92 : } Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL93 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL94 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FUNCTION => function Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL95 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL96 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => foo Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL97 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL98 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL99 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL100 : { Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL101 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL102 : } Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL103 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL104 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FUNCTION => function Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL105 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL106 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => foo Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL107 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL108 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL109 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL110 : { Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL111 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL112 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FOR => for Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL113 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL114 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL115 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_VARIABLE => $i Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL116 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL117 : = Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL118 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL119 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_LNUMBER => 0 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL120 : ; Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL121 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL122 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_VARIABLE => $i Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL123 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL124 : < Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL125 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL126 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_VARIABLE => $bar Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL127 : ; Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL128 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL129 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_VARIABLE => $i Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL130 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_INC => ++ Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL131 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL132 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL133 : { Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL134 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL135 : } Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL136 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_COMMENT => //end for Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL137 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL138 : } Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL139 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL
Output for 4.3.10 - 4.3.11, 4.4.0 - 4.4.9
0 : T_OPEN_TAG => <?php\n 1 : T_WHITESPACE => \n 2 : T_FUNCTION => function 3 : T_WHITESPACE => 4 : T_STRING => MyFunction1 5 : ( 6 : ) 7 : T_WHITESPACE => 8 : { 9 : T_WHITESPACE => \n 10 : T_COMMENT => // Some code goes here.\n 11 : T_WHITESPACE => \n 12 : } 13 : T_WHITESPACE => \n\n 14 : T_FUNCTION => function 15 : T_WHITESPACE => 16 : T_STRING => MyFunction2 17 : ( 18 : ) 19 : T_WHITESPACE => 20 : { 21 : T_WHITESPACE => \n 22 : T_COMMENT => // Some code goes here.\n 23 : } 24 : T_WHITESPACE => \n\n 25 : T_CLASS => class 26 : T_WHITESPACE => 27 : T_STRING => MyClass 28 : T_WHITESPACE => \n 29 : { 30 : T_WHITESPACE => \n 31 : T_FUNCTION => function 32 : T_WHITESPACE => 33 : T_STRING => MyFunction3 34 : ( 35 : ) 36 : T_WHITESPACE => 37 : { 38 : T_WHITESPACE => \n 39 : T_COMMENT => // Some code goes here.\n 40 : T_WHITESPACE => \n 41 : } 42 : T_WHITESPACE => \n\n 43 : T_FUNCTION => function 44 : T_WHITESPACE => 45 : T_STRING => MyFunction4 46 : ( 47 : ) 48 : T_WHITESPACE => 49 : { 50 : T_WHITESPACE => \n 51 : T_COMMENT => // Some code goes here.\n 52 : T_WHITESPACE => 53 : } 54 : T_WHITESPACE => \n\n 55 : T_STRING => public 56 : T_WHITESPACE => 57 : T_FUNCTION => function 58 : T_WHITESPACE => 59 : T_STRING => register 60 : ( 61 : ) 62 : ; 63 : T_WHITESPACE => \n 64 : } 65 : T_WHITESPACE => \n\n 66 : T_STRING => public 67 : T_WHITESPACE => 68 : T_FUNCTION => function 69 : T_WHITESPACE => 70 : T_STRING => register 71 : ( 72 : ) 73 : ; 74 : T_WHITESPACE => \n\n 75 : T_FUNCTION => function 76 : T_WHITESPACE => 77 : T_STRING => foo 78 : ( 79 : ) 80 : T_WHITESPACE => 81 : { 82 : T_WHITESPACE => 83 : } 84 : T_WHITESPACE => \n 85 : T_FUNCTION => function 86 : T_WHITESPACE => 87 : T_STRING => foo 88 : ( 89 : ) 90 : T_WHITESPACE => 91 : { 92 : } 93 : T_WHITESPACE => \n 94 : T_FUNCTION => function 95 : T_WHITESPACE => 96 : T_STRING => foo 97 : ( 98 : ) 99 : T_WHITESPACE => 100 : { 101 : T_WHITESPACE => \n 102 : } 103 : T_WHITESPACE => \n\n 104 : T_FUNCTION => function 105 : T_WHITESPACE => 106 : T_STRING => foo 107 : ( 108 : ) 109 : T_WHITESPACE => \n 110 : { 111 : T_WHITESPACE => \n 112 : T_FOR => for 113 : T_WHITESPACE => 114 : ( 115 : T_VARIABLE => $i 116 : T_WHITESPACE => 117 : = 118 : T_WHITESPACE => 119 : T_LNUMBER => 0 120 : ; 121 : T_WHITESPACE => 122 : T_VARIABLE => $i 123 : T_WHITESPACE => 124 : < 125 : T_WHITESPACE => 126 : T_VARIABLE => $bar 127 : ; 128 : T_WHITESPACE => 129 : T_VARIABLE => $i 130 : T_INC => ++ 131 : ) 132 : T_WHITESPACE => 133 : { 134 : T_WHITESPACE => \n 135 : } 136 : T_COMMENT => //end for\n 137 : T_WHITESPACE => \n\n 138 : } 139 : T_WHITESPACE => \n
Output for 4.3.0 - 4.3.9
0 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_OPEN_TAG => <?php Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL1 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL2 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FUNCTION => function Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL3 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL4 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => MyFunction1 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL5 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL6 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL7 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL8 : { Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL9 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL10 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_COMMENT => // Some code goes here. Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL11 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL12 : } Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL13 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL14 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FUNCTION => function Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL15 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL16 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => MyFunction2 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL17 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL18 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL19 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL20 : { Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL21 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL22 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_COMMENT => // Some code goes here. Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL23 : } Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL24 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL25 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_CLASS => class Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL26 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL27 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => MyClass Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL28 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL29 : { Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL30 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL31 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FUNCTION => function Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL32 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL33 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => MyFunction3 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL34 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL35 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL36 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL37 : { Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL38 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL39 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_COMMENT => // Some code goes here. Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL40 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL41 : } Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL42 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL43 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FUNCTION => function Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL44 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL45 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => MyFunction4 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL46 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL47 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL48 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL49 : { Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL50 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL51 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_COMMENT => // Some code goes here. Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL52 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL53 : } Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL54 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL55 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => public Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL56 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL57 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FUNCTION => function Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL58 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL59 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => register Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL60 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL61 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL62 : ; Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL63 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL64 : } Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL65 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL66 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => public Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL67 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL68 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FUNCTION => function Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL69 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL70 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => register Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL71 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL72 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL73 : ; Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL74 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL75 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FUNCTION => function Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL76 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL77 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => foo Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL78 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL79 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL80 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL81 : { Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL82 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL83 : } Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL84 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL85 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FUNCTION => function Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL86 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL87 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => foo Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL88 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL89 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL90 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL91 : { Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL92 : } Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL93 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL94 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FUNCTION => function Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL95 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL96 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => foo Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL97 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL98 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL99 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL100 : { Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL101 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL102 : } Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL103 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL104 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FUNCTION => function Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL105 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL106 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_STRING => foo Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL107 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL108 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL109 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL110 : { Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL111 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL112 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_FOR => for Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL113 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL114 : ( Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL115 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_VARIABLE => $i Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL116 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL117 : = Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL118 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL119 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_LNUMBER => 0 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL120 : ; Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL121 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL122 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_VARIABLE => $i Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL123 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL124 : < Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL125 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL126 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_VARIABLE => $bar Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL127 : ; Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL128 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL129 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_VARIABLE => $i Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL130 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_INC => ++ Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL131 : ) Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL132 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL133 : { Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL134 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL135 : } Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL136 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_COMMENT => //end for Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL137 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL138 : } Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL139 : Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 50 T_WHITESPACE => Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/uRLib on line 53 PHP_EOL

preferences:
312.41 ms | 449 KiB | 423 Q