PlanetSide Universe - View Single Post - Faster Json data
View Single Post
Old 2014-01-04, 04:12 PM   [Ignore Me] #1
SecretSquirrel
Private
 
Faster Json data


as the title says I want to pull data from the API FASTER! I am currently trying to pull data quicker
PHP Code:
$ApiLink "http://census.soe.com/";
$json_decode = (json_decode(file_get_contents($ApiLink), true));
$tada $json_decode***91;"character_list"***93;; 
the above information takes 2.4633 seconds to load, I want to make this happen faster...


Any tips? Thanks!

Last edited by SecretSquirrel; 2014-01-04 at 04:14 PM.
SecretSquirrel is offline