ok ya lo encontre la funcion corecta pero tengo un problema que no organiza en orden y tambien muetra el mismo numero multiple
aqui esta lo que ya logre hacer funcionar
Código PHP:
Ver original<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Servicio Up</title>
</head>
<body>
<table width="200" border="1">
<tr>
<td align="center">Canales Activos</td>
</tr>
<?php
$ip = "192.168.1.1";
$port = "5050";
$user = "user";
$pass = "pass";
$i = 0;
$xml = simplexml_load_file("http://".$user.":".$pass."@".$ip.":".$port."/cache-listening.xml?server");
$currently = "currently-active-cache";
$cache = "cache-element";
foreach($xml->$currently->provider->$cache as $sids) {
$sid = (string)$sids->attributes()->sid[$i];
echo "<tr>";
echo "<td>".$sid."</td>";
echo "</tr>";
$i++;
}
?>
</table>
</body>
</html>