Changeset 1348
- Timestamp:
- 02/20/08 15:59:55 (9 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/util/net/stubSocket.php
r1301 r1348 81 81 $errno = 0; 82 82 $errstr = ''; 83 $this->fp = fsockopen($this->host, $this->port, $errno, $errstr, $this->timeout);83 $this->fp = @fsockopen($this->host, $this->port, $errno, $errstr, $this->timeout); 84 84 if (false === $this->fp) { 85 85 $this->fp = null;
