From 73a7b6bf58971da561cf51947849c9c06bb721ec Mon Sep 17 00:00:00 2001 From: Sara Golemon Date: Mon, 12 Apr 2004 17:43:40 +0000 Subject: [PATCH] Studly Caps git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@155787 c90b9560-bf6c-de11-be94-00142212c4b1 --- .../stream/functions/stream-filter-register.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/reference/stream/functions/stream-filter-register.xml b/reference/stream/functions/stream-filter-register.xml index 1042396d6c..d6c4deca4d 100644 --- a/reference/stream/functions/stream-filter-register.xml +++ b/reference/stream/functions/stream-filter-register.xml @@ -1,5 +1,5 @@ - + stream_filter_register @@ -94,7 +94,7 @@ - voidoncreate + voidonCreate @@ -105,7 +105,7 @@ When your filter is first instantiated, and - yourfilter->oncreate() is called, a number of properties + yourfilter->onCreate() is called, a number of properties will be available as shown in the table below. @@ -136,14 +136,14 @@ - voidonclose + voidonClose This method is called upon filter shutdown (typically, this is also during stream shutdown), and is executed after the flush method is called. If any resources - were allocated or initialzed during oncreate + were allocated or initialzed during onCreate this would be the time to destroy or dispose of them. @@ -231,7 +231,7 @@ class string_filter extends php_user_filter { return PSFS_PASS_ON; } - function oncreate() + function onCreate() { if ($this->filtername == 'str.toupper') { $this->mode = 1;