39 lines
1.2 KiB
PHP
39 lines
1.2 KiB
PHP
<?php
|
|
#
|
|
function push2phone($server,$phone,$data)
|
|
{
|
|
$xml = "xml=".$data;
|
|
$post = "POST / HTTP/1.1\r\n";
|
|
$post .= "Host: $phone\r\n";
|
|
$post .= "Referer: $server\r\n";
|
|
$post .= "Connection: Keep-Alive\r\n";
|
|
$post .= "Content-Type: text/xml\r\n";
|
|
$post .= "Content-Length: ".strlen($xml)."\r\n\r\n";
|
|
$fp = @fsockopen ( $phone, 80, $errno, $errstr, 5);
|
|
if($fp)
|
|
{
|
|
fputs($fp, $post.$xml);
|
|
flush();
|
|
fclose($fp);
|
|
}
|
|
}
|
|
##############################
|
|
|
|
$xml = "<YealinkIPPhoneImageMenu destroyOnExit=\"yes\" Timeout=\"120\">\n";
|
|
$xml .= "<Image verticalAlign=\"bottom\" horizontalAlign=\"middle\" height=\"12\" width=\"8\">00555500005555000000000000aaaa0000aaaa0000ffff0000ffff0000ffff00fffffffff0ffff0f00ffff0000f00f00</Image>\n";
|
|
|
|
$xml .= "<URIList base=\"http://10.3.5.5:9/xmlBrowser/\">
|
|
<URI key=\"#\">http://10.3.5.5:9/xmlBrowser/TestInput.xml</URI>
|
|
<URI key=\"0\">http://10.3.5.5:9/xmlBrowser/TestInput.xml</URI>
|
|
<URI key=\"1\">http://10.3.5.5:9/xmlBrowser/TestInput.xml</URI>
|
|
</URIList>\n";
|
|
$xml .= "</YealinkIPPhoneImageMenu>\n";
|
|
|
|
push2phone("10.3.5.5","10.3.12.3",$xml);
|
|
push2phone("10.3.5.5","10.3.5.219",$xml);
|
|
push2phone("10.3.5.5","10.3.5.183",$xml);
|
|
|
|
#replace 10.1.3.8 with your Apache ip address
|
|
#replace 10.1.3.180 with your phone ip address
|
|
?>
|