mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Small example fix.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@69607 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
0422dc10f7
commit
41269b9313
1 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.33 $ -->
|
||||
<!-- $Revision: 1.34 $ -->
|
||||
<reference id="ref.sockets">
|
||||
<title>Socket functions</title>
|
||||
<titleabbrev>Sockets</titleabbrev>
|
||||
|
@ -56,6 +56,10 @@ error_reporting (E_ALL);
|
|||
/* Allow the script to hang around waiting for connections. */
|
||||
set_time_limit (0);
|
||||
|
||||
/* Turn on implicit output flushing so we see what we're getting
|
||||
* as it comes in. */
|
||||
ob_implicit_flush ();
|
||||
|
||||
$address = '192.168.1.53';
|
||||
$port = 10000;
|
||||
|
||||
|
|
Loading…
Reference in a new issue