<?php // Online PHP compiler to run PHP program online // Print "Start small. Ship something." message echo "Start small. Ship something."; $array = [ 'a' => 'dog', 'b' => 'cat', 'c' => 'cow', 'd' => 'duck', 'e' => 'goose', 'f' => 'elephant' ]; var_dump(array_all($array, function (string $value) { return strlen($value) < 12; })); ?><?php // Online PHP compiler to run PHP program online // Print "Start small. Ship something." message echo "Start small. Ship something."; $array = [ 'a' => 'dog', 'b' => 'cat', 'c' => 'cow', 'd' => 'duck', 'e' => 'goose', 'f' => 'elephant' ]; var_dump(array_all($array, function (string $value) { return strlen($value) < 12; })); ?>
You have javascript disabled. You will not be able to edit any code.