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

PHPize Online / SQLize Online  /  SQLtest Online

A A A
Login    Share code      Blog   FAQ

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

Copy Format Clear

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

Copy Clear
Copy Format Clear
<?php $arr = [ 0 => 1, 1 => 2, 2 => 1, 3 => 2, 4 => 8, 5 => 7, 6 => 6, 7 => 6, 8 => 6, 9 => 5, 10 => 8, 11 => 4, 12 => 1, 13 => 1, 14 => 1, 15 => 1 ]; $items = array_slice(array_unique(array_reverse($arr)), 0, 5); print_r($items);
Copy Clear