3v4l.org

run code in 300+ PHP versions simultaneously
<?php $var = 'foo'; $t = microtime(); $somequery = "some query '$var'"; echo 'Interpolation: ', microtime() - $t, ' ms', PHP_EOL; $t = microtime(); $somequery = "some query '" . $var . "'"; echo 'Concatenation: ', microtime() - $t, ' ms', PHP_EOL; $t = microtime(); $somequery = sprintf("some query '%s'", $var); echo 'sprintf: ', microtime() - $t, ' ms', PHP_EOL;
Output for 7.4.0
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 2.8E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 4.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 4.0E-6 ms
Output for 7.3.12
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.6E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.4E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 5.0E-6 ms
Output for 7.3.11
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.2E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 4.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 4.0E-6 ms
Output for 7.1.29, 7.3.10
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 2.6E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 7.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 3.0E-6 ms
Output for 7.3.9
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.1E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.0E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 5.0E-6 ms
Output for 7.3.8
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 4.3E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 6.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 6.0E-6 ms
Output for 7.3.7
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 2.9E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 8.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 4.0E-6 ms
Output for 7.3.6
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.4E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 8.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 3.0E-6 ms
Output for 7.3.5
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.2E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 7.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 3.0E-6 ms
Output for 7.3.4
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.4E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 3.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 3.0E-6 ms
Output for 7.3.3
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.3E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.2E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 5.0E-6 ms
Output for 7.3.2
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 2.5E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 7.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 3.0E-6 ms
Output for 7.3.1
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.8E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.6E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 5.0E-6 ms
Output for 7.3.0
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 2.7E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 8.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 4.0E-6 ms
Output for 7.2.25
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.4E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.5E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 4.0E-6 ms
Output for 7.2.24
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.3E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.5E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 4.0E-6 ms
Output for 7.2.23
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 2.9E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 3.4E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 6.0E-6 ms
Output for 7.2.22
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.1E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 8.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 4.0E-6 ms
Output for 7.2.21
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 5.6E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.0E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 4.0E-6 ms
Output for 7.2.20
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 5.4E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.2E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 5.0E-6 ms
Output for 7.2.19
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.6E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.2E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 1.6E-5 ms
Output for 7.2.18
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.0E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.1E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 4.0E-6 ms
Output for 7.2.17
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 4.4E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.7E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 7.0E-6 ms
Output for 7.2.13
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 2.7E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.0E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 3.0E-6 ms
Output for 7.2.12
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.0E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.2E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 4.0E-6 ms
Output for 7.2.11
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.8E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.3E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 4.0E-6 ms
Output for 7.2.10
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 2.7E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.0E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 2.0E-6 ms
Output for 7.2.9
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 2.6E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 9.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 2.0E-6 ms
Output for 7.2.8
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.9E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.3E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 4.0E-6 ms
Output for 7.2.7
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 4.0E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 9.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 4.0E-6 ms
Output for 7.2.6
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.3E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 8.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 3.0E-6 ms
Output for 7.2.5
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.2E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.6E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 4.0E-6 ms
Output for 7.2.4
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 2.6E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.3E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 4.0E-6 ms
Output for 7.2.3
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.0E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.3E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 3.0E-6 ms
Output for 7.2.2
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.4E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 6.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 3.0E-6 ms
Output for 7.2.1
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 4.2E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 2.1E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 5.0E-6 ms
Output for 7.2.0
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.7E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.5E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 4.0E-6 ms
Output for 7.1.33
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 2.5E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 8.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 4.0E-6 ms
Output for 7.1.32
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.1E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 9.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 4.0E-6 ms
Output for 7.1.31
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 2.5E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 2.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 9.0E-6 ms
Output for 7.1.30
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 2.5E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 7.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 8.0E-6 ms
Output for 7.1.28
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 5.4E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 5.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 1.4E-5 ms
Output for 7.1.27
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.0E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 1.1E-5 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 6.0E-6 ms
Output for 7.1.26
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 2.4E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 7.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 3.0E-6 ms
Output for 7.1.25
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 2.2E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 9.0E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 9.0E-6 ms
Output for 7.1.7
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 2.1E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 5.0000000000002E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 2.0000000000003E-6 ms
Output for 7.1.6
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.6000000000001E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 7.0000000000001E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 4.9999999999998E-6 ms
Output for 7.1.5
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 3.7000000000001E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 2.9999999999995E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 8.9999999999986E-6 ms
Output for 7.1.0
Interpolation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 Notice: A non well formed numeric value encountered in /in/gVqVH on line 6 2.0999999999999E-5 ms Concatenation: Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 Notice: A non well formed numeric value encountered in /in/gVqVH on line 10 3.0000000000004E-6 ms sprintf: Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 Notice: A non well formed numeric value encountered in /in/gVqVH on line 14 4.0000000000005E-6 ms
Output for 7.0.20
Interpolation: 2.0E-5 ms Concatenation: 1.0000000000001E-6 ms sprintf: 5.0000000000002E-6 ms
Output for 7.0.14
Interpolation: 2.1E-5 ms Concatenation: 3.0E-6 ms sprintf: 3.0E-6 ms
Output for 7.0.6
Interpolation: 2.1000000000049E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 3.0000000000863E-6 ms
Output for 7.0.5
Interpolation: 2.000000000002E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 7.0.4
Interpolation: 1.6000000000016E-5 ms Concatenation: 2.0000000000575E-6 ms sprintf: 3.0000000000863E-6 ms
Output for 7.0.3
Interpolation: 2.000000000002E-5 ms Concatenation: 2.0000000000575E-6 ms sprintf: 1.9999999999465E-6 ms
Output for 7.0.2
Interpolation: 1.4999999999987E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 7.0.1
Interpolation: 1.3999999999958E-5 ms Concatenation: 1.0000000000288E-6 ms sprintf: 1.9999999999465E-6 ms
Output for 7.0.0
Interpolation: 1.4999999999987E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.6.28
Interpolation: 2.2E-5 ms Concatenation: 3.0000000000004E-6 ms sprintf: 3.9999999999997E-6 ms
Output for 5.6.21
Interpolation: 2.1999999999966E-5 ms Concatenation: 2.0000000000575E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.3.26, 5.6.20
Interpolation: 2.000000000002E-5 ms Concatenation: 1.0000000000288E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.3.29, 5.5.10, 5.5.19, 5.5.27, 5.5.33, 5.6.19
Interpolation: 2.2999999999995E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.6.18
Interpolation: 2.1999999999966E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.6.17
Interpolation: 2.3000000000002E-5 ms Concatenation: 2.9999999999961E-6 ms sprintf: 4.9999999999981E-6 ms
Output for 5.5.8, 5.6.12, 5.6.16
Interpolation: 1.8999999999991E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.3.24, 5.6.15
Interpolation: 1.8999999999991E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.6.14
Interpolation: 1.4999999999987E-5 ms Concatenation: 2.0000000000575E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.6.13
Interpolation: 2.2999999999995E-5 ms Concatenation: 3.0000000000308E-6 ms sprintf: 6.000000000006E-6 ms
Output for 5.6.11
Interpolation: 2.2000000000078E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.6.1, 5.6.10
Interpolation: 2.4999999999997E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.6.9
Interpolation: 1.7000000000045E-5 ms Concatenation: 2.0000000000575E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.6.8
Interpolation: 2.1999999999966E-5 ms Concatenation: 2.0000000000575E-6 ms sprintf: 5.0000000000328E-6 ms
Output for 5.6.7
Interpolation: 1.7000000000045E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.6.6
Interpolation: 2.2999999999995E-5 ms Concatenation: 2.9999999999752E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.6.5
Interpolation: 2.0999999999993E-5 ms Concatenation: 3.000000000003E-6 ms sprintf: 5.000000000005E-6 ms
Output for 5.4.18, 5.6.4
Interpolation: 2.5000000000053E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.6.3
Interpolation: 2.1999999999994E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 3.000000000003E-6 ms
Output for 5.5.5, 5.6.2
Interpolation: 2.4000000000024E-5 ms Concatenation: 2.9999999999752E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.6.0
Interpolation: 2.1999999999994E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.5.35
Interpolation: 2.0000000000003E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 4.0000000000005E-6 ms
Output for 5.5.34
Interpolation: 2.4999999999999E-5 ms Concatenation: 2.0000000000003E-6 ms sprintf: 4.9999999999998E-6 ms
Output for 5.5.32
Interpolation: 2.0999999999938E-5 ms Concatenation: 2.0000000000575E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.5.31
Interpolation: 2.2999999999995E-5 ms Concatenation: 3.000000000003E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.5.30
Interpolation: 2.2000000000008E-5 ms Concatenation: 3.000000000003E-6 ms sprintf: 5.000000000005E-6 ms
Output for 5.3.8, 5.3.12, 5.3.15, 5.5.29
Interpolation: 1.4999999999987E-5 ms Concatenation: 1.0000000000288E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.5.28
Interpolation: 2.000000000002E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.5.26
Interpolation: 2.3999999999996E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 3.9999999999762E-6 ms
Output for 5.5.25
Interpolation: 1.5999999999905E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.5.24
Interpolation: 2.2000000000078E-5 ms Concatenation: 2.0000000000575E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.5.23
Interpolation: 1.9999999999992E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.5.22
Interpolation: 2.1999999999966E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.5.21
Interpolation: 1.8000000000074E-5 ms Concatenation: 9.9999999991773E-7 ms sprintf: 2.9999999999752E-6 ms
Output for 5.5.20
Interpolation: 2.4000000000024E-5 ms Concatenation: 3.0000000000863E-6 ms sprintf: 5.0000000000328E-6 ms
Output for 5.5.18
Interpolation: 2.4999999999942E-5 ms Concatenation: 2.9999999999752E-6 ms sprintf: 5.0000000000328E-6 ms
Output for 5.5.16
Interpolation: 1.8999999999991E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 4.9999999999772E-6 ms
Output for 5.5.15
Interpolation: 1.9E-5 ms Concatenation: 2.0000000000003E-6 ms sprintf: 4.9999999999998E-6 ms
Output for 5.5.14
Interpolation: 2.4999999999997E-5 ms Concatenation: 3.000000000003E-6 ms sprintf: 6.000000000006E-6 ms
Output for 5.5.13
Interpolation: 1.6999999999934E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 1.9999999999465E-6 ms
Output for 5.5.12
Interpolation: 2.2999999999995E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 5.000000000005E-6 ms
Output for 5.5.11
Interpolation: 2.000000000002E-5 ms Concatenation: 3.0000000000308E-6 ms sprintf: 5.0000000000328E-6 ms
Output for 5.5.9
Interpolation: 1.7000000000003E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 3.9999999999901E-6 ms
Output for 5.5.7
Interpolation: 1.7000000000045E-5 ms Concatenation: 2.9999999999752E-6 ms sprintf: 3.999999999893E-6 ms
Output for 5.5.6
Interpolation: 2.3000000000009E-5 ms Concatenation: 3.000000000003E-6 ms sprintf: 4.9999999999911E-6 ms
Output for 5.5.4
Interpolation: 2.6999999999999E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.5.3
Interpolation: 2.1999999999966E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.5.2
Interpolation: 1.6000000000016E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.5.1
Interpolation: 2.8000000000028E-5 ms Concatenation: 2.9999999999752E-6 ms sprintf: 5.0000000000328E-6 ms
Output for 5.5.0
Interpolation: 2.3999999999913E-5 ms Concatenation: 2.0000000000575E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.4.45
Interpolation: 2.2999999999995E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.4.44
Interpolation: 3.4000000000034E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.4.31, 5.4.43
Interpolation: 2.6000000000082E-5 ms Concatenation: 2.9999999999752E-6 ms sprintf: 5.0000000000328E-6 ms
Output for 5.4.42
Interpolation: 2.2999999999995E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 3.0000000000308E-6 ms
Output for 5.4.41
Interpolation: 2.6999999999999E-5 ms Concatenation: 2.9999999999752E-6 ms sprintf: 5.9999999999505E-6 ms
Output for 5.4.40
Interpolation: 2.599999999997E-5 ms Concatenation: 2.9999999999752E-6 ms sprintf: 4.9999999999772E-6 ms
Output for 5.4.39
Interpolation: 2.5999999999998E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 3.9999999999901E-6 ms
Output for 5.4.38
Interpolation: 2.6999999999999E-5 ms Concatenation: 9.9999999997324E-7 ms sprintf: 2.9999999999752E-6 ms
Output for 5.4.37
Interpolation: 2.6999999999999E-5 ms Concatenation: 1.9999999999881E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.4.36
Interpolation: 2.4999999999997E-5 ms Concatenation: 2.9999999999752E-6 ms sprintf: 5.0000000000328E-6 ms
Output for 5.4.35
Interpolation: 2.5000000000004E-5 ms Concatenation: 2.9999999999961E-6 ms sprintf: 3.9999999999971E-6 ms
Output for 5.4.34
Interpolation: 3.1000000000003E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 5.0000000000328E-6 ms
Output for 5.4.32
Interpolation: 2.8000000000028E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 5.0000000000328E-6 ms
Output for 5.4.30
Interpolation: 2.7999999999972E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.4.29
Interpolation: 2.4999999999942E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.4.28
Interpolation: 2.6999999999999E-5 ms Concatenation: 3.0000000000863E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.4.27
Interpolation: 3.1000000000003E-5 ms Concatenation: 2.9999999999752E-6 ms sprintf: 5.9999999999505E-6 ms
Output for 5.4.26
Interpolation: 2.000000000002E-5 ms Concatenation: 2.9999999999752E-6 ms sprintf: 4.9999999999217E-6 ms
Output for 5.4.25
Interpolation: 2.0999999999938E-5 ms Concatenation: 2.0000000000575E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.4.24
Interpolation: 2.6999999999999E-5 ms Concatenation: 2.9999999999752E-6 ms sprintf: 6.000000000006E-6 ms
Output for 5.4.23
Interpolation: 1.8999999999991E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.4.22
Interpolation: 2.599999999997E-5 ms Concatenation: 3.0000000000308E-6 ms sprintf: 6.000000000006E-6 ms
Output for 5.4.21
Interpolation: 3.0999999999948E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 5.0000000000328E-6 ms
Output for 5.4.20
Interpolation: 2.599999999997E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 5.0000000000328E-6 ms
Output for 5.4.19
Interpolation: 1.9999999999992E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 3.000000000003E-6 ms
Output for 5.4.17
Interpolation: 2.599999999997E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.4.16
Interpolation: 2.6999999999999E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 5.0000000000328E-6 ms
Output for 5.3.18, 5.4.8, 5.4.15
Interpolation: 1.799999999999E-5 ms Concatenation: 1.000000000001E-6 ms sprintf: 3.000000000003E-6 ms
Output for 5.4.13 - 5.4.14
Interpolation: 1.8999999999991E-5 ms Concatenation: 1.0000000000288E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.4.12
Interpolation: 2.6999999999999E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.4.11
Interpolation: 2.6000000000026E-5 ms Concatenation: 3.0000000000308E-6 ms sprintf: 5.9999999999505E-6 ms
Output for 5.4.10
Interpolation: 1.8999999999991E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.4.9
Interpolation: 1.7999999999962E-5 ms Concatenation: 2.0000000000575E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.4.3, 5.4.7
Interpolation: 1.4999999999987E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 1.9999999999465E-6 ms
Output for 5.4.6
Interpolation: 1.6000000000016E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.4.5
Interpolation: 1.6000000000002E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 3.000000000003E-6 ms
Output for 5.4.4
Interpolation: 1.6000000000016E-5 ms Concatenation: 9.9999999997324E-7 ms sprintf: 2.9999999999752E-6 ms
Output for 5.4.2
Interpolation: 1.5000000000098E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.4.1
Interpolation: 1.6999999999989E-5 ms Concatenation: 1.000000000001E-6 ms sprintf: 2.000000000002E-6 ms
Output for 5.4.0
Interpolation: 1.6999999999989E-5 ms Concatenation: 1.0000000000288E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.3.28
Interpolation: 1.7999999999962E-5 ms Concatenation: 9.9999999991773E-7 ms sprintf: 2.9999999999752E-6 ms
Output for 5.3.27
Interpolation: 2.5999999999998E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 3.9999999999762E-6 ms
Output for 5.3.25
Interpolation: 2.2999999999999E-5 ms Concatenation: 1.9999999999985E-6 ms sprintf: 4.0000000000005E-6 ms
Output for 5.3.23
Interpolation: 1.8000000000074E-5 ms Concatenation: 1.0000000000288E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.3.22
Interpolation: 2.2999999999999E-5 ms Concatenation: 2.0000000000003E-6 ms sprintf: 4.0000000000005E-6 ms
Output for 5.3.21
Interpolation: 1.799999999999E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 2.000000000002E-6 ms
Output for 5.3.20
Interpolation: 2.2999999999995E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.3.19
Interpolation: 1.7000000000045E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.3.0, 5.3.17
Interpolation: 1.6000000000016E-5 ms Concatenation: 1.0000000000288E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.3.16
Interpolation: 1.5999999999905E-5 ms Concatenation: 1.0000000000288E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.3.14
Interpolation: 1.4999999999987E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 3.000000000003E-6 ms
Output for 5.3.13
Interpolation: 1.4999999999987E-5 ms Concatenation: 9.9999999991773E-7 ms sprintf: 2.9999999999752E-6 ms
Output for 5.3.11
Interpolation: 1.6000000000002E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 1.9999999999951E-6 ms
Output for 5.3.10
Interpolation: 1.5000000000043E-5 ms Concatenation: 1.0000000000288E-6 ms sprintf: 2.000000000002E-6 ms
Output for 5.3.9
Interpolation: 1.5999999999905E-5 ms Concatenation: 1.0000000000288E-6 ms sprintf: 2.0000000000575E-6 ms
Output for 5.3.1, 5.3.7
Interpolation: 1.4999999999987E-5 ms Concatenation: 1.9999999999465E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.3.6
Interpolation: 1.6999999999934E-5 ms Concatenation: 1.0000000000288E-6 ms sprintf: 3.0000000000863E-6 ms
Output for 5.3.5
Interpolation: 1.2999999999985E-5 ms Concatenation: 1.000000000001E-6 ms sprintf: 3.000000000003E-6 ms
Output for 5.3.4
Interpolation: 1.4999999999987E-5 ms Concatenation: 9.9999999991773E-7 ms sprintf: 4.000000000004E-6 ms
Output for 5.3.3
Interpolation: 1.5000000000098E-5 ms Concatenation: 1.0000000000288E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.3.2
Interpolation: 1.5000000000015E-5 ms Concatenation: 1.000000000001E-6 ms sprintf: 2.000000000002E-6 ms
Output for 5.2.17
Interpolation: 1.4999999999987E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 2.000000000002E-6 ms
Output for 5.2.16
Interpolation: 1.8000000000018E-5 ms Concatenation: 2.9999999999752E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.2.15
Interpolation: 1.6000000000016E-5 ms Concatenation: 2.0000000000575E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.2.14
Interpolation: 1.5000000000001E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 2.9999999999995E-6 ms
Output for 5.2.13
Interpolation: 1.599999999996E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 2.000000000002E-6 ms
Output for 5.2.12
Interpolation: 1.4000000000014E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 3.0000000000308E-6 ms
Output for 5.2.11
Interpolation: 1.3999999999958E-5 ms Concatenation: 1.0000000000288E-6 ms sprintf: 3.0000000000863E-6 ms
Output for 5.2.10
Interpolation: 1.4999999999987E-5 ms Concatenation: 2.0000000000575E-6 ms sprintf: 2.0000000000575E-6 ms
Output for 5.2.9
Interpolation: 1.3999999999993E-5 ms Concatenation: 1.9999999999951E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.2.8
Interpolation: 1.5000000000015E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 1.9999999999742E-6 ms
Output for 5.2.7
Interpolation: 1.4999999999987E-5 ms Concatenation: 9.9999999997324E-7 ms sprintf: 2.9999999999752E-6 ms
Output for 5.2.6
Interpolation: 1.400000000007E-5 ms Concatenation: 1.0000000000288E-6 ms sprintf: 2.0000000000575E-6 ms
Output for 5.2.5
Interpolation: 1.299999999993E-5 ms Concatenation: 9.9999999991773E-7 ms sprintf: 2.9999999999752E-6 ms
Output for 5.2.4
Interpolation: 1.400000000007E-5 ms Concatenation: 1.0000000000288E-6 ms sprintf: 2.9999999999752E-6 ms
Output for 5.2.3
Interpolation: 2.0000000000006E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 4.000000000004E-6 ms
Output for 5.2.2
Interpolation: 1.1999999999984E-5 ms Concatenation: 2.000000000002E-6 ms sprintf: 3.000000000003E-6 ms
Output for 5.2.1
Interpolation: 2.2999999999995E-05 ms Concatenation: 4.000000000004E-06 ms sprintf: 5.0000000000328E-06 ms
Output for 5.2.0
Interpolation: 2.2999999999995E-05 ms Concatenation: 2.0000000000575E-06 ms sprintf: 4.000000000004E-06 ms
Output for 5.1.6
Interpolation: 2.3000000000023E-05 ms Concatenation: 2.000000000002E-06 ms sprintf: 3.000000000003E-06 ms
Output for 5.1.5
Interpolation: 2.9000000000001E-05 ms Concatenation: 2.000000000002E-06 ms sprintf: 4.000000000004E-06 ms
Output for 5.1.4
Interpolation: 2.1999999999966E-05 ms Concatenation: 2.0000000000575E-06 ms sprintf: 4.000000000004E-06 ms
Output for 5.1.3
Interpolation: 2.1000000000049E-05 ms Concatenation: 1.9999999999465E-06 ms sprintf: 5.0000000000328E-06 ms
Output for 5.1.2
Interpolation: 2.2999999999995E-05 ms Concatenation: 2.000000000002E-06 ms sprintf: 3.000000000003E-06 ms
Output for 5.1.1
Interpolation: 1.7999999999962E-05 ms Concatenation: 2.9999999999752E-06 ms sprintf: 2.9999999999752E-06 ms
Output for 5.1.0
Interpolation: 2.1000000000049E-05 ms Concatenation: 2.9999999999752E-06 ms sprintf: 4.000000000004E-06 ms
Output for 5.0.5
Interpolation: 2.6999999999999E-05 ms Concatenation: 4.000000000004E-06 ms sprintf: 6.0000000000615E-06 ms
Output for 5.0.4
Interpolation: 2.3999999999996E-05 ms Concatenation: 4.000000000004E-06 ms sprintf: 7.000000000007E-06 ms
Output for 5.0.3
Interpolation: 1.6999999999989E-05 ms Concatenation: 3.0000000000308E-06 ms sprintf: 5.0000000000328E-06 ms
Output for 5.0.2
Interpolation: 2.1999999999966E-05 ms Concatenation: 5.0000000000328E-06 ms sprintf: 5.9999999999505E-06 ms
Output for 5.0.1
Interpolation: 2.6E-05 msPHP_EOLConcatenation: 4.0000000000005E-06 msPHP_EOLsprintf: 5.0000000000015E-06 msPHP_EOL
Output for 5.0.0
Interpolation: 1.6000000000016E-05 msPHP_EOLConcatenation: 3.000000000003E-06 msPHP_EOLsprintf: 4.000000000004E-06 msPHP_EOL
Output for 4.4.9
Interpolation: 1.1000000000039E-05 ms Concatenation: 1.9999999999465E-06 ms sprintf: 4.000000000004E-06 ms
Output for 4.4.8
Interpolation: 9.9999999999545E-06 ms Concatenation: 1.0000000000288E-06 ms sprintf: 2.0000000000575E-06 ms
Output for 4.4.7
Interpolation: 1.4999999999987E-05 ms Concatenation: 1.0000000000288E-06 ms sprintf: 2.9999999999752E-06 ms
Output for 4.4.6
Interpolation: 1.9999999999909E-05 ms Concatenation: 1.9999999999465E-06 ms sprintf: 3.0000000000863E-06 ms
Output for 4.4.5
Interpolation: 1.0999999999983E-05 ms Concatenation: 9.9999999991773E-07 ms sprintf: 1.9999999999465E-06 ms
Output for 4.4.4
Interpolation: 2.000000000002E-05 ms Concatenation: 2.9999999999752E-06 ms sprintf: 7.0000000000348E-06 ms
Output for 4.4.3
Interpolation: 2.2999999999995E-05 ms Concatenation: 4.000000000004E-06 ms sprintf: 6.9999999999792E-06 ms
Output for 4.4.2
Interpolation: 2.3999999999996E-05 ms Concatenation: 2.000000000002E-06 ms sprintf: 4.000000000004E-06 ms
Output for 4.4.1
Interpolation: 1.7000000000045E-05 ms Concatenation: 1.0000000000288E-06 ms sprintf: 4.000000000004E-06 ms
Output for 4.4.0
Interpolation: 2.2999999999995E-05 ms Concatenation: 1.9999999999465E-06 ms sprintf: 4.000000000004E-06 ms
Output for 4.3.11
Interpolation: 2.599999999997E-05 ms Concatenation: 4.000000000004E-06 ms sprintf: 5.9999999999505E-06 ms
Output for 4.3.10
Interpolation: 2.9999999999974E-05 ms Concatenation: 2.9999999999752E-06 ms sprintf: 4.9999999999217E-06 ms
Output for 4.3.9
Interpolation: 1.8000000000074E-05 msPHP_EOLConcatenation: 2.9999999999752E-06 msPHP_EOLsprintf: 4.9999999999217E-06 msPHP_EOL
Output for 4.3.8
Interpolation: 2.000000000002E-05 msPHP_EOLConcatenation: 4.000000000004E-06 msPHP_EOLsprintf: 6.000000000006E-06 msPHP_EOL
Output for 4.3.7
Interpolation: 2.599999999997E-05 msPHP_EOLConcatenation: 2.9999999999752E-06 msPHP_EOLsprintf: 5.9999999999505E-06 msPHP_EOL
Output for 4.3.6
Interpolation: 2.1000000000049E-05 msPHP_EOLConcatenation: 2.9999999999752E-06 msPHP_EOLsprintf: 5.9999999999505E-06 msPHP_EOL
Output for 4.3.5
Interpolation: 1.6000000000016E-05 msPHP_EOLConcatenation: 2.0000000000575E-06 msPHP_EOLsprintf: 2.9999999999752E-06 msPHP_EOL
Output for 4.3.4
Interpolation: 2.0999999999938E-05 msPHP_EOLConcatenation: 1.9999999999465E-06 msPHP_EOLsprintf: 4.9999999999217E-06 msPHP_EOL
Output for 4.3.3
Interpolation: 1.6000000000016E-05 msPHP_EOLConcatenation: 1.9999999999465E-06 msPHP_EOLsprintf: 3.0000000000863E-06 msPHP_EOL
Output for 4.3.2
Interpolation: 1.6000000000002E-05 msPHP_EOLConcatenation: 2.000000000002E-06 msPHP_EOLsprintf: 3.9999999999901E-06 msPHP_EOL
Output for 4.3.1
Interpolation: 2.2999999999995E-05 msPHP_EOLConcatenation: 4.9999999999772E-06 msPHP_EOLsprintf: 6.9999999999792E-06 msPHP_EOL
Output for 4.3.0
Interpolation: 2.4000000000024E-05 msPHP_EOLConcatenation: 4.9999999999772E-06 msPHP_EOLsprintf: 6.9999999999792E-06 msPHP_EOL

preferences:
172.88 ms | 401 KiB | 250 Q