3v4l.org

run code in 300+ PHP versions simultaneously
<?php session_start(); $classes = get_declared_classes(); $methods = array('get_class_methods' => array(), 'ReflectionClass' => array()); $before = microtime(true); foreach($classes as $class) { $methods['get_class_methods'][$class][] = get_class_methods($class); } $after = ( microtime(true) - $before); @$_SESSION['get_class_methods'][] = $after; $result = array_sum($_SESSION['get_class_methods']) / count(array_filter($_SESSION['get_class_methods'])); echo '<h1>'; echo "get_class_methods: " . number_format($result, 4) . " Seconds"; echo '</h1>'; $before = microtime(true); foreach($classes as $class) { $reflection = new ReflectionClass ( $class ); foreach($reflection->getMethods() as $method) { $methods['ReflectionClass'][$class][] = $method->name; } } $after = ( microtime(true) - $before); @$_SESSION['ReflectionClass'][] = $after; $results = array('get_class_methods' => $result); $result = array_sum($_SESSION['ReflectionClass']) / count(array_filter($_SESSION['ReflectionClass'])); $results['ReflectionClass'] = $result; echo '<h1>'; echo "ReflectionClass: " . number_format($result, 4) . " Seconds"; echo '</h1>'; asort($results); echo '<h1>'; echo key($results)." is " . round(next($results)/prev($results)) . "x faster than "; next($results); echo key($results); echo '</h1>';
Output for 7.2.0
<h1>get_class_methods: 0.0001 Seconds</h1><h1>ReflectionClass: 0.0011 Seconds</h1><h1>get_class_methods is 7x faster than ReflectionClass</h1>
Output for 7.1.7
<h1>get_class_methods: 0.0001 Seconds</h1><h1>ReflectionClass: 0.0006 Seconds</h1><h1>get_class_methods is 7x faster than ReflectionClass</h1>
Output for 7.1.6
<h1>get_class_methods: 0.0001 Seconds</h1><h1>ReflectionClass: 0.0007 Seconds</h1><h1>get_class_methods is 5x faster than ReflectionClass</h1>
Output for 7.0.1, 7.1.5
<h1>get_class_methods: 0.0002 Seconds</h1><h1>ReflectionClass: 0.0014 Seconds</h1><h1>get_class_methods is 7x faster than ReflectionClass</h1>
Output for 7.1.0
<h1>get_class_methods: 0.0001 Seconds</h1><h1>ReflectionClass: 0.0011 Seconds</h1><h1>get_class_methods is 9x faster than ReflectionClass</h1>
Output for 7.0.20
<h1>get_class_methods: 0.0002 Seconds</h1><h1>ReflectionClass: 0.0015 Seconds</h1><h1>get_class_methods is 8x faster than ReflectionClass</h1>
Output for 7.0.14
<h1>get_class_methods: 0.0001 Seconds</h1><h1>ReflectionClass: 0.0010 Seconds</h1><h1>get_class_methods is 9x faster than ReflectionClass</h1>
Output for 7.0.6
<h1>get_class_methods: 0.0002 Seconds</h1><h1>ReflectionClass: 0.0007 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 7.0.5
<h1>get_class_methods: 0.0003 Seconds</h1><h1>ReflectionClass: 0.0008 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 7.0.4
<h1>get_class_methods: 0.0001 Seconds</h1><h1>ReflectionClass: 0.0008 Seconds</h1><h1>get_class_methods is 5x faster than ReflectionClass</h1>
Output for 7.0.3
<h1>get_class_methods: 0.0001 Seconds</h1><h1>ReflectionClass: 0.0006 Seconds</h1><h1>get_class_methods is 5x faster than ReflectionClass</h1>
Output for 7.0.2
<h1>get_class_methods: 0.0001 Seconds</h1><h1>ReflectionClass: 0.0009 Seconds</h1><h1>get_class_methods is 8x faster than ReflectionClass</h1>
Output for 7.0.0
<h1>get_class_methods: 0.0001 Seconds</h1><h1>ReflectionClass: 0.0009 Seconds</h1><h1>get_class_methods is 7x faster than ReflectionClass</h1>
Output for 5.6.14, 5.6.28
<h1>get_class_methods: 0.0007 Seconds</h1><h1>ReflectionClass: 0.0025 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.6.21
<h1>get_class_methods: 0.0008 Seconds</h1><h1>ReflectionClass: 0.0024 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.4.13, 5.4.16 - 5.4.17, 5.4.20, 5.4.25 - 5.4.27, 5.6.20
<h1>get_class_methods: 0.0005 Seconds</h1><h1>ReflectionClass: 0.0016 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.6.19
<h1>get_class_methods: 0.0008 Seconds</h1><h1>ReflectionClass: 0.0022 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.3.1, 5.6.18
<h1>get_class_methods: 0.0009 Seconds</h1><h1>ReflectionClass: 0.0028 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.5.26, 5.5.31, 5.6.8, 5.6.12, 5.6.17
<h1>get_class_methods: 0.0007 Seconds</h1><h1>ReflectionClass: 0.0021 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.6.10, 5.6.16
<h1>get_class_methods: 0.0006 Seconds</h1><h1>ReflectionClass: 0.0018 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.6.15
<h1>get_class_methods: 0.0005 Seconds</h1><h1>ReflectionClass: 0.0013 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.6.13
<h1>get_class_methods: 0.0006 Seconds</h1><h1>ReflectionClass: 0.0020 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.4.28, 5.4.37, 5.6.11
<h1>get_class_methods: 0.0006 Seconds</h1><h1>ReflectionClass: 0.0019 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.6.9
<h1>get_class_methods: 0.0007 Seconds</h1><h1>ReflectionClass: 0.0023 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.3.5, 5.4.0, 5.4.2 - 5.4.3, 5.4.12, 5.4.18, 5.4.31, 5.6.7
<h1>get_class_methods: 0.0004 Seconds</h1><h1>ReflectionClass: 0.0016 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.4.42, 5.5.35
<h1>get_class_methods: 0.0007 Seconds</h1><h1>ReflectionClass: 0.0022 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.5.34
<h1>get_class_methods: 0.0006 Seconds</h1><h1>ReflectionClass: 0.0013 Seconds</h1><h1>get_class_methods is 2x faster than ReflectionClass</h1>
Output for 5.5.33
<h1>get_class_methods: 0.0010 Seconds</h1><h1>ReflectionClass: 0.0028 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.5.32
<h1>get_class_methods: 0.0008 Seconds</h1><h1>ReflectionClass: 0.0021 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.5.30
<h1>get_class_methods: 0.0006 Seconds</h1><h1>ReflectionClass: 0.0021 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.4.8, 5.4.22 - 5.4.23, 5.5.24, 5.5.27 - 5.5.29
<h1>get_class_methods: 0.0005 Seconds</h1><h1>ReflectionClass: 0.0015 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.2.11, 5.5.25
<h1>get_class_methods: 0.0008 Seconds</h1><h1>ReflectionClass: 0.0023 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.4.45
<h1>get_class_methods: 0.0007 Seconds</h1><h1>ReflectionClass: 0.0055 Seconds</h1><h1>get_class_methods is 8x faster than ReflectionClass</h1>
Output for 5.4.44
<h1>get_class_methods: 0.0012 Seconds</h1><h1>ReflectionClass: 0.0062 Seconds</h1><h1>get_class_methods is 5x faster than ReflectionClass</h1>
Output for 5.4.43
<h1>get_class_methods: 0.0010 Seconds</h1><h1>ReflectionClass: 0.0043 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.4.41
<h1>get_class_methods: 0.0011 Seconds</h1><h1>ReflectionClass: 0.0031 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.4.39 - 5.4.40
<h1>get_class_methods: 0.0015 Seconds</h1><h1>ReflectionClass: 0.0046 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.4.38
<h1>get_class_methods: 0.0008 Seconds</h1><h1>ReflectionClass: 0.0025 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.4.36
<h1>get_class_methods: 0.0008 Seconds</h1><h1>ReflectionClass: 0.0033 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.4.29, 5.4.35
<h1>get_class_methods: 0.0004 Seconds</h1><h1>ReflectionClass: 0.0017 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.3.4, 5.3.6, 5.4.34
<h1>get_class_methods: 0.0005 Seconds</h1><h1>ReflectionClass: 0.0018 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.2.12 - 5.2.13, 5.2.17, 5.4.32
<h1>get_class_methods: 0.0006 Seconds</h1><h1>ReflectionClass: 0.0022 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.3.14, 5.4.1, 5.4.4, 5.4.14 - 5.4.15, 5.4.21, 5.4.30
<h1>get_class_methods: 0.0005 Seconds</h1><h1>ReflectionClass: 0.0017 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.4.24
<h1>get_class_methods: 0.0005 Seconds</h1><h1>ReflectionClass: 0.0021 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.4.9, 5.4.19
<h1>get_class_methods: 0.0005 Seconds</h1><h1>ReflectionClass: 0.0016 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.3.3, 5.3.11, 5.4.11
<h1>get_class_methods: 0.0005 Seconds</h1><h1>ReflectionClass: 0.0017 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.4.5, 5.4.10
<h1>get_class_methods: 0.0004 Seconds</h1><h1>ReflectionClass: 0.0015 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.4.7
<h1>get_class_methods: 0.0005 Seconds</h1><h1>ReflectionClass: 0.0019 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.4.6
<h1>get_class_methods: 0.0004 Seconds</h1><h1>ReflectionClass: 0.0021 Seconds</h1><h1>get_class_methods is 5x faster than ReflectionClass</h1>
Output for 5.3.29
<h1>get_class_methods: 0.0004 Seconds</h1><h1>ReflectionClass: 0.0047 Seconds</h1><h1>get_class_methods is 11x faster than ReflectionClass</h1>
Output for 5.3.28
<h1>get_class_methods: 0.0008 Seconds</h1><h1>ReflectionClass: 0.0034 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.3.26 - 5.3.27
<h1>get_class_methods: 0.0004 Seconds</h1><h1>ReflectionClass: 0.0020 Seconds</h1><h1>get_class_methods is 5x faster than ReflectionClass</h1>
Output for 5.3.7, 5.3.18 - 5.3.19, 5.3.25
<h1>get_class_methods: 0.0004 Seconds</h1><h1>ReflectionClass: 0.0018 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.3.24
<h1>get_class_methods: 0.0004 Seconds</h1><h1>ReflectionClass: 0.0018 Seconds</h1><h1>get_class_methods is 5x faster than ReflectionClass</h1>
Output for 5.3.23
<h1>get_class_methods: 0.0010 Seconds</h1><h1>ReflectionClass: 0.0033 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.3.21 - 5.3.22
<h1>get_class_methods: 0.0004 Seconds</h1><h1>ReflectionClass: 0.0019 Seconds</h1><h1>get_class_methods is 5x faster than ReflectionClass</h1>
Output for 5.3.0, 5.3.20
<h1>get_class_methods: 0.0005 Seconds</h1><h1>ReflectionClass: 0.0020 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.3.13, 5.3.15, 5.3.17
<h1>get_class_methods: 0.0005 Seconds</h1><h1>ReflectionClass: 0.0019 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.3.16
<h1>get_class_methods: 0.0006 Seconds</h1><h1>ReflectionClass: 0.0025 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.3.12
<h1>get_class_methods: 0.0006 Seconds</h1><h1>ReflectionClass: 0.0024 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.3.10
<h1>get_class_methods: 0.0006 Seconds</h1><h1>ReflectionClass: 0.0023 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.3.9
<h1>get_class_methods: 0.0006 Seconds</h1><h1>ReflectionClass: 0.0020 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.3.8
<h1>get_class_methods: 0.0008 Seconds</h1><h1>ReflectionClass: 0.0032 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.3.2
<h1>get_class_methods: 0.0005 Seconds</h1><h1>ReflectionClass: 0.0018 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.2.16
<h1>get_class_methods: 0.0008 Seconds</h1><h1>ReflectionClass: 0.0014 Seconds</h1><h1>get_class_methods is 2x faster than ReflectionClass</h1>
Output for 5.2.15
<h1>get_class_methods: 0.0003 Seconds</h1><h1>ReflectionClass: 0.0014 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.2.14
<h1>get_class_methods: 0.0007 Seconds</h1><h1>ReflectionClass: 0.0027 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.2.8, 5.2.10
<h1>get_class_methods: 0.0003 Seconds</h1><h1>ReflectionClass: 0.0013 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.2.7, 5.2.9
<h1>get_class_methods: 0.0003 Seconds</h1><h1>ReflectionClass: 0.0012 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.2.6
<h1>get_class_methods: 0.0004 Seconds</h1><h1>ReflectionClass: 0.0013 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.2.5
<h1>get_class_methods: 0.0008 Seconds</h1><h1>ReflectionClass: 0.0026 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.2.4
<h1>get_class_methods: 0.0005 Seconds</h1><h1>ReflectionClass: 0.0014 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.2.3
<h1>get_class_methods: 0.0004 Seconds</h1><h1>ReflectionClass: 0.0013 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.2.2
Warning: session_start(): Cannot send session cookie - headers already sent in /in/57pnv on line 2 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/57pnv:2) in /in/57pnv on line 2 <h1>get_class_methods: 0.0057 Seconds</h1><h1>ReflectionClass: 0.0067 Seconds</h1><h1>get_class_methods is 1x faster than ReflectionClass</h1>
Output for 5.2.1
Warning: session_start(): Cannot send session cookie - headers already sent in /in/57pnv on line 2 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/57pnv:2) in /in/57pnv on line 2 <h1>get_class_methods: 0.0008 Seconds</h1><h1>ReflectionClass: 0.0018 Seconds</h1><h1>get_class_methods is 2x faster than ReflectionClass</h1>
Output for 5.2.0
Warning: session_start(): Cannot send session cookie - headers already sent in /in/57pnv on line 2 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/57pnv:2) in /in/57pnv on line 2 <h1>get_class_methods: 0.0009 Seconds</h1><h1>ReflectionClass: 0.0037 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.1.6
Warning: session_start(): Cannot send session cookie - headers already sent in /in/57pnv on line 2 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/57pnv:2) in /in/57pnv on line 2 <h1>get_class_methods: 0.0011 Seconds</h1><h1>ReflectionClass: 0.0129 Seconds</h1><h1>get_class_methods is 11x faster than ReflectionClass</h1>
Output for 5.1.5
Warning: session_start(): Cannot send session cookie - headers already sent in /in/57pnv on line 2 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/57pnv:2) in /in/57pnv on line 2 <h1>get_class_methods: 0.0010 Seconds</h1><h1>ReflectionClass: 0.0024 Seconds</h1><h1>get_class_methods is 2x faster than ReflectionClass</h1>
Output for 5.1.4
Warning: session_start(): Cannot send session cookie - headers already sent in /in/57pnv on line 2 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/57pnv:2) in /in/57pnv on line 2 <h1>get_class_methods: 0.0015 Seconds</h1><h1>ReflectionClass: 0.0040 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.1.3
Warning: session_start(): Cannot send session cookie - headers already sent in /in/57pnv on line 2 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/57pnv:2) in /in/57pnv on line 2 <h1>get_class_methods: 0.0011 Seconds</h1><h1>ReflectionClass: 0.0023 Seconds</h1><h1>get_class_methods is 2x faster than ReflectionClass</h1>
Output for 5.1.2
Warning: session_start(): Cannot send session cookie - headers already sent in /in/57pnv on line 2 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/57pnv:2) in /in/57pnv on line 2 <h1>get_class_methods: 0.0008 Seconds</h1><h1>ReflectionClass: 0.0027 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.1.1
Warning: session_start(): Cannot send session cookie - headers already sent in /in/57pnv on line 2 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/57pnv:2) in /in/57pnv on line 2 <h1>get_class_methods: 0.0005 Seconds</h1><h1>ReflectionClass: 0.0016 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.1.0
Warning: session_start(): Cannot send session cookie - headers already sent in /in/57pnv on line 2 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/57pnv:2) in /in/57pnv on line 2 <h1>get_class_methods: 0.0014 Seconds</h1><h1>ReflectionClass: 0.0037 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.0.5
Warning: session_start(): Cannot send session cookie - headers already sent in /in/57pnv on line 2 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/57pnv:2) in /in/57pnv on line 2 <h1>get_class_methods: 0.0006 Seconds</h1><h1>ReflectionClass: 0.0021 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.0.4
Warning: session_start(): Cannot send session cookie - headers already sent in /in/57pnv on line 2 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/57pnv:2) in /in/57pnv on line 2 <h1>get_class_methods: 0.0006 Seconds</h1><h1>ReflectionClass: 0.0022 Seconds</h1><h1>get_class_methods is 4x faster than ReflectionClass</h1>
Output for 5.0.3
Warning: session_start(): Cannot send session cookie - headers already sent in /in/57pnv on line 2 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/57pnv:2) in /in/57pnv on line 2 <h1>get_class_methods: 0.0006 Seconds</h1><h1>ReflectionClass: 0.0012 Seconds</h1><h1>get_class_methods is 2x faster than ReflectionClass</h1>
Output for 5.0.2
Warning: session_start(): Cannot send session cookie - headers already sent in /in/57pnv on line 2 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/57pnv:2) in /in/57pnv on line 2 <h1>get_class_methods: 0.0007 Seconds</h1><h1>ReflectionClass: 0.0023 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.0.1
Warning: session_start(): Cannot send session cookie - headers already sent in /in/57pnv on line 2 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/57pnv:2) in /in/57pnv on line 2 <h1>get_class_methods: 0.0005 Seconds</h1><h1>ReflectionClass: 0.0014 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 5.0.0
Warning: session_start(): Cannot send session cookie - headers already sent in /in/57pnv on line 2 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/57pnv:2) in /in/57pnv on line 2 <h1>get_class_methods: 0.0004 Seconds</h1><h1>ReflectionClass: 0.0013 Seconds</h1><h1>get_class_methods is 3x faster than ReflectionClass</h1>
Output for 4.3.3 - 4.3.11, 4.4.0 - 4.4.2, 4.4.4 - 4.4.9
Warning: session_start(): Cannot send session cookie - headers already sent in /in/57pnv on line 2 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/57pnv:2) in /in/57pnv on line 2 <h1>get_class_methods: 0.0000 Seconds</h1> Fatal error: Cannot instantiate non-existent class: reflectionclass in /in/57pnv on line 22
Process exited with code 255.
Output for 4.3.2, 4.4.3
Warning: session_start(): Cannot send session cookie - headers already sent in /in/57pnv on line 2 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /in/57pnv:2) in /in/57pnv on line 2 <h1>get_class_methods: 0.0001 Seconds</h1> Fatal error: Cannot instantiate non-existent class: reflectionclass in /in/57pnv on line 22
Process exited with code 255.
Output for 4.3.1
Warning: session_start() [http://www.php.net/function.session-start]: Cannot send session cookie - headers already sent in /in/57pnv on line 2 Warning: session_start() [http://www.php.net/function.session-start]: Cannot send session cache limiter - headers already sent (output started at /in/57pnv:2) in /in/57pnv on line 2 <h1>get_class_methods: 0.0001 Seconds</h1> Fatal error: Cannot instantiate non-existent class: reflectionclass in /in/57pnv on line 22
Output for 4.3.0
Warning: session_start() [http://www.php.net/function.session-start]: Cannot send session cookie - headers already sent in /in/57pnv on line 2 Warning: session_start() [http://www.php.net/function.session-start]: Cannot send session cache limiter - headers already sent (output started at /in/57pnv:2) in /in/57pnv on line 2 <h1>get_class_methods: 0.0000 Seconds</h1> Fatal error: Cannot instantiate non-existent class: reflectionclass in /in/57pnv on line 22

preferences:
140.15 ms | 402 KiB | 175 Q