Value = Undefined
By default, a variable value is initialized to Undefined. Variable value and the data type is updated at every assignment.
Examples
$name = $name + 'new value'
The variable $name will have the value 'new value''.
$name = $name / 10
Attention
This will not work, as Undefined divided by 10 is an invalid expression.