3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Run a million cycles for the profile averages. $cycles = 1000000; // Setup. define( 'WP_PLUGIN_DIR', 'absolute/path/to/the/plugins/dir' ); $plugin = 'plugin/plugin.php'; $plugins_dir = trailingslashit( WP_PLUGIN_DIR ); $plugins_dir_strlen = strlen( $plugins_dir ); // Polyfills. function trailingslashit( $value ) { return untrailingslashit( $value ) . '/'; } function untrailingslashit( $value ) { return rtrim( $value, '/\\' ); } // Test str_replace(). $start_time = microtime( true ); for ( $i = 1; $i <= $cycles; $i++ ) { $plugin_file = str_replace( $plugins_dir, '', $plugin ); } $end_time = microtime( true ); $total_time = ( $end_time - $start_time ) * 1000000.0; printf( "Ran str_replace() in %s microseconds average\n", number_format( $total_time / $cycles, 4 ) ); // Test substr(). $start_time = microtime( true ); for ( $i = 1; $i <= $cycles; $i++ ) { $plugin_file = substr( $plugin, $plugins_dir_strlen ); } $end_time = microtime( true ); $total_time = ( $end_time - $start_time ) * 1000000.0; printf( "Ran substr() in %s microseconds average\n", number_format( $total_time / $cycles, 4 ) );
Output for 8.3.2
Ran str_replace() in 0.0548 microseconds average Ran substr() in 0.0308 microseconds average
Output for 8.3.1
Ran str_replace() in 0.0493 microseconds average Ran substr() in 0.0275 microseconds average
Output for 8.3.0
Ran str_replace() in 0.0446 microseconds average Ran substr() in 0.0264 microseconds average
Output for 8.2.15
Ran str_replace() in 0.0405 microseconds average Ran substr() in 0.0246 microseconds average
Output for 8.2.14
Ran str_replace() in 0.0527 microseconds average Ran substr() in 0.0310 microseconds average
Output for 8.2.13
Ran str_replace() in 0.0448 microseconds average Ran substr() in 0.0222 microseconds average
Output for 8.2.12
Ran str_replace() in 0.0451 microseconds average Ran substr() in 0.0247 microseconds average
Output for 8.2.11
Ran str_replace() in 0.0399 microseconds average Ran substr() in 0.0272 microseconds average
Output for 8.2.10
Ran str_replace() in 0.0417 microseconds average Ran substr() in 0.0274 microseconds average
Output for 8.2.9
Ran str_replace() in 0.0390 microseconds average Ran substr() in 0.0274 microseconds average
Output for 8.2.8
Ran str_replace() in 0.0395 microseconds average Ran substr() in 0.0223 microseconds average
Output for 8.2.7
Ran str_replace() in 0.0391 microseconds average Ran substr() in 0.0222 microseconds average
Output for 8.2.6
Ran str_replace() in 0.0402 microseconds average Ran substr() in 0.0239 microseconds average
Output for 8.2.5
Ran str_replace() in 0.0387 microseconds average Ran substr() in 0.0226 microseconds average
Output for 8.2.4
Ran str_replace() in 0.0393 microseconds average Ran substr() in 0.0226 microseconds average
Output for 8.2.3
Ran str_replace() in 0.0399 microseconds average Ran substr() in 0.0253 microseconds average
Output for 8.2.2
Ran str_replace() in 0.0574 microseconds average Ran substr() in 0.0239 microseconds average
Output for 8.2.1
Ran str_replace() in 0.0694 microseconds average Ran substr() in 0.0240 microseconds average
Output for 8.2.0
Ran str_replace() in 0.0391 microseconds average Ran substr() in 0.0228 microseconds average
Output for 8.1.27
Ran str_replace() in 0.0387 microseconds average Ran substr() in 0.0250 microseconds average
Output for 8.1.26
Ran str_replace() in 0.0500 microseconds average Ran substr() in 0.0263 microseconds average
Output for 8.1.25
Ran str_replace() in 0.0551 microseconds average Ran substr() in 0.0230 microseconds average
Output for 8.1.24
Ran str_replace() in 0.0554 microseconds average Ran substr() in 0.0286 microseconds average
Output for 8.1.23
Ran str_replace() in 0.0428 microseconds average Ran substr() in 0.0221 microseconds average
Output for 8.1.22
Ran str_replace() in 0.0390 microseconds average Ran substr() in 0.0249 microseconds average
Output for 8.1.21
Ran str_replace() in 0.0384 microseconds average Ran substr() in 0.0232 microseconds average
Output for 8.1.20
Ran str_replace() in 0.0545 microseconds average Ran substr() in 0.0225 microseconds average
Output for 8.1.19
Ran str_replace() in 0.0387 microseconds average Ran substr() in 0.0257 microseconds average
Output for 8.1.18
Ran str_replace() in 0.0530 microseconds average Ran substr() in 0.0219 microseconds average
Output for 8.1.17
Ran str_replace() in 0.0549 microseconds average Ran substr() in 0.0239 microseconds average
Output for 8.1.16
Ran str_replace() in 0.0384 microseconds average Ran substr() in 0.0227 microseconds average
Output for 8.1.15
Ran str_replace() in 0.0444 microseconds average Ran substr() in 0.0249 microseconds average
Output for 8.1.14
Ran str_replace() in 0.0498 microseconds average Ran substr() in 0.0245 microseconds average
Output for 8.1.13
Ran str_replace() in 0.0381 microseconds average Ran substr() in 0.0236 microseconds average
Output for 8.1.12
Ran str_replace() in 0.0477 microseconds average Ran substr() in 0.0253 microseconds average
Output for 8.1.11
Ran str_replace() in 0.0385 microseconds average Ran substr() in 0.0219 microseconds average
Output for 8.1.10
Ran str_replace() in 0.0480 microseconds average Ran substr() in 0.0245 microseconds average
Output for 8.1.9
Ran str_replace() in 0.0389 microseconds average Ran substr() in 0.0260 microseconds average
Output for 8.1.8
Ran str_replace() in 0.0587 microseconds average Ran substr() in 0.0334 microseconds average
Output for 8.1.7
Ran str_replace() in 0.0550 microseconds average Ran substr() in 0.0244 microseconds average
Output for 8.1.6
Ran str_replace() in 0.0468 microseconds average Ran substr() in 0.0249 microseconds average
Output for 8.1.5
Ran str_replace() in 0.0389 microseconds average Ran substr() in 0.0259 microseconds average
Output for 8.1.4
Ran str_replace() in 0.0485 microseconds average Ran substr() in 0.0266 microseconds average
Output for 8.1.3
Ran str_replace() in 0.0492 microseconds average Ran substr() in 0.0250 microseconds average
Output for 8.1.2
Ran str_replace() in 0.0379 microseconds average Ran substr() in 0.0239 microseconds average
Output for 8.1.1
Ran str_replace() in 0.0384 microseconds average Ran substr() in 0.0230 microseconds average
Output for 8.1.0
Ran str_replace() in 0.0381 microseconds average Ran substr() in 0.0266 microseconds average
Output for 8.0.30
Ran str_replace() in 0.0506 microseconds average Ran substr() in 0.0270 microseconds average
Output for 8.0.29
Ran str_replace() in 0.0383 microseconds average Ran substr() in 0.0240 microseconds average
Output for 8.0.28
Ran str_replace() in 0.0384 microseconds average Ran substr() in 0.0241 microseconds average
Output for 8.0.27
Ran str_replace() in 0.0405 microseconds average Ran substr() in 0.0233 microseconds average
Output for 8.0.26
Ran str_replace() in 0.0565 microseconds average Ran substr() in 0.0243 microseconds average
Output for 8.0.25
Ran str_replace() in 0.0390 microseconds average Ran substr() in 0.0260 microseconds average
Output for 8.0.24
Ran str_replace() in 0.0391 microseconds average Ran substr() in 0.0280 microseconds average
Output for 8.0.23
Ran str_replace() in 0.0382 microseconds average Ran substr() in 0.0250 microseconds average
Output for 8.0.22
Ran str_replace() in 0.0389 microseconds average Ran substr() in 0.0231 microseconds average
Output for 8.0.21
Ran str_replace() in 0.0402 microseconds average Ran substr() in 0.0294 microseconds average
Output for 8.0.20
Ran str_replace() in 0.0540 microseconds average Ran substr() in 0.0241 microseconds average
Output for 8.0.19
Ran str_replace() in 0.0456 microseconds average Ran substr() in 0.0282 microseconds average
Output for 8.0.18
Ran str_replace() in 0.0385 microseconds average Ran substr() in 0.0244 microseconds average
Output for 8.0.17
Ran str_replace() in 0.0483 microseconds average Ran substr() in 0.0270 microseconds average
Output for 8.0.16
Ran str_replace() in 0.0385 microseconds average Ran substr() in 0.0236 microseconds average
Output for 8.0.15
Ran str_replace() in 0.0378 microseconds average Ran substr() in 0.0250 microseconds average
Output for 8.0.14
Ran str_replace() in 0.0382 microseconds average Ran substr() in 0.0270 microseconds average
Output for 8.0.13
Ran str_replace() in 0.0379 microseconds average Ran substr() in 0.0266 microseconds average
Output for 8.0.12
Ran str_replace() in 0.0384 microseconds average Ran substr() in 0.0249 microseconds average
Output for 8.0.11
Ran str_replace() in 0.0400 microseconds average Ran substr() in 0.0314 microseconds average
Output for 8.0.10
Ran str_replace() in 0.0478 microseconds average Ran substr() in 0.0270 microseconds average
Output for 8.0.9
Ran str_replace() in 0.0381 microseconds average Ran substr() in 0.0280 microseconds average
Output for 8.0.8
Ran str_replace() in 0.0381 microseconds average Ran substr() in 0.0246 microseconds average
Output for 8.0.7
Ran str_replace() in 0.0558 microseconds average Ran substr() in 0.0242 microseconds average
Output for 8.0.6
Ran str_replace() in 0.0380 microseconds average Ran substr() in 0.0262 microseconds average
Output for 8.0.5
Ran str_replace() in 0.0379 microseconds average Ran substr() in 0.0264 microseconds average
Output for 8.0.3
Ran str_replace() in 0.0384 microseconds average Ran substr() in 0.0220 microseconds average
Output for 8.0.2
Ran str_replace() in 0.0530 microseconds average Ran substr() in 0.0275 microseconds average
Output for 8.0.1
Ran str_replace() in 0.0383 microseconds average Ran substr() in 0.0259 microseconds average
Output for 8.0.0
Ran str_replace() in 0.0435 microseconds average Ran substr() in 0.0259 microseconds average
Output for 7.4.33
Ran str_replace() in 0.0403 microseconds average Ran substr() in 0.0287 microseconds average
Output for 7.4.32
Ran str_replace() in 0.0382 microseconds average Ran substr() in 0.0258 microseconds average
Output for 7.4.30
Ran str_replace() in 0.0389 microseconds average Ran substr() in 0.0290 microseconds average
Output for 7.4.29
Ran str_replace() in 0.0505 microseconds average Ran substr() in 0.0292 microseconds average
Output for 7.4.28
Ran str_replace() in 0.0393 microseconds average Ran substr() in 0.0296 microseconds average
Output for 7.4.27
Ran str_replace() in 0.0386 microseconds average Ran substr() in 0.0280 microseconds average
Output for 7.4.26
Ran str_replace() in 0.0385 microseconds average Ran substr() in 0.0266 microseconds average
Output for 7.4.25
Ran str_replace() in 0.0396 microseconds average Ran substr() in 0.0271 microseconds average
Output for 7.4.24
Ran str_replace() in 0.0542 microseconds average Ran substr() in 0.0254 microseconds average
Output for 7.4.23
Ran str_replace() in 0.0413 microseconds average Ran substr() in 0.0290 microseconds average
Output for 7.4.22
Ran str_replace() in 0.0381 microseconds average Ran substr() in 0.0295 microseconds average
Output for 7.4.21
Ran str_replace() in 0.0434 microseconds average Ran substr() in 0.0292 microseconds average
Output for 7.4.20
Ran str_replace() in 0.0564 microseconds average Ran substr() in 0.0265 microseconds average
Output for 7.4.19
Ran str_replace() in 0.0386 microseconds average Ran substr() in 0.0237 microseconds average
Output for 7.4.18
Ran str_replace() in 0.0502 microseconds average Ran substr() in 0.0267 microseconds average
Output for 7.4.16
Ran str_replace() in 0.0378 microseconds average Ran substr() in 0.0287 microseconds average
Output for 7.4.15
Ran str_replace() in 0.0558 microseconds average Ran substr() in 0.0254 microseconds average
Output for 7.4.14
Ran str_replace() in 0.0400 microseconds average Ran substr() in 0.0264 microseconds average
Output for 7.4.13
Ran str_replace() in 0.0414 microseconds average Ran substr() in 0.0281 microseconds average
Output for 7.4.12
Ran str_replace() in 0.0396 microseconds average Ran substr() in 0.0240 microseconds average
Output for 7.4.11
Ran str_replace() in 0.0485 microseconds average Ran substr() in 0.0304 microseconds average
Output for 7.4.10
Ran str_replace() in 0.0379 microseconds average Ran substr() in 0.0257 microseconds average
Output for 7.4.9
Ran str_replace() in 0.0471 microseconds average Ran substr() in 0.0285 microseconds average
Output for 7.4.8
Ran str_replace() in 0.0379 microseconds average Ran substr() in 0.0275 microseconds average
Output for 7.4.7
Ran str_replace() in 0.0496 microseconds average Ran substr() in 0.0300 microseconds average
Output for 7.4.6
Ran str_replace() in 0.0531 microseconds average Ran substr() in 0.0266 microseconds average
Output for 7.4.5
Ran str_replace() in 0.0381 microseconds average Ran substr() in 0.0278 microseconds average
Output for 7.4.4
Ran str_replace() in 0.0499 microseconds average Ran substr() in 0.0279 microseconds average
Output for 7.4.3
Ran str_replace() in 0.0571 microseconds average Ran substr() in 0.0256 microseconds average
Output for 7.4.2
Ran str_replace() in 0.0455 microseconds average Ran substr() in 0.0291 microseconds average
Output for 7.4.1
Ran str_replace() in 0.0546 microseconds average Ran substr() in 0.0289 microseconds average
Output for 7.4.0
Ran str_replace() in 0.0549 microseconds average Ran substr() in 0.0290 microseconds average
Output for 7.3.33
Ran str_replace() in 0.0508 microseconds average Ran substr() in 0.0330 microseconds average
Output for 7.3.32
Ran str_replace() in 0.0531 microseconds average Ran substr() in 0.0287 microseconds average
Output for 7.3.31
Ran str_replace() in 0.0432 microseconds average Ran substr() in 0.0280 microseconds average
Output for 7.3.30
Ran str_replace() in 0.0417 microseconds average Ran substr() in 0.0282 microseconds average
Output for 7.3.29
Ran str_replace() in 0.0587 microseconds average Ran substr() in 0.0287 microseconds average
Output for 7.3.28
Ran str_replace() in 0.0517 microseconds average Ran substr() in 0.0309 microseconds average
Output for 7.3.27
Ran str_replace() in 0.0421 microseconds average Ran substr() in 0.0310 microseconds average
Output for 7.3.26
Ran str_replace() in 0.0440 microseconds average Ran substr() in 0.0340 microseconds average
Output for 7.3.25
Ran str_replace() in 0.0407 microseconds average Ran substr() in 0.0277 microseconds average
Output for 7.3.24
Ran str_replace() in 0.0600 microseconds average Ran substr() in 0.0299 microseconds average
Output for 7.3.23
Ran str_replace() in 0.0474 microseconds average Ran substr() in 0.0334 microseconds average
Output for 7.3.22
Ran str_replace() in 0.0542 microseconds average Ran substr() in 0.0295 microseconds average
Output for 7.3.21
Ran str_replace() in 0.0420 microseconds average Ran substr() in 0.0327 microseconds average
Output for 7.3.20
Ran str_replace() in 0.0416 microseconds average Ran substr() in 0.0314 microseconds average
Output for 7.3.19
Ran str_replace() in 0.0404 microseconds average Ran substr() in 0.0295 microseconds average
Output for 7.3.18
Ran str_replace() in 0.0413 microseconds average Ran substr() in 0.0280 microseconds average
Output for 7.3.17
Ran str_replace() in 0.0565 microseconds average Ran substr() in 0.0281 microseconds average
Output for 7.3.16
Ran str_replace() in 0.0488 microseconds average Ran substr() in 0.0313 microseconds average
Output for 7.3.15
Ran str_replace() in 0.0402 microseconds average Ran substr() in 0.0305 microseconds average
Output for 7.3.14
Ran str_replace() in 0.0555 microseconds average Ran substr() in 0.0302 microseconds average
Output for 7.3.13
Ran str_replace() in 0.0405 microseconds average Ran substr() in 0.0296 microseconds average
Output for 7.3.12
Ran str_replace() in 0.0497 microseconds average Ran substr() in 0.0312 microseconds average
Output for 7.3.11
Ran str_replace() in 0.0514 microseconds average Ran substr() in 0.0310 microseconds average
Output for 7.3.10
Ran str_replace() in 0.0413 microseconds average Ran substr() in 0.0278 microseconds average
Output for 7.3.9
Ran str_replace() in 0.0400 microseconds average Ran substr() in 0.0304 microseconds average
Output for 7.3.8
Ran str_replace() in 0.0411 microseconds average Ran substr() in 0.0314 microseconds average
Output for 7.3.7
Ran str_replace() in 0.0513 microseconds average Ran substr() in 0.0300 microseconds average
Output for 7.3.6
Ran str_replace() in 0.0416 microseconds average Ran substr() in 0.0292 microseconds average
Output for 7.3.5
Ran str_replace() in 0.0425 microseconds average Ran substr() in 0.0290 microseconds average
Output for 7.3.4
Ran str_replace() in 0.0428 microseconds average Ran substr() in 0.0321 microseconds average
Output for 7.3.3
Ran str_replace() in 0.0491 microseconds average Ran substr() in 0.0325 microseconds average
Output for 7.3.2
Ran str_replace() in 0.0456 microseconds average Ran substr() in 0.0322 microseconds average
Output for 7.3.1
Ran str_replace() in 0.0515 microseconds average Ran substr() in 0.0319 microseconds average
Output for 7.3.0
Ran str_replace() in 0.0405 microseconds average Ran substr() in 0.0318 microseconds average
Output for 7.2.34
Ran str_replace() in 0.0446 microseconds average Ran substr() in 0.0335 microseconds average
Output for 7.2.33
Ran str_replace() in 0.0442 microseconds average Ran substr() in 0.0293 microseconds average
Output for 7.2.32
Ran str_replace() in 0.0441 microseconds average Ran substr() in 0.0301 microseconds average
Output for 7.2.31
Ran str_replace() in 0.0558 microseconds average Ran substr() in 0.0314 microseconds average
Output for 7.2.30
Ran str_replace() in 0.0443 microseconds average Ran substr() in 0.0332 microseconds average
Output for 7.2.29
Ran str_replace() in 0.0466 microseconds average Ran substr() in 0.0371 microseconds average
Output for 7.2.28
Ran str_replace() in 0.0447 microseconds average Ran substr() in 0.0324 microseconds average
Output for 7.2.27
Ran str_replace() in 0.0439 microseconds average Ran substr() in 0.0337 microseconds average
Output for 7.2.26
Ran str_replace() in 0.0512 microseconds average Ran substr() in 0.0338 microseconds average
Output for 7.2.25
Ran str_replace() in 0.0433 microseconds average Ran substr() in 0.0306 microseconds average
Output for 7.2.24
Ran str_replace() in 0.0573 microseconds average Ran substr() in 0.0351 microseconds average
Output for 7.2.23
Ran str_replace() in 0.0582 microseconds average Ran substr() in 0.0373 microseconds average
Output for 7.2.22
Ran str_replace() in 0.0549 microseconds average Ran substr() in 0.0341 microseconds average
Output for 7.2.21
Ran str_replace() in 0.0451 microseconds average Ran substr() in 0.0357 microseconds average
Output for 7.2.20
Ran str_replace() in 0.0560 microseconds average Ran substr() in 0.0307 microseconds average
Output for 7.2.19
Ran str_replace() in 0.0438 microseconds average Ran substr() in 0.0311 microseconds average
Output for 7.2.18
Ran str_replace() in 0.0500 microseconds average Ran substr() in 0.0318 microseconds average
Output for 7.2.17
Ran str_replace() in 0.0559 microseconds average Ran substr() in 0.0356 microseconds average
Output for 7.2.16
Ran str_replace() in 0.0438 microseconds average Ran substr() in 0.0285 microseconds average
Output for 7.2.15
Ran str_replace() in 0.0434 microseconds average Ran substr() in 0.0303 microseconds average
Output for 7.2.14
Ran str_replace() in 0.0470 microseconds average Ran substr() in 0.0342 microseconds average
Output for 7.2.13
Ran str_replace() in 0.0568 microseconds average Ran substr() in 0.0319 microseconds average
Output for 7.2.12
Ran str_replace() in 0.0437 microseconds average Ran substr() in 0.0305 microseconds average
Output for 7.2.11
Ran str_replace() in 0.0574 microseconds average Ran substr() in 0.0346 microseconds average
Output for 7.2.10
Ran str_replace() in 0.0437 microseconds average Ran substr() in 0.0287 microseconds average
Output for 7.2.9
Ran str_replace() in 0.0473 microseconds average Ran substr() in 0.0331 microseconds average
Output for 7.2.8
Ran str_replace() in 0.0448 microseconds average Ran substr() in 0.0344 microseconds average
Output for 7.2.7
Ran str_replace() in 0.0507 microseconds average Ran substr() in 0.0344 microseconds average
Output for 7.2.6
Ran str_replace() in 0.0560 microseconds average Ran substr() in 0.0291 microseconds average
Output for 7.2.5
Ran str_replace() in 0.0561 microseconds average Ran substr() in 0.0358 microseconds average
Output for 7.2.4
Ran str_replace() in 0.0480 microseconds average Ran substr() in 0.0310 microseconds average
Output for 7.2.3
Ran str_replace() in 0.0483 microseconds average Ran substr() in 0.0326 microseconds average
Output for 7.2.2
Ran str_replace() in 0.0436 microseconds average Ran substr() in 0.0291 microseconds average
Output for 7.2.1
Ran str_replace() in 0.0452 microseconds average Ran substr() in 0.0345 microseconds average
Output for 7.2.0
Ran str_replace() in 0.0445 microseconds average Ran substr() in 0.0312 microseconds average
Output for 7.1.33
Ran str_replace() in 0.0526 microseconds average Ran substr() in 0.0431 microseconds average
Output for 7.1.32
Ran str_replace() in 0.0699 microseconds average Ran substr() in 0.0445 microseconds average
Output for 7.1.31
Ran str_replace() in 0.0563 microseconds average Ran substr() in 0.0420 microseconds average
Output for 7.1.30
Ran str_replace() in 0.0546 microseconds average Ran substr() in 0.0446 microseconds average
Output for 7.1.29
Ran str_replace() in 0.0706 microseconds average Ran substr() in 0.0455 microseconds average
Output for 7.1.28
Ran str_replace() in 0.0666 microseconds average Ran substr() in 0.0463 microseconds average
Output for 7.1.27
Ran str_replace() in 0.0546 microseconds average Ran substr() in 0.0448 microseconds average
Output for 7.1.26
Ran str_replace() in 0.0637 microseconds average Ran substr() in 0.0436 microseconds average
Output for 7.1.25
Ran str_replace() in 0.0604 microseconds average Ran substr() in 0.0472 microseconds average
Output for 7.1.24
Ran str_replace() in 0.0565 microseconds average Ran substr() in 0.0436 microseconds average
Output for 7.1.23
Ran str_replace() in 0.0569 microseconds average Ran substr() in 0.0460 microseconds average
Output for 7.1.22
Ran str_replace() in 0.0569 microseconds average Ran substr() in 0.0472 microseconds average
Output for 7.1.21
Ran str_replace() in 0.0566 microseconds average Ran substr() in 0.0437 microseconds average
Output for 7.1.20
Ran str_replace() in 0.0670 microseconds average Ran substr() in 0.0447 microseconds average
Output for 7.1.19
Ran str_replace() in 0.0553 microseconds average Ran substr() in 0.0436 microseconds average
Output for 7.1.18
Ran str_replace() in 0.0525 microseconds average Ran substr() in 0.0440 microseconds average
Output for 7.1.17
Ran str_replace() in 0.0555 microseconds average Ran substr() in 0.0461 microseconds average
Output for 7.1.16
Ran str_replace() in 0.0594 microseconds average Ran substr() in 0.0493 microseconds average
Output for 7.1.15
Ran str_replace() in 0.0555 microseconds average Ran substr() in 0.0453 microseconds average
Output for 7.1.14
Ran str_replace() in 0.0594 microseconds average Ran substr() in 0.0460 microseconds average
Output for 7.1.13
Ran str_replace() in 0.0560 microseconds average Ran substr() in 0.0478 microseconds average
Output for 7.1.12
Ran str_replace() in 0.0619 microseconds average Ran substr() in 0.0452 microseconds average
Output for 7.1.11
Ran str_replace() in 0.0682 microseconds average Ran substr() in 0.0450 microseconds average
Output for 7.1.10
Ran str_replace() in 0.0626 microseconds average Ran substr() in 0.0456 microseconds average
Output for 7.1.9
Ran str_replace() in 0.0654 microseconds average Ran substr() in 0.0441 microseconds average
Output for 7.1.8
Ran str_replace() in 0.0560 microseconds average Ran substr() in 0.0426 microseconds average
Output for 7.1.7
Ran str_replace() in 0.0750 microseconds average Ran substr() in 0.0451 microseconds average
Output for 7.1.6
Ran str_replace() in 0.0767 microseconds average Ran substr() in 0.0446 microseconds average
Output for 7.1.5
Ran str_replace() in 0.0706 microseconds average Ran substr() in 0.0457 microseconds average
Output for 7.1.4
Ran str_replace() in 0.0754 microseconds average Ran substr() in 0.0437 microseconds average
Output for 7.0.12, 7.1.3
Ran str_replace() in 0.0565 microseconds average Ran substr() in 0.0443 microseconds average
Output for 7.1.2
Ran str_replace() in 0.0547 microseconds average Ran substr() in 0.0444 microseconds average
Output for 7.1.1
Ran str_replace() in 0.0668 microseconds average Ran substr() in 0.0445 microseconds average
Output for 7.1.0
Ran str_replace() in 0.0628 microseconds average Ran substr() in 0.0451 microseconds average
Output for 7.0.23, 7.0.33
Ran str_replace() in 0.0562 microseconds average Ran substr() in 0.0461 microseconds average
Output for 7.0.32
Ran str_replace() in 0.0673 microseconds average Ran substr() in 0.0487 microseconds average
Output for 7.0.31
Ran str_replace() in 0.0670 microseconds average Ran substr() in 0.0487 microseconds average
Output for 7.0.30
Ran str_replace() in 0.0554 microseconds average Ran substr() in 0.0455 microseconds average
Output for 7.0.29
Ran str_replace() in 0.0536 microseconds average Ran substr() in 0.0436 microseconds average
Output for 7.0.28
Ran str_replace() in 0.0577 microseconds average Ran substr() in 0.0462 microseconds average
Output for 7.0.27
Ran str_replace() in 0.0786 microseconds average Ran substr() in 0.0489 microseconds average
Output for 7.0.26
Ran str_replace() in 0.0594 microseconds average Ran substr() in 0.0456 microseconds average
Output for 7.0.25
Ran str_replace() in 0.0654 microseconds average Ran substr() in 0.0450 microseconds average
Output for 7.0.24
Ran str_replace() in 0.0527 microseconds average Ran substr() in 0.0429 microseconds average
Output for 7.0.22
Ran str_replace() in 0.0643 microseconds average Ran substr() in 0.0439 microseconds average
Output for 7.0.21
Ran str_replace() in 0.0556 microseconds average Ran substr() in 0.0436 microseconds average
Output for 7.0.20
Ran str_replace() in 0.0561 microseconds average Ran substr() in 0.0456 microseconds average
Output for 7.0.19
Ran str_replace() in 0.0710 microseconds average Ran substr() in 0.0455 microseconds average
Output for 7.0.18
Ran str_replace() in 0.0544 microseconds average Ran substr() in 0.0447 microseconds average
Output for 7.0.17
Ran str_replace() in 0.0661 microseconds average Ran substr() in 0.0451 microseconds average
Output for 7.0.16
Ran str_replace() in 0.0574 microseconds average Ran substr() in 0.0460 microseconds average
Output for 7.0.15
Ran str_replace() in 0.0582 microseconds average Ran substr() in 0.0460 microseconds average
Output for 7.0.14
Ran str_replace() in 0.0690 microseconds average Ran substr() in 0.0472 microseconds average
Output for 7.0.13
Ran str_replace() in 0.0632 microseconds average Ran substr() in 0.0474 microseconds average
Output for 7.0.11
Ran str_replace() in 0.0548 microseconds average Ran substr() in 0.0438 microseconds average
Output for 7.0.10
Ran str_replace() in 0.0816 microseconds average Ran substr() in 0.0437 microseconds average
Output for 7.0.9
Ran str_replace() in 0.0560 microseconds average Ran substr() in 0.0448 microseconds average
Output for 7.0.8
Ran str_replace() in 0.0563 microseconds average Ran substr() in 0.0438 microseconds average
Output for 7.0.7
Ran str_replace() in 0.0605 microseconds average Ran substr() in 0.0471 microseconds average
Output for 7.0.6
Ran str_replace() in 0.0601 microseconds average Ran substr() in 0.0467 microseconds average
Output for 7.0.5
Ran str_replace() in 0.0604 microseconds average Ran substr() in 0.0499 microseconds average
Output for 7.0.4
Ran str_replace() in 0.0801 microseconds average Ran substr() in 0.0479 microseconds average
Output for 7.0.3
Ran str_replace() in 0.0588 microseconds average Ran substr() in 0.0474 microseconds average
Output for 7.0.2
Ran str_replace() in 0.0696 microseconds average Ran substr() in 0.0468 microseconds average
Output for 7.0.1
Ran str_replace() in 0.0579 microseconds average Ran substr() in 0.0463 microseconds average
Output for 7.0.0
Ran str_replace() in 0.0570 microseconds average Ran substr() in 0.0447 microseconds average
Output for 5.6.40
Ran str_replace() in 0.2492 microseconds average Ran substr() in 0.1360 microseconds average
Output for 5.6.39
Ran str_replace() in 0.2276 microseconds average Ran substr() in 0.1328 microseconds average
Output for 5.6.38
Ran str_replace() in 0.2353 microseconds average Ran substr() in 0.1485 microseconds average
Output for 5.6.37
Ran str_replace() in 0.2502 microseconds average Ran substr() in 0.1695 microseconds average
Output for 5.6.36
Ran str_replace() in 0.2303 microseconds average Ran substr() in 0.1347 microseconds average
Output for 5.6.35
Ran str_replace() in 0.2243 microseconds average Ran substr() in 0.1249 microseconds average
Output for 5.6.34
Ran str_replace() in 0.2329 microseconds average Ran substr() in 0.1242 microseconds average
Output for 5.6.33
Ran str_replace() in 0.2412 microseconds average Ran substr() in 0.1367 microseconds average
Output for 5.6.32
Ran str_replace() in 0.2424 microseconds average Ran substr() in 0.1392 microseconds average
Output for 5.6.31
Ran str_replace() in 0.2358 microseconds average Ran substr() in 0.1315 microseconds average
Output for 5.6.30
Ran str_replace() in 0.2469 microseconds average Ran substr() in 0.1360 microseconds average
Output for 5.6.29
Ran str_replace() in 0.2289 microseconds average Ran substr() in 0.1370 microseconds average
Output for 5.6.28
Ran str_replace() in 0.2367 microseconds average Ran substr() in 0.1403 microseconds average
Output for 5.6.27
Ran str_replace() in 0.2362 microseconds average Ran substr() in 0.1309 microseconds average
Output for 5.6.26
Ran str_replace() in 0.2278 microseconds average Ran substr() in 0.1314 microseconds average
Output for 5.6.25
Ran str_replace() in 0.2386 microseconds average Ran substr() in 0.1332 microseconds average
Output for 5.6.24
Ran str_replace() in 0.2314 microseconds average Ran substr() in 0.1291 microseconds average
Output for 5.6.23
Ran str_replace() in 0.2457 microseconds average Ran substr() in 0.1301 microseconds average
Output for 5.6.22
Ran str_replace() in 0.2262 microseconds average Ran substr() in 0.1356 microseconds average
Output for 5.6.21
Ran str_replace() in 0.2324 microseconds average Ran substr() in 0.1293 microseconds average
Output for 5.6.20
Ran str_replace() in 0.2268 microseconds average Ran substr() in 0.1270 microseconds average
Output for 5.6.19
Ran str_replace() in 0.2335 microseconds average Ran substr() in 0.1338 microseconds average
Output for 5.6.18
Ran str_replace() in 0.2499 microseconds average Ran substr() in 0.1297 microseconds average
Output for 5.6.17
Ran str_replace() in 0.2412 microseconds average Ran substr() in 0.1289 microseconds average
Output for 5.6.16
Ran str_replace() in 0.2470 microseconds average Ran substr() in 0.1270 microseconds average
Output for 5.6.15
Ran str_replace() in 0.2373 microseconds average Ran substr() in 0.1245 microseconds average
Output for 5.6.14
Ran str_replace() in 0.2289 microseconds average Ran substr() in 0.1216 microseconds average
Output for 5.6.13
Ran str_replace() in 0.2467 microseconds average Ran substr() in 0.1289 microseconds average
Output for 5.6.12
Ran str_replace() in 0.2289 microseconds average Ran substr() in 0.1275 microseconds average
Output for 5.6.11
Ran str_replace() in 0.2397 microseconds average Ran substr() in 0.1362 microseconds average
Output for 5.6.10
Ran str_replace() in 0.2415 microseconds average Ran substr() in 0.1382 microseconds average
Output for 5.6.9
Ran str_replace() in 0.2247 microseconds average Ran substr() in 0.1337 microseconds average
Output for 5.6.8
Ran str_replace() in 0.2533 microseconds average Ran substr() in 0.1317 microseconds average
Output for 5.6.7
Ran str_replace() in 0.2318 microseconds average Ran substr() in 0.1366 microseconds average
Output for 5.6.6
Ran str_replace() in 0.2692 microseconds average Ran substr() in 0.1326 microseconds average
Output for 5.6.5
Ran str_replace() in 0.2490 microseconds average Ran substr() in 0.1315 microseconds average
Output for 5.6.4
Ran str_replace() in 0.2249 microseconds average Ran substr() in 0.1245 microseconds average
Output for 5.6.3
Ran str_replace() in 0.2230 microseconds average Ran substr() in 0.1291 microseconds average
Output for 5.6.2
Ran str_replace() in 0.2450 microseconds average Ran substr() in 0.1311 microseconds average
Output for 5.6.1
Ran str_replace() in 0.2594 microseconds average Ran substr() in 0.1305 microseconds average
Output for 5.6.0
Ran str_replace() in 0.2491 microseconds average Ran substr() in 0.1405 microseconds average
Output for 5.5.38
Ran str_replace() in 0.2350 microseconds average Ran substr() in 0.1430 microseconds average
Output for 5.5.37
Ran str_replace() in 0.2311 microseconds average Ran substr() in 0.1384 microseconds average
Output for 5.5.36
Ran str_replace() in 0.2497 microseconds average Ran substr() in 0.1370 microseconds average
Output for 5.5.35
Ran str_replace() in 0.2445 microseconds average Ran substr() in 0.1353 microseconds average
Output for 5.5.34
Ran str_replace() in 0.2326 microseconds average Ran substr() in 0.1370 microseconds average
Output for 5.5.33
Ran str_replace() in 0.2277 microseconds average Ran substr() in 0.1362 microseconds average
Output for 5.5.32
Ran str_replace() in 0.2442 microseconds average Ran substr() in 0.1352 microseconds average
Output for 5.5.31
Ran str_replace() in 0.2304 microseconds average Ran substr() in 0.1364 microseconds average
Output for 5.5.30
Ran str_replace() in 0.2456 microseconds average Ran substr() in 0.1395 microseconds average
Output for 5.5.29
Ran str_replace() in 0.2336 microseconds average Ran substr() in 0.1389 microseconds average
Output for 5.5.28
Ran str_replace() in 0.2645 microseconds average Ran substr() in 0.1450 microseconds average
Output for 5.5.27
Ran str_replace() in 0.2295 microseconds average Ran substr() in 0.1364 microseconds average
Output for 5.5.26
Ran str_replace() in 0.2430 microseconds average Ran substr() in 0.1349 microseconds average
Output for 5.5.25
Ran str_replace() in 0.2273 microseconds average Ran substr() in 0.1329 microseconds average
Output for 5.5.24
Ran str_replace() in 0.2456 microseconds average Ran substr() in 0.1372 microseconds average
Output for 5.5.23
Ran str_replace() in 0.2250 microseconds average Ran substr() in 0.1308 microseconds average
Output for 5.5.22
Ran str_replace() in 0.2431 microseconds average Ran substr() in 0.1360 microseconds average
Output for 5.5.21
Ran str_replace() in 0.2503 microseconds average Ran substr() in 0.1339 microseconds average
Output for 5.5.20
Ran str_replace() in 0.2354 microseconds average Ran substr() in 0.1425 microseconds average
Output for 5.5.19
Ran str_replace() in 0.2447 microseconds average Ran substr() in 0.1375 microseconds average
Output for 5.5.18
Ran str_replace() in 0.2280 microseconds average Ran substr() in 0.1385 microseconds average
Output for 5.5.17
Ran str_replace() in 0.2302 microseconds average Ran substr() in 0.1351 microseconds average
Output for 5.5.16
Ran str_replace() in 0.2440 microseconds average Ran substr() in 0.1339 microseconds average
Output for 5.5.15
Ran str_replace() in 0.2432 microseconds average Ran substr() in 0.1347 microseconds average
Output for 5.5.14
Ran str_replace() in 0.2353 microseconds average Ran substr() in 0.1366 microseconds average
Output for 5.5.13
Ran str_replace() in 0.2790 microseconds average Ran substr() in 0.1600 microseconds average
Output for 5.5.12
Ran str_replace() in 0.3076 microseconds average Ran substr() in 0.1635 microseconds average
Output for 5.5.11
Ran str_replace() in 0.2715 microseconds average Ran substr() in 0.1574 microseconds average
Output for 5.5.10
Ran str_replace() in 0.2616 microseconds average Ran substr() in 0.1345 microseconds average
Output for 5.5.9
Ran str_replace() in 0.2368 microseconds average Ran substr() in 0.1522 microseconds average
Output for 5.5.8
Ran str_replace() in 0.2302 microseconds average Ran substr() in 0.1350 microseconds average
Output for 5.5.7
Ran str_replace() in 0.2467 microseconds average Ran substr() in 0.1346 microseconds average
Output for 5.5.6
Ran str_replace() in 0.2293 microseconds average Ran substr() in 0.1371 microseconds average
Output for 5.5.5
Ran str_replace() in 0.2322 microseconds average Ran substr() in 0.1342 microseconds average
Output for 5.5.4
Ran str_replace() in 0.2262 microseconds average Ran substr() in 0.1363 microseconds average
Output for 5.5.3
Ran str_replace() in 0.2437 microseconds average Ran substr() in 0.1340 microseconds average
Output for 5.5.2
Ran str_replace() in 0.2475 microseconds average Ran substr() in 0.1351 microseconds average
Output for 5.5.1
Ran str_replace() in 0.2421 microseconds average Ran substr() in 0.1367 microseconds average
Output for 5.5.0
Ran str_replace() in 0.2447 microseconds average Ran substr() in 0.1415 microseconds average
Output for 5.4.45
Ran str_replace() in 0.2616 microseconds average Ran substr() in 0.1354 microseconds average
Output for 5.4.44
Ran str_replace() in 0.2352 microseconds average Ran substr() in 0.1297 microseconds average
Output for 5.4.43
Ran str_replace() in 0.2284 microseconds average Ran substr() in 0.1317 microseconds average
Output for 5.4.42
Ran str_replace() in 0.2344 microseconds average Ran substr() in 0.1443 microseconds average
Output for 5.4.41
Ran str_replace() in 0.2414 microseconds average Ran substr() in 0.1342 microseconds average
Output for 5.4.40
Ran str_replace() in 0.2316 microseconds average Ran substr() in 0.1469 microseconds average
Output for 5.4.39
Ran str_replace() in 0.2230 microseconds average Ran substr() in 0.1351 microseconds average
Output for 5.4.38
Ran str_replace() in 0.2317 microseconds average Ran substr() in 0.1335 microseconds average
Output for 5.4.37
Ran str_replace() in 0.2451 microseconds average Ran substr() in 0.1341 microseconds average
Output for 5.4.36
Ran str_replace() in 0.2576 microseconds average Ran substr() in 0.1307 microseconds average
Output for 5.4.35
Ran str_replace() in 0.2312 microseconds average Ran substr() in 0.1427 microseconds average
Output for 5.4.34
Ran str_replace() in 0.2300 microseconds average Ran substr() in 0.1384 microseconds average
Output for 5.4.33
Ran str_replace() in 0.2296 microseconds average Ran substr() in 0.1473 microseconds average
Output for 5.4.32
Ran str_replace() in 0.2308 microseconds average Ran substr() in 0.1375 microseconds average
Output for 5.4.31
Ran str_replace() in 0.2302 microseconds average Ran substr() in 0.1376 microseconds average
Output for 5.4.30
Ran str_replace() in 0.2350 microseconds average Ran substr() in 0.1302 microseconds average
Output for 5.4.29
Ran str_replace() in 0.2232 microseconds average Ran substr() in 0.1301 microseconds average
Output for 5.4.28
Ran str_replace() in 0.2263 microseconds average Ran substr() in 0.1311 microseconds average
Output for 5.4.27
Ran str_replace() in 0.2412 microseconds average Ran substr() in 0.1356 microseconds average
Output for 5.4.26
Ran str_replace() in 0.2399 microseconds average Ran substr() in 0.1505 microseconds average
Output for 5.4.25
Ran str_replace() in 0.2401 microseconds average Ran substr() in 0.1365 microseconds average
Output for 5.4.24
Ran str_replace() in 0.2485 microseconds average Ran substr() in 0.1341 microseconds average
Output for 5.4.23
Ran str_replace() in 0.2499 microseconds average Ran substr() in 0.1342 microseconds average
Output for 5.4.22
Ran str_replace() in 0.2332 microseconds average Ran substr() in 0.1306 microseconds average
Output for 5.4.21
Ran str_replace() in 0.2307 microseconds average Ran substr() in 0.1289 microseconds average
Output for 5.4.20
Ran str_replace() in 0.2253 microseconds average Ran substr() in 0.1320 microseconds average
Output for 5.4.19
Ran str_replace() in 0.2246 microseconds average Ran substr() in 0.1295 microseconds average
Output for 5.4.18
Ran str_replace() in 0.2362 microseconds average Ran substr() in 0.1306 microseconds average
Output for 5.4.17
Ran str_replace() in 0.2281 microseconds average Ran substr() in 0.1312 microseconds average
Output for 5.4.16
Ran str_replace() in 0.2724 microseconds average Ran substr() in 0.1529 microseconds average
Output for 5.4.15
Ran str_replace() in 0.2962 microseconds average Ran substr() in 0.1621 microseconds average
Output for 5.4.14
Ran str_replace() in 0.2699 microseconds average Ran substr() in 0.1406 microseconds average
Output for 5.4.13
Ran str_replace() in 0.2544 microseconds average Ran substr() in 0.1312 microseconds average
Output for 5.4.12
Ran str_replace() in 0.2350 microseconds average Ran substr() in 0.1285 microseconds average
Output for 5.4.11
Ran str_replace() in 0.2484 microseconds average Ran substr() in 0.1341 microseconds average
Output for 5.4.10
Ran str_replace() in 0.2351 microseconds average Ran substr() in 0.1325 microseconds average
Output for 5.4.9
Ran str_replace() in 0.2336 microseconds average Ran substr() in 0.1334 microseconds average
Output for 5.4.8
Ran str_replace() in 0.2299 microseconds average Ran substr() in 0.1358 microseconds average
Output for 5.4.7
Ran str_replace() in 0.2308 microseconds average Ran substr() in 0.1306 microseconds average
Output for 5.4.6
Ran str_replace() in 0.2459 microseconds average Ran substr() in 0.1318 microseconds average
Output for 5.4.5
Ran str_replace() in 0.2425 microseconds average Ran substr() in 0.1323 microseconds average
Output for 5.4.4
Ran str_replace() in 0.2267 microseconds average Ran substr() in 0.1309 microseconds average
Output for 5.4.3
Ran str_replace() in 0.2254 microseconds average Ran substr() in 0.1309 microseconds average
Output for 5.4.2
Ran str_replace() in 0.2239 microseconds average Ran substr() in 0.1375 microseconds average
Output for 5.4.1
Ran str_replace() in 0.2240 microseconds average Ran substr() in 0.1320 microseconds average
Output for 5.4.0
Ran str_replace() in 0.2404 microseconds average Ran substr() in 0.1450 microseconds average
Output for 5.3.29
Ran str_replace() in 0.3046 microseconds average Ran substr() in 0.1587 microseconds average
Output for 5.3.28
Ran str_replace() in 0.3280 microseconds average Ran substr() in 0.1647 microseconds average
Output for 5.3.27
Ran str_replace() in 0.3339 microseconds average Ran substr() in 0.1592 microseconds average
Output for 5.3.26
Ran str_replace() in 0.3250 microseconds average Ran substr() in 0.1571 microseconds average
Output for 5.3.25
Ran str_replace() in 0.3069 microseconds average Ran substr() in 0.1631 microseconds average
Output for 5.3.24
Ran str_replace() in 0.3165 microseconds average Ran substr() in 0.1857 microseconds average
Output for 5.3.23
Ran str_replace() in 0.3358 microseconds average Ran substr() in 0.1831 microseconds average
Output for 5.3.22
Ran str_replace() in 0.3055 microseconds average Ran substr() in 0.1538 microseconds average
Output for 5.3.21
Ran str_replace() in 0.3082 microseconds average Ran substr() in 0.1477 microseconds average
Output for 5.3.20
Ran str_replace() in 0.3077 microseconds average Ran substr() in 0.1552 microseconds average
Output for 5.3.19
Ran str_replace() in 0.2999 microseconds average Ran substr() in 0.1562 microseconds average
Output for 5.3.18
Ran str_replace() in 0.3065 microseconds average Ran substr() in 0.1471 microseconds average
Output for 5.3.17
Ran str_replace() in 0.3082 microseconds average Ran substr() in 0.1506 microseconds average
Output for 5.3.16
Ran str_replace() in 0.3247 microseconds average Ran substr() in 0.1552 microseconds average
Output for 5.3.15
Ran str_replace() in 0.3186 microseconds average Ran substr() in 0.1468 microseconds average
Output for 5.3.14
Ran str_replace() in 0.2944 microseconds average Ran substr() in 0.1482 microseconds average
Output for 5.3.13
Ran str_replace() in 0.3178 microseconds average Ran substr() in 0.1600 microseconds average
Output for 5.3.12
Ran str_replace() in 0.3087 microseconds average Ran substr() in 0.1481 microseconds average
Output for 5.3.11
Ran str_replace() in 0.3112 microseconds average Ran substr() in 0.1465 microseconds average
Output for 5.3.10
Ran str_replace() in 0.3081 microseconds average Ran substr() in 0.1505 microseconds average
Output for 5.3.9
Ran str_replace() in 0.3059 microseconds average Ran substr() in 0.1545 microseconds average
Output for 5.3.8
Ran str_replace() in 0.3028 microseconds average Ran substr() in 0.1602 microseconds average
Output for 5.3.7
Ran str_replace() in 0.2951 microseconds average Ran substr() in 0.1704 microseconds average
Output for 5.3.6
Ran str_replace() in 0.3207 microseconds average Ran substr() in 0.1587 microseconds average
Output for 5.3.5
Ran str_replace() in 0.3336 microseconds average Ran substr() in 0.1534 microseconds average
Output for 5.3.4
Ran str_replace() in 0.3075 microseconds average Ran substr() in 0.1527 microseconds average
Output for 5.3.3
Ran str_replace() in 0.3431 microseconds average Ran substr() in 0.1533 microseconds average
Output for 5.3.2
Ran str_replace() in 0.3191 microseconds average Ran substr() in 0.1530 microseconds average
Output for 5.3.1
Ran str_replace() in 0.3278 microseconds average Ran substr() in 0.1586 microseconds average
Output for 5.3.0
Ran str_replace() in 0.3005 microseconds average Ran substr() in 0.1532 microseconds average
Output for 5.2.17
Ran str_replace() in 0.3348 microseconds average Ran substr() in 0.1655 microseconds average
Output for 5.2.16
Ran str_replace() in 0.3325 microseconds average Ran substr() in 0.1756 microseconds average
Output for 5.2.15
Ran str_replace() in 0.3523 microseconds average Ran substr() in 0.1690 microseconds average
Output for 5.2.14
Ran str_replace() in 0.3472 microseconds average Ran substr() in 0.1768 microseconds average
Output for 5.2.13
Ran str_replace() in 0.3416 microseconds average Ran substr() in 0.1646 microseconds average
Output for 5.2.12
Ran str_replace() in 0.3466 microseconds average Ran substr() in 0.1726 microseconds average
Output for 5.2.11
Ran str_replace() in 0.3603 microseconds average Ran substr() in 0.1686 microseconds average
Output for 5.2.10
Ran str_replace() in 0.3314 microseconds average Ran substr() in 0.1607 microseconds average
Output for 5.2.9
Ran str_replace() in 0.3582 microseconds average Ran substr() in 0.1737 microseconds average
Output for 5.2.8
Ran str_replace() in 0.3367 microseconds average Ran substr() in 0.1855 microseconds average
Output for 5.2.7
Ran str_replace() in 0.3478 microseconds average Ran substr() in 0.1685 microseconds average
Output for 5.2.6
Ran str_replace() in 0.3431 microseconds average Ran substr() in 0.1718 microseconds average
Output for 5.2.5
Ran str_replace() in 0.3886 microseconds average Ran substr() in 0.1681 microseconds average
Output for 5.2.4
Ran str_replace() in 0.3487 microseconds average Ran substr() in 0.1801 microseconds average
Output for 5.2.3
Ran str_replace() in 0.3485 microseconds average Ran substr() in 0.1683 microseconds average
Output for 5.2.2
Ran str_replace() in 0.3361 microseconds average Ran substr() in 0.1767 microseconds average
Output for 5.2.1
Ran str_replace() in 0.3447 microseconds average Ran substr() in 0.1624 microseconds average
Output for 5.2.0
Ran str_replace() in 0.3804 microseconds average Ran substr() in 0.1717 microseconds average
Output for 5.1.6
Ran str_replace() in 0.3667 microseconds average Ran substr() in 0.1560 microseconds average
Output for 5.1.5
Ran str_replace() in 0.3810 microseconds average Ran substr() in 0.2005 microseconds average
Output for 5.1.4
Ran str_replace() in 0.3823 microseconds average Ran substr() in 0.1932 microseconds average
Output for 5.1.3
Ran str_replace() in 0.3488 microseconds average Ran substr() in 0.1525 microseconds average
Output for 5.1.2
Ran str_replace() in 0.3260 microseconds average Ran substr() in 0.1584 microseconds average
Output for 5.1.1
Ran str_replace() in 0.3401 microseconds average Ran substr() in 0.1640 microseconds average
Output for 5.1.0
Ran str_replace() in 0.3169 microseconds average Ran substr() in 0.1571 microseconds average
Output for 5.0.5
Ran str_replace() in 0.5725 microseconds average Ran substr() in 0.3845 microseconds average
Output for 5.0.4
Ran str_replace() in 0.5648 microseconds average Ran substr() in 0.3984 microseconds average
Output for 5.0.3
Ran str_replace() in 0.5319 microseconds average Ran substr() in 0.3991 microseconds average
Output for 5.0.2
Ran str_replace() in 0.5250 microseconds average Ran substr() in 0.3618 microseconds average
Output for 5.0.1
Ran str_replace() in 0.5398 microseconds average Ran substr() in 0.3782 microseconds average
Output for 5.0.0
Ran str_replace() in 0.5179 microseconds average Ran substr() in 0.3679 microseconds average
Output for 4.4.9
Ran str_replace() in 0.4647 microseconds average Ran substr() in 0.3148 microseconds average
Output for 4.4.8
Ran str_replace() in 0.4878 microseconds average Ran substr() in 0.3192 microseconds average
Output for 4.4.7
Ran str_replace() in 0.4780 microseconds average Ran substr() in 0.3142 microseconds average
Output for 4.4.6
Ran str_replace() in 0.4772 microseconds average Ran substr() in 0.3275 microseconds average
Output for 4.4.5
Ran str_replace() in 0.4811 microseconds average Ran substr() in 0.3173 microseconds average
Output for 4.4.4
Ran str_replace() in 0.4676 microseconds average Ran substr() in 0.3273 microseconds average
Output for 4.4.3
Ran str_replace() in 0.4883 microseconds average Ran substr() in 0.3485 microseconds average
Output for 4.4.2
Ran str_replace() in 0.5194 microseconds average Ran substr() in 0.3467 microseconds average
Output for 4.4.1
Ran str_replace() in 0.5592 microseconds average Ran substr() in 0.3616 microseconds average
Output for 4.4.0
Ran str_replace() in 0.5501 microseconds average Ran substr() in 0.3213 microseconds average
Output for 4.3.11
Ran str_replace() in 0.5139 microseconds average Ran substr() in 0.3534 microseconds average
Output for 4.3.10
Ran str_replace() in 0.4719 microseconds average Ran substr() in 0.3342 microseconds average
Output for 4.3.9
Ran str_replace() in 0.4685 microseconds average Ran substr() in 0.3131 microseconds average
Output for 4.3.8
Ran str_replace() in 0.4683 microseconds average Ran substr() in 0.3267 microseconds average
Output for 4.3.7
Ran str_replace() in 0.4731 microseconds average Ran substr() in 0.3270 microseconds average
Output for 4.3.6
Ran str_replace() in 0.5018 microseconds average Ran substr() in 0.3272 microseconds average
Output for 4.3.5
Ran str_replace() in 0.4881 microseconds average Ran substr() in 0.3299 microseconds average
Output for 4.3.4
Ran str_replace() in 0.4631 microseconds average Ran substr() in 0.3285 microseconds average
Output for 4.3.3
Ran str_replace() in 0.4916 microseconds average Ran substr() in 0.3310 microseconds average
Output for 4.3.2
Ran str_replace() in 0.5277 microseconds average Ran substr() in 0.3590 microseconds average
Output for 4.3.1
Ran str_replace() in 0.4754 microseconds average Ran substr() in 0.3118 microseconds average
Output for 4.3.0
Ran str_replace() in 0.4634 microseconds average Ran substr() in 0.3253 microseconds average

preferences:
304.01 ms | 401 KiB | 460 Q