TcpClient.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <?php
  2. declare(strict_types=1);
  3. namespace tcpclient;
  4. class TcpClient {
  5. private $host ;
  6. private $port ;
  7. private $socket ;
  8. private $error ;
  9. private $result = '';
  10. public function __construct( $host, $port ){
  11. $this->host = $host;
  12. $this->port = $port;
  13. }
  14. public function send( $msg, $len = 0, $isbin = false ){
  15. $this->socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
  16. if ($this->socket === FALSE) {
  17. return array('success' => false,
  18. 'message' => "socket创建失败: " . socket_strerror(socket_last_error()));
  19. }
  20. socket_set_option($this->socket, SOL_SOCKET, SO_SNDTIMEO, array('sec' => 3, 'usec' => 0));
  21. socket_set_option($this->socket, SOL_SOCKET, SO_RCVTIMEO, array('sec' => 10, 'usec' => 0));
  22. if (!$this->connect()) {
  23. socket_close($this->socket);
  24. return array('success' => false, 'message' => $this->error,'code'=>'10000');
  25. }
  26. if (!$isbin) {
  27. if (!$this->write($msg . chr(0), strlen($msg) + 1)) {
  28. socket_close($this->socket);
  29. return array('success' => false, 'message' => $this->error,'code'=>'10001');
  30. }
  31. } else {
  32. if (!$this->write($msg, strlen($msg))) {
  33. socket_close($this->socket);
  34. return array('success' => false, 'message' => $this->error,'code'=>'10002');
  35. }
  36. }
  37. if (!$this->read()) {
  38. socket_close($this->socket);
  39. return array('success' => false, 'message' => $this->error,'code'=>'10003');
  40. }
  41. $ret = json_decode(trim($this->result), true);
  42. if (is_array($ret)){
  43. return $ret;
  44. }
  45. return array('success' => false, 'message' => '返回数据格式错误:' .$this->result);
  46. }
  47. private function connect( ){
  48. $timeout = 5;
  49. socket_set_block($this->socket);
  50. $time = time();
  51. while (!@socket_connect($this->socket, $this->host, $this->port)) {
  52. $err = socket_last_error($this->socket);
  53. if($err === 56) {
  54. //echo 'connected ok';
  55. break;
  56. }
  57. if ((time() - $time) >= $timeout) {
  58. $this->error = '连接超时';
  59. return false;
  60. }
  61. usleep(250000);
  62. }
  63. socket_set_block($this->socket);
  64. return true;
  65. }
  66. private function write( $msg, $length ){
  67. while(true) {
  68. $sent = socket_write($this->socket, $msg, $length);
  69. if($sent === false) {
  70. $this->error = "发送失败" . socket_strerror(socket_last_error());;
  71. return false;
  72. }
  73. if($sent < $length) {
  74. $msg = substr($msg, $sent);
  75. $length -= $sent;
  76. //echo "这些字节没法送 :$msg:重新发送";
  77. $this->error = "发送失败,信息发送不完整";
  78. return false;
  79. } else {
  80. return true;
  81. }
  82. }
  83. }
  84. private function read( ){
  85. socket_clear_error();
  86. while (true) {
  87. $out = socket_read($this->socket, 2048);
  88. if ($out == false)
  89. break;
  90. $this->result .= $out;
  91. }
  92. $errorCode = socket_last_error($this->socket);
  93. if ($errorCode == 115 || $errorCode == 114 || $errorCode == 104) {
  94. // echo "\n连接关闭\n";
  95. return true;
  96. } else if ($errorCode == 11) { //读取超时
  97. $this->error = "读取超时";
  98. return false;
  99. } else {
  100. // $this->error = "读取失败:" . socket_strerror($errorCode);
  101. }
  102. return true;
  103. }
  104. }