<?php $data = 42.0; echo "$data <br>"; $int = (int) $data; echo "$int <br>"; $str = (string) $int; echo "$str <br>"; ?>