phpAMI 1.0 ping Envia "ManagerAction_Ping" return: ver responceInfo() link: https://wiki.asterisk.org/wiki/display/AST/ManagerAction_Ping array ping () -------------Interface AMI------------- Action: Ping Response: Success Ping: Pong Timestamp: 1330103825.133687 --------------------------------------- ----------------Ejemplo---------------- include "phpAMI.php"; $ami=new phpAMI("user","pass","host"); $login=$ami->login(); if($login["Response"]=="Success"){ print_r($ami->ping()); $ami->logoff(); } --------------------------------------- ----------Respuesta de phpAMI---------- Array ( [Response] => Success [Info] => Array ( [Ping] => Pong [Timestamp] => 1330450561.021160 ) ) ---------------------------------------