<?php

function array_all($array, $callback) {
    foreach($array as $item) {
        if (!$callback($item)) {
            return false;
        }
    }
    
    return true;
}

$title = 0;
$squad = 0;
$level = 0;

$resultado = array_all([$title, $squad, $level], function ($item) {
    return $item == 0;
});

var_dump($resultado);