<?php
function coerceToString(string ...$strings) {
    var_dump($strings);
}
coerceToString(...[123]);
?>