/php-function-test

Benchmark the performance of any PHP function

Primary LanguagePHPGNU General Public License v3.0GPL-3.0

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); });