Last active
November 6, 2022 11:05
-
-
Save EricBusch/6795340 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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