string-count-test.php

master
Anthony Axenov 2022-01-11 08:52:00 +08:00
parent 699917e051
commit 75ec9fb607
Signed by: anthony
GPG Key ID: EA9EC32FF7CCD4EC
1 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,43 @@
<?php
// Simple substring search benchmark
// https://gist.github.com/anthonyaxenov/045dac59676826236319199df1597bb5
$string = str_repeat('1', 100);
$max = 5000;
$results = [
'preg_match_all' => [
'total' => 0,
'avg' => 0
],
'substr_count' => [
'total' => 0,
'avg' => 0
],
'count_chars' => [
'total' => 0,
'avg' => 0
],
];
for ($i = 0; $i < $max; ++$i) {
$start = microtime(true);
preg_match_all('/1/', $string);
$results['preg_match_all']['total'] += round((microtime(true) - $start), 8);
}
$results['preg_match_all']['avg'] = round($results['preg_match_all']['total'] / $max, 8);
for ($i = 0; $i < $max; ++$i) {
$start = microtime(true);
substr_count($string, '1');
$results['substr_count']['total'] += round((microtime(true) - $start), 8);
}
$results['substr_count']['avg'] = round($results['substr_count']['total'] / $max, 8);
for ($i = 0; $i < $max; ++$i) {
$start = microtime(true);
count_chars($string, 1);
$results['count_chars']['total'] += round((microtime(true) - $start), 8);
}
$results['count_chars']['avg'] = round($results['count_chars']['total'] / $max, 8);
print_r($results);