- array_rand: documentation ( source)
- array_filter: documentation ( source)
<?php
$a=2;
$b=0;
$c=7;
$d=0;
$e=3;
$array = [$a, $b, $c, $d, $e];
$filtered_array = array_filter($array);
$random_index = array_rand($filtered_array);
echo $filtered_array[$random_index];