pollita         Mon Apr 12 13:43:40 2004 EDT

  Modified files:              
    /phpdoc/en/reference/stream/functions       stream-filter-register.xml 
  Log:
  Studly Caps
  
http://cvs.php.net/diff.php/phpdoc/en/reference/stream/functions/stream-filter-register.xml?r1=1.7&r2=1.8&ty=u
Index: phpdoc/en/reference/stream/functions/stream-filter-register.xml
diff -u phpdoc/en/reference/stream/functions/stream-filter-register.xml:1.7 
phpdoc/en/reference/stream/functions/stream-filter-register.xml:1.8
--- phpdoc/en/reference/stream/functions/stream-filter-register.xml:1.7 Mon Jan 19 
09:56:45 2004
+++ phpdoc/en/reference/stream/functions/stream-filter-register.xml     Mon Apr 12 
13:43:40 2004
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.7 $ -->
+<!-- $Revision: 1.8 $ -->
   <refentry id="function.stream-filter-register">
    <refnamediv>
     <refname>stream_filter_register</refname>
@@ -94,7 +94,7 @@
     </para>
 
     <methodsynopsis>
-     <type>void</type><methodname>oncreate</methodname>
+     <type>void</type><methodname>onCreate</methodname>
      <void/>
     </methodsynopsis>
     <simpara>
@@ -105,7 +105,7 @@
     </simpara>
     <simpara>
      When your filter is first instantiated, and 
-     <literal>yourfilter-&gt;oncreate()</literal> is called, a number of properties
+     <literal>yourfilter-&gt;onCreate()</literal> is called, a number of properties
      will be available as shown in the table below.
     </simpara>
     <para>
@@ -136,14 +136,14 @@
     </para>
 
     <methodsynopsis>
-     <type>void</type><methodname>onclose</methodname>
+     <type>void</type><methodname>onClose</methodname>
      <void/>
     </methodsynopsis>
     <para>
      This method is called upon filter shutdown (typically, this is also
      during stream shutdown), and is executed <emphasis>after</emphasis>
      the <literal>flush</literal> method is called.  If any resources
-     were allocated or initialzed during <literal>oncreate</literal>
+     were allocated or initialzed during <literal>onCreate</literal>
      this would be the time to destroy or dispose of them.
     </para>
 
@@ -231,7 +231,7 @@
     return PSFS_PASS_ON;
   }
 
-  function oncreate() 
+  function onCreate() 
   {
     if ($this->filtername == 'str.toupper') {
       $this->mode = 1;

Reply via email to