Skip to content

Instantly share code, notes, and snippets.

@EricBusch
Last active November 6, 2022 11:05
Show Gist options
  • Select an option

  • Save EricBusch/6795340 to your computer and use it in GitHub Desktop.

Select an option

Save EricBusch/6795340 to your computer and use it in GitHub Desktop.
<?php
$networks = $api->getNetworks( array(), FALSE, array( '_id', 'name' ) );
foreach( $networks as $network ) {
echo 'Network ID: ' . $network['_id'];
echo 'Network Name: ' . $network['name'];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment