Hi! Could we please enable some services and cookies to improve your experience and our website?

PHPize | SQLize | SQLtest

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

A A A
Login    Share code      Blog   FAQ
Copy Format Clear

Stuck with a problem? Got Error? Ask AI support!

Copy Clear
Copy Format Clear
<?php $input = [ 123123123, 123124534534, 2345234234, 1243123123, 234534252345, ]; var_dump(array_reduce($input, fn ($acc, $ts) => round($ts / 60) + $acc, 0)); var_dump(round(array_reduce($input, fn ($acc, $ts) => $ts / 60 + $acc, 0)));
Copy Clear