[PHP-DEV] CVS update: php3/doc/functions From: rasmus (php-dev <email protected>)
Date: 01/29/99

Date: Friday January 29, 1999 @ 1:26
Author: rasmus

Update of /repository/php3/doc/functions
In directory asf:/u/temp/cvs-serv2492/doc/functions

Modified Files:
        misc.sgml
Log Message:
Phew.. That's a whole lot of docs

Index: php3/doc/functions/misc.sgml
diff -c php3/doc/functions/misc.sgml:1.16 php3/doc/functions/misc.sgml:1.17
*** php3/doc/functions/misc.sgml:1.16 Tue Dec 15 03:54:57 1998
--- php3/doc/functions/misc.sgml Fri Jan 29 01:26:44 1999
***************
*** 8,13 ****
--- 8,64 ----
      categories seemed to fit.
    </partintro>
  
+ <refentry id="function.connection-aborted">
+ <refnamediv>
+ <refname>connection_aborted</refname>
+ <refpurpose>Return true if client disconnected</refpurpose>
+ </refnamediv>
+ <refsect1>
+ <title>Description</title>
+ <funcsynopsis>
+ <funcdef>int <function>connection_aborted</function></funcdef>
+ </funcsynopsis>
+ <simpara>
+ Returns true if client disconnected. See the Connection Handling
+ description in the Feature chapter for a complete explanation.
+ </simpara>
+ </refsect1>
+ </refentry>
+
+ <refentry id="function.connection-status">
+ <refnamediv>
+ <refname>connection_status</refname>
+ <refpurpose>Returns connection status bitfield</refpurpose>
+ </refnamediv>
+ <refsect1>
+ <title>Description</title>
+ <funcsynopsis>
+ <funcdef>int <function>connection_status</function></funcdef>
+ </funcsynopsis>
+ <simpara>
+ Returns the connection status bitfield. See the Connection Handling
+ description in the Feature chapter for a complete explanation.
+ </simpara>
+ </refsect1>
+ </refentry>
+
+ <refentry id="function.connection-timeout">
+ <refnamediv>
+ <refname>connection_timeout</refname>
+ <refpurpose>Return true if script timed out</refpurpose>
+ </refnamediv>
+ <refsect1>
+ <title>Description</title>
+ <funcsynopsis>
+ <funcdef>int <function>connection_timeout</function></funcdef>
+ </funcsynopsis>
+ <simpara>
+ Returns true if script timed out. See the Connection Handling
+ description in the Feature chapter for a complete explanation.
+ </simpara>
+ </refsect1>
+ </refentry>
+
    <refentry id="function.eval">
     <refnamediv>
      <refname>eval</refname>
***************
*** 107,114 ****
           This language construct terminates parsing of the script. It does not
           return.
     </refsect1>
! </refentry>
  
    <refentry id="function.iptcparse">
     <refnamediv>
      <refname>iptcparse</refname>
--- 158,186 ----
           This language construct terminates parsing of the script. It does not
           return.
     </refsect1>
! </refentry>
  
+ <refentry id="function.ignore-user-abort">
+ <refnamediv>
+ <refname>ignore_user_abort</refname>
+ <refpurpose>Set whether a client disconnect should abort script execution</refpurpose>
+ </refnamediv>
+ <refsect1>
+ <title>Description</title>
+ <funcsynopsis>
+ <funcdef>int <function>ignore_user_abort</function></funcdef>
+ <paramdef>int <parameter><optional>setting</optional></parameter></paramdef>
+ </funcsynopsis>
+ <simpara>
+ This function sets whether a client disconnect should cause a script to be aborted.
+ It will return the previous setting and can be called without an argument to not
+ change the current setting and only return the current setting. See the Connection
+ Handling section in the Features chapter for a complete description of connection
+ handling in PHP.
+ </simpara>
+ </refsect1>
+ </refentry>
+
    <refentry id="function.iptcparse">
     <refnamediv>
      <refname>iptcparse</refname>
***************
*** 244,250 ****
     </funcsynopsis>
     <simpara>
       Registers the function named by <parameter>func</parameter> to be
! executed when script processing is complete.
    </refsect1>
   </refentry>
  
--- 316,322 ----
     </funcsynopsis>
     <simpara>
       Registers the function named by <parameter>func</parameter> to be
! executed when script processing is complete.
    </refsect1>
   </refentry>
  

--
PHP Development Mailing List   http://www.php.net/
To unsubscribe send an empty message to php-dev-unsubscribe <email protected>
For help: php-dev-help <email protected>