Skip to content
This repository was archived by the owner on Apr 12, 2020. It is now read-only.

Latest commit

 

History

History
12 lines (9 loc) · 361 Bytes

File metadata and controls

12 lines (9 loc) · 361 Bytes

PHP Function Test

Simple project to benchmark the speed of any PHP function.

Demo

https://php-function-test.herokuapp.com

Instructions

In order to have a successful test, you must enclose all business logic inside the self-invoking PHP function.

(function() { $data = [...]; return sort($data); });