| PHP baseline (info calls) |
0.013 ms |
|
Good |
Time to execute trivial built-in calls. |
| Integer math (200000 iterations) |
6.201 ms |
|
Good |
Pure CPU: loops, modulo, XOR, bit-shift. |
| Float math — sqrt/sin/log (200000×) |
15.947 ms |
|
Good |
Floating-point unit throughput. |
| String ops — upper/replace/substr/rev (20000×) |
56.261 ms |
|
Warn |
Common string manipulation throughput. |
| Array ops — map/filter/sort/unique (2000× on 1k items) |
510.109 ms |
|
Bad |
Array pipeline performance. |
| Regex — match/replace on 6 KB text (4000×) |
161.158 ms |
|
Bad |
PCRE engine speed; relevant for parsing & validation. |
| JSON encode+decode — 100-item array (4000×) |
999.971 ms |
|
Bad |
Relevant for REST APIs and data interchange. |
| File I/O — write+read 512 KB × 20 |
29.891 ms |
|
Good |
Disk read/write speed; affects log writes, file caches. |
| Hash — md5/sha1/sha256/crc32b (20000×) |
331.582 ms |
|
Bad |
Crypto hash throughput; relevant for auth tokens, checksums. |
| cURL GET — web.pulsepoint.org |
479.542 ms |
|
Warn |
HTTP 200. Measures outbound network latency + DNS from this host. |
| Session start + write + close |
0.212 ms |
|
Good |
Session handler speed; shared-hosting often uses file sessions. |