Cast.php 277 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 <?php namespace Nextend\Framework; class Cast { /** * @param $number * * @return string the JavaScript float representation of the string */ public static function floatToString($number) { return json_encode(floatval($number)); } }