Twilo: Umwandlung von float in string

Beitrag lesen

Hallo,

ich versteh folgendes nicht

<?php  
  $zahl = '1.11';  
  $zahl = (float)$zahl;  
  print (string)$zahl;  
?>

warum wird da 1,11 ausgegeben?

aus

<?php  
  $zahl = '1.11';  
  $zahl = (float)$zahl;  
  print $zahl.'';  
?>

wird auch 1,11

wo ist mein Denkfehler? :-(

mfg
Twilo