<?php
 declare(strict_types=1);

 function sum(int ...$ints): string {
  return array_sum($ints);
 }

 echo sum(1, 2, "3");
 echo sum(1, 2, 3);
 ?>