We need a function that can transform a number into a string.

What ways of achieving this do you know?

Examples:

123 --> "123"
999 --> "999"

Solution

function numberToString($num){
  return "$num"; // strval($num) or cast to string, i.e. (string) $num
}