Convert a big integer to a full string in PHP

前端 未结 4 1268
失恋的感觉
失恋的感觉 2020-12-03 23:12

I\'ve been searching for a while now, but what I can find is not what I search for. I need to convert an integer value, that may be very huge, to a string. Sounds e

4条回答
  •  离开以前
    2020-12-03 23:38

    I'm facing this problem when getting facebook id and find it in MySQL. And after half hour, i found this work perfectly! Insert this line to your php script:

    ini_set('precision',30);
    

    From: https://forums.phpfreaks.com/topic/125907-solved-convert-big-number-to-string/#entry651084

提交回复
热议问题