- [Shared Markets](./examples/php/) ```php verbose = true; // this is a debug output to demonstrate which networking calls are being issued if (file_exists($markets_on_disk)) { $cache = json_decode(file_get_contents($markets_on_disk), true); foreach ($keys as $key) { $exchange->{$key} = $cache[$key]; } } else { $exchange->load_markets(); $cache = array(); foreach ($keys as $key) { $cache[$key] = $exchange->{$key}; } file_put_contents($markets_on_disk, json_encode($cache)); } $exchange->fetch_ticker('ETH/BTC'); ```