Home  >  Article  >  php教程  >  php用socket上传图片

php用socket上传图片

WBOY
WBOYOriginal
2016-06-06 19:52:28745browse

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 服务器端: ?php set_time_limit(10); //* 设置不显示任何错误 */ //error_reporting(0); function varinfo($str) { echo "pre"; var_dump($str); echo "pre"; } $commonProtocol = getprotobyname("

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

  服务器端:

  

  set_time_limit(10);

  //* 设置不显示任何错误 */

  //error_reporting(0);

  function varinfo($str) {

  echo "

";

  var_dump($str);

  echo "

";

  }

  $commonProtocol = getprotobyname("tcp");

  $socket = socket_create(AF_INET, SOCK_STREAM, $commonProtocol);

  if ($socket) {

  $result = socket_bind($socket, '192.168.3.57', 1337);

  if ($result) {

  $result = socket_listen($socket, 5);

  if ($result) {

  echo "监听成功";

  }

  }

  }else{

  echo "监听失败";

  }

  //$path = "/home/upload/";

  $path = "e://web//";

  while (true)

  {

  $connection = socket_accept($socket);

  if($connection)

  {

  $msg = "telnet succeed!\r\n";

  socket_write($connection, $msg, strlen($msg));

  $BufferPond = array();

  $buffer = '';

  while($flag = socket_recv($connection, $buffer, 1024, 0))

  {

  if (false !== strpos($buffer,'filename:'))

  {

  $filename = substr($buffer,9);

  $filename = $path.$filename;

  $fp = fopen($filename,"wb");

  continue;

  }

  fwrite($fp,$buffer);

  }

  fclose($fp);

  socket_close($connection);

  }

  }

  socket_close($socket);

  ?>

  客户端:

  

  $errno='001';

  $errstr="socket file error";

  $fp = fsockopen("192.168.3.57", 1337, $errno, $errstr, 10);

  if (!$fp) {

  echo "$errstr ($errno)
\n";

  } else {

  $str = "filename:socket_file.bmp";

  fwrite($fp, $str);    $out = file_get_contents('../../iphone3G.bmp');

  if($out){

  fwrite($fp, $out);

  fwrite($fp,'over');

  echo "上传成功";

  }

  }

  fclose($fp);

  ?>

php用socket上传图片

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn