<?php $array = [0, 1, 0, 1, 0, 0]; var_export( array_reduce( $array, function ($result, $b) { static $last; if (!$last || $b) { $result[] = $b; } $last = $b; return $result; }, [] ) );
You have javascript disabled. You will not be able to edit any code.