3v4l.org

run code in 300+ PHP versions simultaneously
<?php function strpose_simple($haystack, $needle, $index = 0) { $hlen = strlen($haystack); $nlen = strlen($needle); do { $pos = strpos($haystack, $needle, $index); if ($pos !== false) { $end = $pos+$nlen; if (!isset($haystack[$pos-1]) || !trim($haystack[$pos-1])) { if (!isset($haystack[$end]) || !trim($haystack[$end])) { return $pos; } else $index = $pos+1; } else $index = $pos+1; } } while ($pos !== false && $pos < $hlen); return $pos; } function strpose_slow($haystack, $needle, $offset = 0) { $found = preg_match( '(\b(?:'.preg_quote($needle).')\b)Su', $haystack, $match, PREG_OFFSET_CAPTURE, $offset ); return ($found) ? $match[0][1] : FALSE; } $haystack = "Hello World"; $needles = array( "ll", "Hello", "Worlds" ); foreach (array('strpose_simple', 'strpose_slow') as $function) { $begin = 0; $end = 200000; $start = microtime(true); while ($begin++<$end) { foreach ($needles as $id => $needle) { $function($haystack, $needle); } } printf("%s: %.4f seconds/%d peak\n", $function, microtime(true)-$start, memory_get_usage(true)); }
Output for 7.4.0
strpose_simple: 0.3965 seconds/2097152 peak strpose_slow: 0.5007 seconds/2097152 peak
Output for 7.3.12
strpose_simple: 0.4014 seconds/2097152 peak strpose_slow: 0.4874 seconds/2097152 peak
Output for 7.3.11
strpose_simple: 0.4036 seconds/2097152 peak strpose_slow: 0.4699 seconds/2097152 peak
Output for 7.3.10
strpose_simple: 0.3975 seconds/2097152 peak strpose_slow: 0.4975 seconds/2097152 peak
Output for 7.3.9
strpose_simple: 0.3174 seconds/2097152 peak strpose_slow: 0.4866 seconds/2097152 peak
Output for 7.3.8
strpose_simple: 0.3699 seconds/2097152 peak strpose_slow: 0.4971 seconds/2097152 peak
Output for 7.3.7
strpose_simple: 0.3953 seconds/2097152 peak strpose_slow: 0.4804 seconds/2097152 peak
Output for 7.3.6
strpose_simple: 0.3749 seconds/2097152 peak strpose_slow: 0.4970 seconds/2097152 peak
Output for 7.3.5
strpose_simple: 0.3972 seconds/2097152 peak strpose_slow: 0.4507 seconds/2097152 peak
Output for 7.3.4
strpose_simple: 0.3938 seconds/2097152 peak strpose_slow: 0.4867 seconds/2097152 peak
Output for 7.3.3
strpose_simple: 0.3853 seconds/2097152 peak strpose_slow: 0.3665 seconds/2097152 peak
Output for 7.3.2
strpose_simple: 0.3183 seconds/2097152 peak strpose_slow: 0.4341 seconds/2097152 peak
Output for 7.3.1
strpose_simple: 0.3933 seconds/2097152 peak strpose_slow: 0.4537 seconds/2097152 peak
Output for 7.3.0
strpose_simple: 0.2867 seconds/2097152 peak strpose_slow: 0.3436 seconds/2097152 peak
Output for 7.2.25
strpose_simple: 0.3112 seconds/2097152 peak strpose_slow: 0.4038 seconds/2097152 peak
Output for 7.2.24
strpose_simple: 0.4138 seconds/2097152 peak strpose_slow: 0.5476 seconds/2097152 peak
Output for 7.2.23
strpose_simple: 0.3052 seconds/2097152 peak strpose_slow: 0.3874 seconds/2097152 peak
Output for 7.2.22
strpose_simple: 0.3443 seconds/2097152 peak strpose_slow: 0.5674 seconds/2097152 peak
Output for 7.2.21
strpose_simple: 0.4179 seconds/2097152 peak strpose_slow: 0.4928 seconds/2097152 peak
Output for 7.2.20
strpose_simple: 0.3002 seconds/2097152 peak strpose_slow: 0.4038 seconds/2097152 peak
Output for 7.2.19
strpose_simple: 0.3650 seconds/2097152 peak strpose_slow: 0.4489 seconds/2097152 peak
Output for 7.2.18
strpose_simple: 0.4118 seconds/2097152 peak strpose_slow: 0.4603 seconds/2097152 peak
Output for 7.2.17
strpose_simple: 0.3944 seconds/2097152 peak strpose_slow: 0.3989 seconds/2097152 peak
Output for 7.2.16
strpose_simple: 0.3953 seconds/2097152 peak strpose_slow: 0.4230 seconds/2097152 peak
Output for 7.2.15
strpose_simple: 0.4075 seconds/2097152 peak strpose_slow: 0.4060 seconds/2097152 peak
Output for 7.2.14
strpose_simple: 0.4066 seconds/2097152 peak strpose_slow: 0.4534 seconds/2097152 peak
Output for 7.2.13
strpose_simple: 0.4069 seconds/2097152 peak strpose_slow: 0.5072 seconds/2097152 peak
Output for 7.2.12
strpose_simple: 0.4016 seconds/2097152 peak strpose_slow: 0.5511 seconds/2097152 peak
Output for 7.2.11
strpose_simple: 0.2984 seconds/2097152 peak strpose_slow: 0.3895 seconds/2097152 peak
Output for 7.2.10
strpose_simple: 0.4113 seconds/2097152 peak strpose_slow: 0.5606 seconds/2097152 peak
Output for 7.2.9
strpose_simple: 0.4071 seconds/2097152 peak strpose_slow: 0.4792 seconds/2097152 peak
Output for 7.2.8
strpose_simple: 0.2806 seconds/2097152 peak strpose_slow: 0.3795 seconds/2097152 peak
Output for 7.2.7
strpose_simple: 0.2982 seconds/2097152 peak strpose_slow: 0.4376 seconds/2097152 peak
Output for 7.2.6
strpose_simple: 0.4017 seconds/2097152 peak strpose_slow: 0.4695 seconds/2097152 peak
Output for 7.2.5
strpose_simple: 0.3151 seconds/2097152 peak strpose_slow: 0.3753 seconds/2097152 peak
Output for 7.2.4
strpose_simple: 0.3696 seconds/2097152 peak strpose_slow: 0.3899 seconds/2097152 peak
Output for 7.2.3
strpose_simple: 0.3854 seconds/2097152 peak strpose_slow: 0.5581 seconds/2097152 peak
Output for 7.2.2
strpose_simple: 0.4095 seconds/2097152 peak strpose_slow: 0.5515 seconds/2097152 peak
Output for 7.2.1
strpose_simple: 0.3486 seconds/2097152 peak strpose_slow: 0.4189 seconds/2097152 peak
Output for 7.2.0
strpose_simple: 0.3239 seconds/2097152 peak strpose_slow: 0.5261 seconds/2097152 peak
Output for 7.1.33
strpose_simple: 0.4408 seconds/2097152 peak strpose_slow: 0.5081 seconds/2097152 peak
Output for 7.1.32
strpose_simple: 0.4090 seconds/2097152 peak strpose_slow: 0.5535 seconds/2097152 peak
Output for 7.1.31
strpose_simple: 0.5313 seconds/2097152 peak strpose_slow: 0.4880 seconds/2097152 peak
Output for 7.1.30
strpose_simple: 0.4691 seconds/2097152 peak strpose_slow: 0.7134 seconds/2097152 peak
Output for 7.1.29
strpose_simple: 0.4065 seconds/2097152 peak strpose_slow: 0.4758 seconds/2097152 peak
Output for 7.1.28
strpose_simple: 0.4289 seconds/2097152 peak strpose_slow: 0.7281 seconds/2097152 peak
Output for 7.1.27
strpose_simple: 0.3995 seconds/2097152 peak strpose_slow: 0.6092 seconds/2097152 peak
Output for 7.1.26
strpose_simple: 0.5015 seconds/2097152 peak strpose_slow: 0.7635 seconds/2097152 peak
Output for 7.1.25
strpose_simple: 0.4175 seconds/2097152 peak strpose_slow: 0.5819 seconds/2097152 peak
Output for 7.1.24
strpose_simple: 0.4104 seconds/2097152 peak strpose_slow: 0.5935 seconds/2097152 peak
Output for 7.1.23
strpose_simple: 0.4977 seconds/2097152 peak strpose_slow: 0.7149 seconds/2097152 peak
Output for 7.1.22
strpose_simple: 0.4655 seconds/2097152 peak strpose_slow: 0.5344 seconds/2097152 peak
Output for 7.1.21
strpose_simple: 0.5206 seconds/2097152 peak strpose_slow: 0.7095 seconds/2097152 peak
Output for 7.1.20
strpose_simple: 0.4024 seconds/2097152 peak strpose_slow: 0.5324 seconds/2097152 peak
Output for 7.1.19
strpose_simple: 0.4501 seconds/2097152 peak strpose_slow: 0.5380 seconds/2097152 peak
Output for 7.1.18
strpose_simple: 0.4992 seconds/2097152 peak strpose_slow: 0.7170 seconds/2097152 peak
Output for 7.1.17
strpose_simple: 0.5247 seconds/2097152 peak strpose_slow: 0.5483 seconds/2097152 peak
Output for 7.1.16
strpose_simple: 0.5444 seconds/2097152 peak strpose_slow: 0.5067 seconds/2097152 peak
Output for 7.1.15
strpose_simple: 0.4115 seconds/2097152 peak strpose_slow: 0.5239 seconds/2097152 peak
Output for 7.1.14
strpose_simple: 0.4876 seconds/2097152 peak strpose_slow: 0.5279 seconds/2097152 peak
Output for 7.1.13
strpose_simple: 0.5267 seconds/2097152 peak strpose_slow: 0.6998 seconds/2097152 peak
Output for 7.1.12
strpose_simple: 0.4023 seconds/2097152 peak strpose_slow: 0.5247 seconds/2097152 peak
Output for 7.1.11
strpose_simple: 0.5274 seconds/2097152 peak strpose_slow: 0.7108 seconds/2097152 peak
Output for 7.1.10
strpose_simple: 0.5302 seconds/2097152 peak strpose_slow: 0.6496 seconds/2097152 peak
Output for 7.1.9
strpose_simple: 0.5247 seconds/2097152 peak strpose_slow: 0.6763 seconds/2097152 peak
Output for 7.1.8
strpose_simple: 0.4226 seconds/2097152 peak strpose_slow: 0.5943 seconds/2097152 peak
Output for 7.1.7
strpose_simple: 0.5395 seconds/2097152 peak strpose_slow: 0.6304 seconds/2097152 peak
Output for 7.1.6
strpose_simple: 0.4721 seconds/2097152 peak strpose_slow: 0.7505 seconds/2097152 peak
Output for 7.1.5
strpose_simple: 0.5276 seconds/2097152 peak strpose_slow: 0.6570 seconds/2097152 peak
Output for 7.1.4
strpose_simple: 0.4925 seconds/2097152 peak strpose_slow: 0.7371 seconds/2097152 peak
Output for 7.1.3
strpose_simple: 0.5339 seconds/2097152 peak strpose_slow: 0.6404 seconds/2097152 peak
Output for 7.1.2
strpose_simple: 0.4082 seconds/2097152 peak strpose_slow: 0.5315 seconds/2097152 peak
Output for 7.1.1
strpose_simple: 0.4336 seconds/2097152 peak strpose_slow: 0.5230 seconds/2097152 peak
Output for 7.1.0
strpose_simple: 0.4360 seconds/2097152 peak strpose_slow: 0.5905 seconds/2097152 peak
Output for 7.0.33
strpose_simple: 0.4131 seconds/2097152 peak strpose_slow: 0.7335 seconds/2097152 peak
Output for 7.0.32
strpose_simple: 0.3877 seconds/2097152 peak strpose_slow: 0.4721 seconds/2097152 peak
Output for 7.0.31
strpose_simple: 0.4835 seconds/2097152 peak strpose_slow: 0.7185 seconds/2097152 peak
Output for 7.0.30
strpose_simple: 0.4847 seconds/2097152 peak strpose_slow: 0.6948 seconds/2097152 peak
Output for 7.0.29
strpose_simple: 0.4833 seconds/2097152 peak strpose_slow: 0.7214 seconds/2097152 peak
Output for 7.0.28
strpose_simple: 0.4866 seconds/2097152 peak strpose_slow: 0.6167 seconds/2097152 peak
Output for 7.0.27
strpose_simple: 0.4098 seconds/2097152 peak strpose_slow: 0.5771 seconds/2097152 peak
Output for 7.0.26
strpose_simple: 0.4464 seconds/2097152 peak strpose_slow: 0.6551 seconds/2097152 peak
Output for 7.0.25
strpose_simple: 0.4611 seconds/2097152 peak strpose_slow: 0.7258 seconds/2097152 peak
Output for 7.0.24
strpose_simple: 0.4338 seconds/2097152 peak strpose_slow: 0.5181 seconds/2097152 peak
Output for 7.0.23
strpose_simple: 0.4570 seconds/2097152 peak strpose_slow: 0.6287 seconds/2097152 peak
Output for 7.0.22
strpose_simple: 0.4788 seconds/2097152 peak strpose_slow: 0.7494 seconds/2097152 peak
Output for 7.0.21
strpose_simple: 0.5175 seconds/2097152 peak strpose_slow: 0.7291 seconds/2097152 peak
Output for 7.0.20
strpose_simple: 0.3874 seconds/2097152 peak strpose_slow: 0.5440 seconds/2097152 peak
Output for 7.0.19
strpose_simple: 0.4887 seconds/2097152 peak strpose_slow: 0.6939 seconds/2097152 peak
Output for 7.0.18
strpose_simple: 0.5054 seconds/2097152 peak strpose_slow: 0.7344 seconds/2097152 peak
Output for 7.0.17
strpose_simple: 0.4761 seconds/2097152 peak strpose_slow: 0.7026 seconds/2097152 peak
Output for 7.0.16
strpose_simple: 0.4180 seconds/2097152 peak strpose_slow: 0.5366 seconds/2097152 peak
Output for 7.0.15
strpose_simple: 0.4183 seconds/2097152 peak strpose_slow: 0.5369 seconds/2097152 peak
Output for 7.0.14
strpose_simple: 0.3866 seconds/2097152 peak strpose_slow: 0.7519 seconds/2097152 peak
Output for 7.0.13
strpose_simple: 0.4864 seconds/2097152 peak strpose_slow: 0.6236 seconds/2097152 peak
Output for 7.0.12
strpose_simple: 0.3726 seconds/2097152 peak strpose_slow: 0.4947 seconds/2097152 peak
Output for 7.0.11
strpose_simple: 0.4581 seconds/2097152 peak strpose_slow: 0.7544 seconds/2097152 peak
Output for 7.0.10
strpose_simple: 0.4875 seconds/2097152 peak strpose_slow: 0.6134 seconds/2097152 peak
Output for 7.0.9
strpose_simple: 0.4865 seconds/2097152 peak strpose_slow: 0.6236 seconds/2097152 peak
Output for 7.0.8
strpose_simple: 0.4549 seconds/2097152 peak strpose_slow: 0.5157 seconds/2097152 peak
Output for 7.0.7
strpose_simple: 0.4798 seconds/2097152 peak strpose_slow: 0.5091 seconds/2097152 peak
Output for 7.0.6
strpose_simple: 0.4710 seconds/2097152 peak strpose_slow: 0.7179 seconds/2097152 peak
Output for 7.0.5
strpose_simple: 0.5142 seconds/2097152 peak strpose_slow: 0.5379 seconds/2097152 peak
Output for 7.0.4
strpose_simple: 0.4337 seconds/2097152 peak strpose_slow: 0.6650 seconds/2097152 peak
Output for 7.0.3
strpose_simple: 0.5037 seconds/2097152 peak strpose_slow: 0.7340 seconds/2097152 peak
Output for 7.0.2
strpose_simple: 0.3780 seconds/2097152 peak strpose_slow: 0.5418 seconds/2097152 peak
Output for 7.0.1
strpose_simple: 0.4851 seconds/2097152 peak strpose_slow: 0.7521 seconds/2097152 peak
Output for 7.0.0
strpose_simple: 0.4494 seconds/2097152 peak strpose_slow: 0.5255 seconds/2097152 peak
Output for 5.6.40
strpose_simple: 1.1011 seconds/262144 peak
Process exited with code 137.
Output for 5.6.39
strpose_simple: 1.1955 seconds/262144 peak strpose_slow: 1.2824 seconds/262144 peak
Output for 5.6.38
strpose_simple: 1.0652 seconds/262144 peak strpose_slow: 1.3475 seconds/262144 peak
Output for 5.6.37
strpose_simple: 0.9509 seconds/262144 peak strpose_slow: 1.0956 seconds/262144 peak
Output for 5.6.36
strpose_simple: 1.1362 seconds/262144 peak strpose_slow: 1.2095 seconds/262144 peak
Output for 5.6.35
strpose_simple: 0.9326 seconds/262144 peak strpose_slow: 1.3995 seconds/262144 peak
Output for 5.6.34
strpose_simple: 1.1132 seconds/262144 peak strpose_slow: 1.1296 seconds/262144 peak
Output for 5.6.33
strpose_simple: 0.9076 seconds/262144 peak strpose_slow: 1.3609 seconds/262144 peak
Output for 5.6.32
strpose_simple: 0.9669 seconds/262144 peak strpose_slow: 1.3654 seconds/262144 peak
Output for 5.6.31
strpose_simple: 0.9119 seconds/262144 peak strpose_slow: 1.4114 seconds/262144 peak
Output for 5.6.30
strpose_simple: 1.0758 seconds/262144 peak strpose_slow: 1.1158 seconds/262144 peak
Output for 5.6.29
strpose_simple: 1.0884 seconds/262144 peak strpose_slow: 1.1892 seconds/262144 peak
Output for 5.5.17, 5.6.28
strpose_simple: 1.1387 seconds/262144 peak
Process exited with code 137.
Output for 5.6.27
strpose_simple: 1.0108 seconds/262144 peak strpose_slow: 1.1133 seconds/262144 peak
Output for 5.6.26
strpose_simple: 1.1970 seconds/262144 peak
Process exited with code 137.
Output for 5.6.25
strpose_simple: 1.2045 seconds/262144 peak
Process exited with code 137.
Output for 5.6.24
strpose_simple: 1.0924 seconds/262144 peak
Process exited with code 137.
Output for 5.6.23
strpose_simple: 1.1953 seconds/262144 peak
Process exited with code 137.
Output for 5.6.22
strpose_simple: 1.1900 seconds/262144 peak strpose_slow: 1.1279 seconds/262144 peak
Output for 5.6.21
strpose_simple: 1.1304 seconds/262144 peak strpose_slow: 1.1032 seconds/262144 peak
Output for 5.6.20
strpose_simple: 1.1895 seconds/262144 peak strpose_slow: 1.1131 seconds/262144 peak
Output for 5.6.19
strpose_simple: 1.1949 seconds/262144 peak
Process exited with code 137.
Output for 5.6.18
strpose_simple: 0.8897 seconds/262144 peak strpose_slow: 1.0952 seconds/262144 peak
Output for 5.6.17
strpose_simple: 1.1112 seconds/262144 peak strpose_slow: 1.3750 seconds/262144 peak
Output for 5.6.16
strpose_simple: 1.1552 seconds/262144 peak
Process exited with code 137.
Output for 5.6.15
strpose_simple: 1.1713 seconds/262144 peak
Process exited with code 137.
Output for 5.6.14
strpose_simple: 1.1940 seconds/262144 peak strpose_slow: 1.2952 seconds/262144 peak
Output for 5.6.13
strpose_simple: 1.1747 seconds/262144 peak
Process exited with code 137.
Output for 5.6.12
strpose_simple: 1.2001 seconds/262144 peak strpose_slow: 1.0970 seconds/262144 peak
Output for 5.6.11
strpose_simple: 1.1051 seconds/262144 peak
Process exited with code 137.
Output for 5.6.10
strpose_simple: 1.1923 seconds/262144 peak
Process exited with code 137.
Output for 5.6.9
strpose_simple: 1.1854 seconds/262144 peak
Process exited with code 137.
Output for 5.6.8
strpose_simple: 1.1184 seconds/262144 peak
Process exited with code 137.
Output for 5.6.7
strpose_simple: 0.9997 seconds/262144 peak strpose_slow: 1.2724 seconds/262144 peak
Output for 5.6.6
strpose_simple: 1.1727 seconds/262144 peak
Process exited with code 137.
Output for 5.6.5
strpose_simple: 1.1825 seconds/262144 peak
Process exited with code 137.
Output for 5.6.4
strpose_simple: 1.1852 seconds/262144 peak
Process exited with code 137.
Output for 5.6.3
strpose_simple: 1.1879 seconds/262144 peak
Process exited with code 137.
Output for 5.6.2
strpose_simple: 1.1481 seconds/262144 peak
Process exited with code 137.
Output for 5.6.1
strpose_simple: 0.8578 seconds/262144 peak strpose_slow: 1.1892 seconds/262144 peak
Output for 5.6.0
strpose_simple: 0.9697 seconds/262144 peak strpose_slow: 1.4642 seconds/262144 peak
Output for 5.5.38
strpose_simple: 0.9731 seconds/262144 peak strpose_slow: 1.1228 seconds/262144 peak
Output for 5.5.37
strpose_simple: 0.9771 seconds/262144 peak strpose_slow: 1.4043 seconds/262144 peak
Output for 5.5.36
strpose_simple: 1.0534 seconds/262144 peak
Process exited with code 137.
Output for 5.5.35
strpose_simple: 1.1728 seconds/262144 peak
Process exited with code 137.
Output for 5.5.34
strpose_simple: 1.0035 seconds/262144 peak strpose_slow: 1.1999 seconds/262144 peak
Output for 5.5.33
strpose_simple: 0.8837 seconds/262144 peak strpose_slow: 1.1947 seconds/262144 peak
Output for 5.5.32
strpose_simple: 1.1681 seconds/262144 peak
Process exited with code 137.
Output for 5.5.31
strpose_simple: 1.0112 seconds/262144 peak strpose_slow: 1.0331 seconds/262144 peak
Output for 5.5.30
strpose_simple: 1.0861 seconds/262144 peak strpose_slow: 1.0756 seconds/262144 peak
Output for 5.5.29
strpose_simple: 0.8578 seconds/262144 peak strpose_slow: 1.1189 seconds/262144 peak
Output for 5.5.28
strpose_simple: 1.2118 seconds/262144 peak
Process exited with code 137.
Output for 5.5.27
strpose_simple: 0.9059 seconds/262144 peak strpose_slow: 1.0956 seconds/262144 peak
Output for 5.5.26
strpose_simple: 0.9987 seconds/262144 peak strpose_slow: 1.0781 seconds/262144 peak
Output for 5.5.25
strpose_simple: 1.1993 seconds/262144 peak
Process exited with code 137.
Output for 5.5.24
strpose_simple: 1.2203 seconds/262144 peak
Process exited with code 137.
Output for 5.5.23
strpose_simple: 1.2128 seconds/262144 peak strpose_slow: 1.2440 seconds/262144 peak
Output for 5.5.22
strpose_simple: 1.1636 seconds/262144 peak strpose_slow: 1.0032 seconds/262144 peak
Output for 5.5.21
strpose_simple: 1.2096 seconds/262144 peak strpose_slow: 1.1182 seconds/262144 peak
Output for 5.5.20
strpose_simple: 0.8957 seconds/262144 peak strpose_slow: 1.0792 seconds/262144 peak
Output for 5.5.19
strpose_simple: 1.2132 seconds/262144 peak
Process exited with code 137.
Output for 5.5.18
strpose_simple: 1.2087 seconds/262144 peak
Process exited with code 137.
Output for 5.5.16
strpose_simple: 1.1300 seconds/262144 peak
Process exited with code 137.
Output for 5.5.15
strpose_simple: 0.9933 seconds/262144 peak strpose_slow: 1.2696 seconds/262144 peak
Output for 5.5.14
strpose_simple: 1.2048 seconds/262144 peak strpose_slow: 1.1326 seconds/262144 peak
Output for 5.5.13
strpose_simple: 1.1954 seconds/262144 peak strpose_slow: 1.2264 seconds/262144 peak
Output for 5.5.12
strpose_simple: 1.1961 seconds/262144 peak
Process exited with code 137.
Output for 5.5.11
strpose_simple: 1.0710 seconds/262144 peak
Process exited with code 137.
Output for 5.5.10
strpose_simple: 0.9093 seconds/262144 peak strpose_slow: 1.1005 seconds/262144 peak
Output for 5.5.9
strpose_simple: 1.1910 seconds/262144 peak
Process exited with code 137.
Output for 5.5.8
strpose_simple: 1.2096 seconds/262144 peak
Process exited with code 137.
Output for 5.5.7
strpose_simple: 1.1629 seconds/262144 peak strpose_slow: 0.9962 seconds/262144 peak
Output for 5.5.6
strpose_simple: 1.0911 seconds/262144 peak strpose_slow: 1.2399 seconds/262144 peak
Output for 5.5.5
strpose_simple: 1.1988 seconds/262144 peak
Process exited with code 137.
Output for 5.5.4
strpose_simple: 0.9965 seconds/262144 peak strpose_slow: 1.3492 seconds/262144 peak
Output for 5.5.3
strpose_simple: 1.1219 seconds/262144 peak
Process exited with code 137.
Output for 5.5.2
strpose_simple: 0.9708 seconds/262144 peak strpose_slow: 1.0487 seconds/262144 peak
Output for 5.5.1
strpose_simple: 1.2030 seconds/262144 peak
Process exited with code 137.
Output for 5.5.0
strpose_simple: 1.1905 seconds/262144 peak
Process exited with code 137.
Output for 5.4.45
strpose_simple: 0.9311 seconds/262144 peak strpose_slow: 1.1181 seconds/262144 peak
Output for 5.4.44
strpose_simple: 1.1105 seconds/262144 peak
Process exited with code 137.
Output for 5.4.43
strpose_simple: 1.1101 seconds/262144 peak
Process exited with code 137.
Output for 5.4.42
strpose_simple: 1.0676 seconds/262144 peak strpose_slow: 1.2397 seconds/262144 peak
Output for 5.4.41
strpose_simple: 0.9375 seconds/262144 peak strpose_slow: 1.1343 seconds/262144 peak
Output for 5.4.40
strpose_simple: 0.8624 seconds/262144 peak strpose_slow: 1.1687 seconds/262144 peak
Output for 5.4.39
strpose_simple: 1.0762 seconds/262144 peak strpose_slow: 1.0936 seconds/262144 peak
Output for 5.4.38
strpose_simple: 1.2008 seconds/262144 peak
Process exited with code 137.
Output for 5.4.37
strpose_simple: 1.1770 seconds/262144 peak
Process exited with code 137.
Output for 5.4.36
strpose_simple: 0.9534 seconds/262144 peak strpose_slow: 1.0244 seconds/262144 peak
Output for 5.4.35
strpose_simple: 1.0413 seconds/262144 peak strpose_slow: 1.1227 seconds/262144 peak
Output for 5.4.34
strpose_simple: 0.9471 seconds/262144 peak strpose_slow: 1.2788 seconds/262144 peak
Output for 5.4.33
strpose_simple: 1.1515 seconds/262144 peak strpose_slow: 1.1607 seconds/262144 peak
Output for 5.4.32
strpose_simple: 1.0491 seconds/262144 peak strpose_slow: 1.4353 seconds/262144 peak
Output for 5.4.31
strpose_simple: 1.0168 seconds/262144 peak strpose_slow: 1.0945 seconds/262144 peak
Output for 5.4.30
strpose_simple: 0.9099 seconds/262144 peak strpose_slow: 1.0249 seconds/262144 peak
Output for 5.4.29
strpose_simple: 1.2278 seconds/262144 peak
Process exited with code 137.
Output for 5.4.28
strpose_simple: 1.0965 seconds/262144 peak strpose_slow: 1.0598 seconds/262144 peak
Output for 5.4.27
strpose_simple: 1.2418 seconds/262144 peak
Process exited with code 137.
Output for 5.4.26
strpose_simple: 1.2328 seconds/262144 peak
Process exited with code 137.
Output for 5.4.25
strpose_simple: 0.9725 seconds/262144 peak strpose_slow: 1.1096 seconds/262144 peak
Output for 5.4.24
strpose_simple: 1.1917 seconds/262144 peak
Process exited with code 137.
Output for 5.4.23
strpose_simple: 1.1327 seconds/262144 peak
Process exited with code 137.
Output for 5.4.22
strpose_simple: 1.2289 seconds/262144 peak
Process exited with code 137.
Output for 5.4.21
strpose_simple: 1.2335 seconds/262144 peak
Process exited with code 137.
Output for 5.4.20
strpose_simple: 1.1247 seconds/262144 peak strpose_slow: 1.1072 seconds/262144 peak
Output for 5.4.19
strpose_simple: 1.1321 seconds/262144 peak
Process exited with code 137.
Output for 5.4.18
strpose_simple: 1.0206 seconds/262144 peak strpose_slow: 1.0830 seconds/262144 peak
Output for 5.4.17
strpose_simple: 1.2287 seconds/262144 peak
Process exited with code 137.
Output for 5.4.16
strpose_simple: 1.2283 seconds/262144 peak strpose_slow: 1.1318 seconds/262144 peak
Output for 5.4.15
strpose_simple: 0.9409 seconds/262144 peak strpose_slow: 1.4799 seconds/262144 peak
Output for 5.4.14
strpose_simple: 1.1932 seconds/262144 peak strpose_slow: 1.2554 seconds/262144 peak
Output for 5.4.13
strpose_simple: 1.2487 seconds/262144 peak strpose_slow: 1.1528 seconds/262144 peak
Output for 5.4.12
strpose_simple: 0.9179 seconds/262144 peak strpose_slow: 1.0927 seconds/262144 peak
Output for 5.4.11
strpose_simple: 1.0587 seconds/262144 peak strpose_slow: 1.2251 seconds/262144 peak
Output for 5.4.10
strpose_simple: 1.0607 seconds/262144 peak strpose_slow: 1.0600 seconds/262144 peak
Output for 5.4.9
strpose_simple: 1.2314 seconds/262144 peak
Process exited with code 137.
Output for 5.4.8
strpose_simple: 1.2231 seconds/262144 peak
Process exited with code 137.
Output for 5.4.7
strpose_simple: 0.8772 seconds/262144 peak strpose_slow: 1.4542 seconds/262144 peak
Output for 5.4.6
strpose_simple: 1.2419 seconds/262144 peak
Process exited with code 137.
Output for 5.4.5
strpose_simple: 1.2299 seconds/262144 peak
Process exited with code 137.
Output for 5.4.4
strpose_simple: 0.9528 seconds/262144 peak strpose_slow: 1.1258 seconds/262144 peak
Output for 5.4.3
strpose_simple: 1.2291 seconds/262144 peak
Process exited with code 137.
Output for 5.4.2
strpose_simple: 1.1941 seconds/262144 peak
Process exited with code 137.
Output for 5.4.1
strpose_simple: 1.2405 seconds/262144 peak
Process exited with code 137.
Output for 5.4.0
strpose_simple: 1.2168 seconds/262144 peak
Process exited with code 137.
Output for 5.3.29
strpose_simple: 1.4374 seconds/786432 peak
Process exited with code 137.
Output for 5.3.28
strpose_simple: 1.2060 seconds/786432 peak strpose_slow: 1.2165 seconds/786432 peak
Output for 5.3.27
strpose_simple: 1.3649 seconds/786432 peak
Process exited with code 137.
Output for 5.3.26
strpose_simple: 1.1280 seconds/786432 peak strpose_slow: 1.1135 seconds/786432 peak
Output for 5.3.25
strpose_simple: 1.2582 seconds/786432 peak
Process exited with code 137.
Output for 5.3.24
strpose_simple: 1.4481 seconds/786432 peak
Process exited with code 137.
Output for 5.3.23
strpose_simple: 1.3619 seconds/786432 peak
Process exited with code 137.
Output for 5.3.22
strpose_simple: 1.4825 seconds/786432 peak
Process exited with code 137.
Output for 5.3.21
strpose_simple: 1.4405 seconds/786432 peak
Process exited with code 137.
Output for 5.3.20
strpose_simple: 1.3894 seconds/786432 peak
Process exited with code 137.
Output for 5.3.19
strpose_simple: 1.2527 seconds/786432 peak strpose_slow: 1.2089 seconds/786432 peak
Output for 5.3.18
strpose_simple: 1.3092 seconds/786432 peak
Process exited with code 137.
Output for 5.3.17
strpose_simple: 1.4523 seconds/786432 peak
Process exited with code 137.
Output for 5.3.16
strpose_simple: 1.2906 seconds/786432 peak
Process exited with code 137.
Output for 5.3.15
strpose_simple: 1.2877 seconds/786432 peak strpose_slow: 1.1940 seconds/786432 peak
Output for 5.3.14
strpose_simple: 1.4372 seconds/786432 peak
Process exited with code 137.
Output for 5.3.13
strpose_simple: 1.3949 seconds/786432 peak
Process exited with code 137.
Output for 5.3.12
strpose_simple: 1.1950 seconds/786432 peak
Process exited with code 137.
Output for 5.3.11
strpose_simple: 1.2614 seconds/786432 peak strpose_slow: 1.2244 seconds/786432 peak
Output for 5.3.10
strpose_simple: 1.3104 seconds/786432 peak
Process exited with code 137.
Output for 5.3.9
strpose_simple: 1.4192 seconds/786432 peak
Process exited with code 137.
Output for 5.3.8
strpose_simple: 1.2137 seconds/786432 peak strpose_slow: 1.2290 seconds/786432 peak
Output for 5.3.7
strpose_simple: 1.4649 seconds/786432 peak
Process exited with code 137.
Output for 5.3.6
strpose_simple: 1.4487 seconds/786432 peak
Process exited with code 137.
Output for 5.3.5
strpose_simple: 1.4145 seconds/786432 peak
Process exited with code 137.
Output for 5.3.4
strpose_simple: 1.4855 seconds/786432 peak
Process exited with code 137.
Output for 5.3.3
strpose_simple: 1.4307 seconds/786432 peak
Process exited with code 137.
Output for 5.3.2
strpose_simple: 1.3960 seconds/786432 peak strpose_slow: 1.0526 seconds/786432 peak
Output for 5.3.1
strpose_simple: 1.2157 seconds/786432 peak strpose_slow: 1.0443 seconds/786432 peak
Output for 5.3.0
strpose_simple: 1.0925 seconds/786432 peak strpose_slow: 1.1777 seconds/786432 peak
Output for 5.2.17
strpose_simple: 0.7559 seconds/262144 peak strpose_slow: 0.6407 seconds/262144 peak
Output for 5.2.16
strpose_simple: 0.8011 seconds/262144 peak strpose_slow: 0.6568 seconds/262144 peak
Output for 5.2.15
strpose_simple: 0.8276 seconds/262144 peak strpose_slow: 0.6343 seconds/262144 peak
Output for 5.2.14
strpose_simple: 0.7631 seconds/262144 peak strpose_slow: 0.6492 seconds/262144 peak
Output for 5.2.13
strpose_simple: 0.7555 seconds/262144 peak strpose_slow: 0.6424 seconds/262144 peak
Output for 5.2.12
strpose_simple: 0.6743 seconds/262144 peak strpose_slow: 0.6258 seconds/262144 peak
Output for 5.2.11
strpose_simple: 0.8035 seconds/262144 peak strpose_slow: 0.6856 seconds/262144 peak
Output for 5.2.10
strpose_simple: 0.7484 seconds/262144 peak strpose_slow: 0.6309 seconds/262144 peak
Output for 5.2.9
strpose_simple: 0.6198 seconds/262144 peak strpose_slow: 0.6294 seconds/262144 peak
Output for 5.2.8
strpose_simple: 0.6799 seconds/262144 peak strpose_slow: 0.6221 seconds/262144 peak
Output for 5.2.7
strpose_simple: 0.6558 seconds/262144 peak strpose_slow: 0.6198 seconds/262144 peak
Output for 5.2.6
strpose_simple: 0.8110 seconds/262144 peak strpose_slow: 0.6185 seconds/262144 peak
Output for 5.2.5
strpose_simple: 0.7506 seconds/262144 peak strpose_slow: 0.6853 seconds/262144 peak
Output for 5.2.4
strpose_simple: 0.6137 seconds/262144 peak strpose_slow: 0.6526 seconds/262144 peak
Output for 5.2.3
strpose_simple: 0.7529 seconds/262144 peak strpose_slow: 0.6750 seconds/262144 peak
Output for 5.2.2
strpose_simple: 0.7569 seconds/262144 peak strpose_slow: 0.6777 seconds/262144 peak
Output for 5.2.1
strpose_simple: 0.7233 seconds/262144 peak strpose_slow: 0.7563 seconds/262144 peak
Output for 5.0.3 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0
Fatal error: Call to undefined function memory_get_usage() in /in/Q6VT8 on line 50
Process exited with code 255.
Output for 4.3.0 - 4.3.2, 5.0.0 - 5.0.2
Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string offset: -1 in /in/Q6VT8 on line 12 Notice: Uninitialized string of
Process exited with code 137.
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: memory_get_usage() in /in/Q6VT8 on line 50
Process exited with code 255.
Output for 4.3.3 - 4.3.11, 4.4.0 - 4.4.4
Fatal error: Call to undefined function: memory_get_usage() in /in/Q6VT8 on line 50
Process exited with code 255.

preferences:
257.99 ms | 402 KiB | 322 Q