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