public function Socket::fgets in reCAPTCHA 6.2
Same name and namespace in other branches
- 8.2 recaptcha-php/src/ReCaptcha/RequestMethod/Socket.php \ReCaptcha\RequestMethod\Socket::fgets()
- 7.2 recaptcha-php/src/ReCaptcha/RequestMethod/Socket.php \ReCaptcha\RequestMethod\Socket::fgets()
fgets
Parameters
int $length:
Return value
string
See also
File
- recaptcha-php/
src/ ReCaptcha/ RequestMethod/ Socket.php, line 79
Class
- Socket
- Convenience wrapper around native socket and file functions to allow for mocking.
Namespace
ReCaptcha\RequestMethodCode
public function fgets($length = null) {
return fgets($this->handle, $length);
}