I have a large number [987654321999999] that i wanna pass it to jquery but it return large number with scientific notation [9.87654322E+14]. How can i send the large number to jquery without scientific notation?
PHP function
public function actionCalPrice()
{
$totalPrice = 987654321999999;
echo CJSON::encode($totalPrice);
}
In JQuery
$.ajax({
type: "POST",
url: "<?php echo Yii::app()->createUrl('items/calPrice');?>",
data:{ajax:ajax},
dataType: "json",
success: function(data) {
alert(data);
}
});