Additionner un nombre avec un string

Author:
$text = "hello";
$text += 1;     # La chaîne est ignorée
print $text;