php Programming Glossary: stream_set_blocking
How do I verify a TLS SMTP certificate is valid in PHP? http://stackoverflow.com/questions/13402866/how-do-i-verify-a-tls-smtp-certificate-is-valid-in-php fsockopen tcp mail.example.com 25 errno errstr ... stream_set_blocking resource true stream_context_set_option resource 'ssl' 'verify_host'.. resource true STREAM_CRYPTO_METHOD_TLS_CLIENT stream_set_blocking resource false if secure die failed to connect securely n Also.. 512 Switch to TLS fwrite smtp STARTTLS r n fread smtp 512 stream_set_blocking smtp true stream_context_set_option smtp 'ssl' 'verify_peer'..
How to Build a PHP Queue System http://stackoverflow.com/questions/14149291/how-to-build-a-php-queue-system pipefile 'r ' if pipe die 'unable to open the named pipe' stream_set_blocking pipe false process the queue while 1 while input trim fgets.. process the queue while 1 while input trim fgets pipe stream_set_blocking pipe false queue input job current queue jobkey key queue.. jobkey else echo 'no jobs to do waiting...' PHP_EOL stream_set_blocking pipe true if QUEUESERVER_FORK ob_clean The hardest part was..
TCP connect by using socket return false results http://stackoverflow.com/questions/20360167/tcp-connect-by-using-socket-return-false-results socket stream_socket_client sockAddr errNo errStr 0 flags stream_set_blocking socket 0 Set up a timeout to watch for failed connections failWatcher..
dial windows serial modem from php http://stackoverflow.com/questions/2634370/dial-windows-serial-modem-from-php false die Failed opening com port else echo Com Port Open stream_set_blocking comport 0 atcmd ATDT222222222222 r dial fake number if fwrite..
Grab results from a php exec() while the command is still running? http://stackoverflow.com/questions/7703278/grab-results-from-a-php-exec-while-the-command-is-still-running proc_open After making the output stream non blocking with stream_set_blocking you can read from it whenever you want without having your PHP..
telnet connection using PHP http://stackoverflow.com/questions/905348/telnet-connection-using-php client socket fsockopen 192.168.52.1 8000 if socket return stream_set_blocking socket 0 stream_set_blocking STDIN 0 do echo read array socket.. 8000 if socket return stream_set_blocking socket 0 stream_set_blocking STDIN 0 do echo read array socket STDIN write NULL except NULL..
|