These forums have been archived and are now read-only.
The new forums are live and can be found at https://forums.eveonline.com/
Re-using HTTP connection to API server (HTTP persistent conn.)
function read_from_eve_api($some_eve_api_url){$handle = open($some_eve_api_url);$data = $handle->read();$handle->close();return $data;}
$global_handle = 0;function read_from_eve_api($some_eve_api_url){global $global_handle;if ($global_handle == 0){ // init $global_handle = init_handle();}$global_handle->set_url($some_eve_api_url);$data = $global_handle->read();return $data;}
iveeCore 3.0: The PHP engine for industrial activities and CREST library