functions.inc
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. <?php
  2. function http_send($URL,$port)
  3. {
  4.  $connection = fsockopen(BEARERBOX_HOST,$port,&$error_number,&$error_description,60);
  5.  if(!$connection) {
  6.   echo "<p>$error_description ($error_number)<br>n";
  7.   echo "The SMS message was NOT sent!</p>n";
  8.  } else {
  9.   socket_set_blocking($connection, false);
  10.   fputs($connection, "GET $URL HTTP/1.0rnrn");
  11.   while (!feof($connection)) {
  12.    $myline = fgets($connection, 128);
  13.    switch($myline)
  14.    {
  15.      case (strstr($myline, 'Content-')): break;
  16.      case (strstr($myline, 'HTTP/1')): break;
  17.      case "": break;
  18.      case "rn": break;
  19.      default: echo "<p>".$myline."</p>";
  20.    }
  21.   }
  22.   fclose ($connection);
  23.  }
  24. }
  25. function octstr_append_cstr($mystring)
  26. {
  27.  for($pos=0;$pos<strlen($mystring);$pos++) {
  28.   $mystring2 .= sprintf("%%%02x",$mystring[$pos]); 
  29.  }
  30.  return ($mystring2);
  31. }
  32. ?>