phpAMI 1.0 aTxfer Envia "ManagerAction_Atxfer" Trasferencia Antendida return: ver eventSimple() link: https://wiki.asterisk.org/wiki/display/AST/ManagerAction_Atxfer array aTxfer (string $channel, string $context, string $exten, starin $priority) string $channel: Canal string $context: Contexto string $exten: Extencion starin $priority: Prioridad de extentncion -------------Interface AMI------------- Action: Atxfer Exten: 500 Context: home Priority: 1 Channel: DAHDI/2-1 Response: Success Message: Atxfer successfully queued --------------------------------------- ----------------Ejemplo---------------- --------------------------------------- login(); if($login["Response"]=="Success"){ print_r($ami->aTxfer ("DAHDI/2-1","contexHome","500","1")); $ami->logoff(); } ?> ----------Respuesta de phpAMI---------- Array ( [Response] => Success [Message] => Atxfer successfully queued ) Si el Canal no existe Responde: Array ( [Response] => Error [Message] => Channel specified does not exist ) ---------------------------------------