The PHP docs for join() and explode() say that the $glue and $delimiter must be strings. I tried this and it doesn't throw any errors:
$glue = -8.5;
$delimiter = 0;
echo join( $glue, explode($delimiter, '1_0_1') ); // '1_-8.5_1'
So if I'm checking a $var that could be used as $glue or $delimiter, then is it safe to use is_string($var) || is_numeric($var)
as a condition OR are there times where that could be true but there'd be an error from the join() or explode()?