Skip to content

Instantly share code, notes, and snippets.

@soffi
Created October 19, 2012 19:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save soffi/3920100 to your computer and use it in GitHub Desktop.
Save soffi/3920100 to your computer and use it in GitHub Desktop.
<?php
$script_mode = TRUE;
include ('inc/init.php');
$objectid = '905';
$serverinfo = spotEntity ('object', $objectid);
amplifyCell ($serverinfo);
foreach($serverinfo[ports] as &$ports)
{
foreach($serverinfo[ipv4] as $ips)
{
if($ports['name'] === $ips['osif'])
{
$result[] = array_merge($ports, $ips);
}
}
}
// cleanup, I only want a few values
foreach ($result as $megaport) {
$results[] = array($megaport[l2address], $megaport[name], $megaport[addrinfo][ip]);
}
print_r($results);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment