What is the explanation for these adverse results if in the two operations I am subtracting a string from a number?
The operation below
echo "Você nasceu em ". date('Y') - 20;
Return -20
and the operations below
echo date('Y') . "Você nasceu em " - 20;
echo "2017 Você nasceu em " - 20;
Return 2007