C
Size: a a a
C
AP
C
ИЛ
ИЛ
AP
ИЛ
C
use Drupal\Component\Utility\Timer;
Timer::start('1');
for ($i = 0; $i < 1000; $i++) {
date('Y');
}
echo Timer::read('1') . ' ms';
Timer::start('1.1');
for ($i = 0; $i < 1000; $i++) {
date('Y', 123);
}
echo Timer::read('1.1') . ' ms';
AP
C
AP
C
AP
AP
AP
C
AP
C
ab -n100 -c100 http://test.local/date1.php
(1000 итераций `date('Y')`) = 37 msC
ab -n100 -c100 http://test.local/date2.php
(1000 итераций `date('Y', 123)`) = 34 msAP