Completed
Branch scrutinizer (4d54e2)
by Fabio
15:49
created
framework/3rdParty/PhpShell/php-shell-cmd.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 unset($f);
15 15
 
16 16
 print $__shell_exts->colour->getColour("default");
17
-while($__shell->input()) {
17
+while ($__shell->input()) {
18 18
     if ($__shell_exts->autoload->isAutoloadEnabled() && !function_exists('__autoload')) {
19 19
         /**
20 20
         * default autoloader
@@ -32,11 +32,11 @@  discard block
 block discarded – undo
32 32
             global $__shell_exts;
33 33
 
34 34
             if ($__shell_exts->autoload_debug->isAutoloadDebug()) {
35
-                print str_repeat(".", $__shell_exts->autoload_debug->incAutoloadDepth())." -> autoloading $classname".PHP_EOL;
35
+                print str_repeat(".", $__shell_exts->autoload_debug->incAutoloadDepth()) . " -> autoloading $classname" . PHP_EOL;
36 36
             }
37
-            include_once str_replace('_', '/', $classname).'.php';
37
+            include_once str_replace('_', '/', $classname) . '.php';
38 38
             if ($__shell_exts->autoload_debug->isAutoloadDebug()) {
39
-                print str_repeat(".", $__shell_exts->autoload_debug->decAutoloadDepth())." <- autoloading $classname".PHP_EOL;
39
+                print str_repeat(".", $__shell_exts->autoload_debug->decAutoloadDepth()) . " <- autoloading $classname" . PHP_EOL;
40 40
             }
41 41
         }
42 42
     }
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
                 print $__shell_exts->colour->getColour("value");
54 54
 
55 55
                 if (function_exists("__shell_print_var")) {
56
-                    __shell_print_var($__shell,$__shell_retval, $__shell_exts->verboseprint->isVerbose());
56
+                    __shell_print_var($__shell, $__shell_retval, $__shell_exts->verboseprint->isVerbose());
57 57
                 } else {
58 58
                     var_export($__shell_retval);
59 59
                 }
@@ -62,9 +62,9 @@  discard block
 block discarded – undo
62 62
             unset($__shell_retval);
63 63
             $__shell->resetCode();
64 64
         }
65
-    } catch(Exception $__shell_exception) {
65
+    } catch (Exception $__shell_exception) {
66 66
         print $__shell_exts->colour->getColour("exception");
67
-        printf('%s (code: %d) got thrown'.PHP_EOL, get_class($__shell_exception), $__shell_exception->getCode());
67
+        printf('%s (code: %d) got thrown' . PHP_EOL, get_class($__shell_exception), $__shell_exception->getCode());
68 68
         print $__shell_exception;
69 69
 
70 70
         $__shell->resetCode();
Please login to merge, or discard this patch.
framework/3rdParty/PhpShell/php-shell-init.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
 //try loading it from PEAR
27 27
 @require_once('PHP/Shell.php');
28
-if(class_exists('PHP_Shell', false))
28
+if (class_exists('PHP_Shell', false))
29 29
 {
30 30
 	require_once "PHP/Shell/Extensions/Autoload.php";
31 31
 	require_once "PHP/Shell/Extensions/AutoloadDebug.php";
@@ -37,14 +37,14 @@  discard block
 block discarded – undo
37 37
 }
38 38
 else
39 39
 {
40
-	require_once(dirname(__FILE__)."/PHP/Shell.php");
41
-	require_once(dirname(__FILE__)."/PHP/Shell/Extensions/Autoload.php");
42
-	require_once(dirname(__FILE__)."/PHP/Shell/Extensions/AutoloadDebug.php");
43
-	require_once(dirname(__FILE__)."/PHP/Shell/Extensions/Colour.php");
44
-	require_once(dirname(__FILE__)."/PHP/Shell/Extensions/ExecutionTime.php");
45
-	require_once(dirname(__FILE__)."/PHP/Shell/Extensions/InlineHelp.php");
46
-	require_once(dirname(__FILE__)."/PHP/Shell/Extensions/VerbosePrint.php");
47
-	require_once(dirname(__FILE__)."/PHP/Shell/Extensions/LoadScript.php");
40
+	require_once(dirname(__FILE__) . "/PHP/Shell.php");
41
+	require_once(dirname(__FILE__) . "/PHP/Shell/Extensions/Autoload.php");
42
+	require_once(dirname(__FILE__) . "/PHP/Shell/Extensions/AutoloadDebug.php");
43
+	require_once(dirname(__FILE__) . "/PHP/Shell/Extensions/Colour.php");
44
+	require_once(dirname(__FILE__) . "/PHP/Shell/Extensions/ExecutionTime.php");
45
+	require_once(dirname(__FILE__) . "/PHP/Shell/Extensions/InlineHelp.php");
46
+	require_once(dirname(__FILE__) . "/PHP/Shell/Extensions/VerbosePrint.php");
47
+	require_once(dirname(__FILE__) . "/PHP/Shell/Extensions/LoadScript.php");
48 48
 }
49 49
 
50 50
 /**
Please login to merge, or discard this patch.
framework/3rdParty/PhpShell/PHP/Shell.php 1 patch
Spacing   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -88,8 +88,8 @@  discard block
 block discarded – undo
88 88
 * @package PHP
89 89
 */
90 90
 
91
-require_once(dirname(__FILE__)."/Shell/Commands.php");
92
-require_once(dirname(__FILE__)."/Shell/Options.php"); /* for the tab-complete */
91
+require_once(dirname(__FILE__) . "/Shell/Commands.php");
92
+require_once(dirname(__FILE__) . "/Shell/Options.php"); /* for the tab-complete */
93 93
 
94 94
 class PHP_Shell {
95 95
     /**
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
 
118 118
     protected $code_buffer;
119 119
 
120
-	public $has_semicolon=false;
120
+	public $has_semicolon = false;
121 121
 
122 122
     /**
123 123
     * init the shell and change if readline support is available
@@ -156,22 +156,22 @@  discard block
 block discarded – undo
156 156
         ## remove empty lines
157 157
         if (trim($this->code) == '') return 1;
158 158
 
159
-        $t = token_get_all('<?php '.$this->code.' ?>');
159
+        $t = token_get_all('<?php ' . $this->code . ' ?>');
160 160
 
161 161
         $need_semicolon = 1; /* do we need a semicolon to complete the statement ? */
162
-        $need_return = 1;    /* can we prepend a return to the eval-string ? */
163
-        $open_comment = 0;   /* a open multi-line comment */
164
-        $eval = '';          /* code to be eval()'ed later */
165
-        $braces = array();   /* to track if we need more closing braces */
162
+        $need_return = 1; /* can we prepend a return to the eval-string ? */
163
+        $open_comment = 0; /* a open multi-line comment */
164
+        $eval = ''; /* code to be eval()'ed later */
165
+        $braces = array(); /* to track if we need more closing braces */
166 166
 
167
-        $methods = array();  /* to track duplicate methods in a class declaration */
168
-        $ts = array();       /* tokens without whitespaces */
167
+        $methods = array(); /* to track duplicate methods in a class declaration */
168
+        $ts = array(); /* tokens without whitespaces */
169 169
 
170 170
         foreach ($t as $ndx => $token) {
171 171
             if (is_array($token)) {
172 172
                 $ignore = 0;
173 173
 
174
-                switch($token[0]) {
174
+                switch ($token[0]) {
175 175
                 case T_WHITESPACE:
176 176
                 case T_OPEN_TAG:
177 177
                 case T_CLOSE_TAG:
@@ -281,12 +281,12 @@  discard block
 block discarded – undo
281 281
                     break;
282 282
                 default:
283 283
                     /* debug unknown tags*/
284
-                    error_log(sprintf("unknown tag: %d (%s): %s".PHP_EOL, $token[0], token_name($token[0]), $token[1]));
284
+                    error_log(sprintf("unknown tag: %d (%s): %s" . PHP_EOL, $token[0], token_name($token[0]), $token[1]));
285 285
 
286 286
                     break;
287 287
                 }
288 288
                 if (!$ignore) {
289
-                    $eval .= $token[1]." ";
289
+                    $eval .= $token[1] . " ";
290 290
                     $ts[] = array("token" => $token[0], "value" => $token[1]);
291 291
                 }
292 292
             } else {
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
                     if ($last >= 4 &&
302 302
                         $ts[$last - 1]['token'] == T_STRING &&
303 303
                         $ts[$last - 2]['token'] == T_OBJECT_OPERATOR &&
304
-                        $ts[$last - 3]['token'] == ')' ) {
304
+                        $ts[$last - 3]['token'] == ')') {
305 305
                         /* func()->method()
306 306
                         *
307 307
                         * we can't know what func() is return, so we can't
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
                         $ts[1]['token'] != T_CLASS && /* if we are not in a class definition */
315 315
                         $ts[$last - 1]['token'] == T_STRING &&
316 316
                         $ts[$last - 2]['token'] == T_OBJECT_OPERATOR &&
317
-                        $ts[$last - 3]['token'] == T_VARIABLE ) {
317
+                        $ts[$last - 3]['token'] == T_VARIABLE) {
318 318
 
319 319
                         /* $object->method( */
320 320
 
@@ -353,7 +353,7 @@  discard block
 block discarded – undo
353 353
                         $ts[0]['token'] != T_CLASS && /* if we are not in a class definition */
354 354
                         $ts[$last - 1]['token'] == T_VARIABLE &&
355 355
                         $ts[$last - 2]['token'] == T_OBJECT_OPERATOR &&
356
-                        $ts[$last - 3]['token'] == T_VARIABLE ) {
356
+                        $ts[$last - 3]['token'] == T_VARIABLE) {
357 357
 
358 358
                         /* $object->$method( */
359 359
 
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
                         $ts[$last - 3]['token'] == ']' &&
391 391
                             /* might be anything as index */
392 392
                         $ts[$last - 5]['token'] == '[' &&
393
-                        $ts[$last - 6]['token'] == T_VARIABLE ) {
393
+                        $ts[$last - 6]['token'] == T_VARIABLE) {
394 394
 
395 395
                         /* $object[...]->method( */
396 396
 
@@ -431,7 +431,7 @@  discard block
 block discarded – undo
431 431
                         $ts[0]['token'] != T_CLASS && /* if we are not in a class definition */
432 432
                         $ts[$last - 1]['token'] == T_STRING &&
433 433
                         $ts[$last - 2]['token'] == T_DOUBLE_COLON &&
434
-                        $ts[$last - 3]['token'] == T_STRING ) {
434
+                        $ts[$last - 3]['token'] == T_STRING) {
435 435
 
436 436
                         /* Class::method() */
437 437
 
@@ -452,7 +452,7 @@  discard block
 block discarded – undo
452 452
                         $ts[0]['token'] != T_CLASS && /* if we are not in a class definition */
453 453
                         $ts[$last - 1]['token'] == T_VARIABLE &&
454 454
                         $ts[$last - 2]['token'] == T_DOUBLE_COLON &&
455
-                        $ts[$last - 3]['token'] == T_STRING ) {
455
+                        $ts[$last - 3]['token'] == T_STRING) {
456 456
 
457 457
                         /* $var::method() */
458 458
 
@@ -478,7 +478,7 @@  discard block
 block discarded – undo
478 478
                     } else if ($last >= 2 &&
479 479
                         $ts[0]['token'] != T_CLASS && /* if we are not in a class definition */
480 480
                         $ts[$last - 1]['token'] == T_STRING &&
481
-                        $ts[$last - 2]['token'] == T_NEW ) {
481
+                        $ts[$last - 2]['token'] == T_NEW) {
482 482
 
483 483
                         /* new Class() */
484 484
 
@@ -503,7 +503,7 @@  discard block
 block discarded – undo
503 503
                     } else if ($last >= 2 &&
504 504
                         $ts[0]['token'] != T_CLASS && /* if we are not in a class definition */
505 505
                         $ts[$last - 1]['token'] == T_STRING &&
506
-                        $ts[$last - 2]['token'] == T_FUNCTION ) {
506
+                        $ts[$last - 2]['token'] == T_FUNCTION) {
507 507
 
508 508
                         /* make sure we are not a in class definition */
509 509
 
@@ -518,7 +518,7 @@  discard block
 block discarded – undo
518 518
                         $ts[0]['token'] == T_CLASS &&
519 519
                         $ts[1]['token'] == T_STRING &&
520 520
                         $ts[$last - 1]['token'] == T_STRING &&
521
-                        $ts[$last - 2]['token'] == T_FUNCTION ) {
521
+                        $ts[$last - 2]['token'] == T_FUNCTION) {
522 522
 
523 523
                         /* make sure we are not a in class definition */
524 524
 
@@ -537,7 +537,7 @@  discard block
 block discarded – undo
537 537
                         $ts[0]['token'] != T_CLASS && /* if we are not in a class definition */
538 538
                         $ts[0]['token'] != T_ABSTRACT && /* if we are not in a class definition */
539 539
                         $ts[1]['token'] != T_CLASS && /* if we are not in a class definition */
540
-                        $ts[$last - 1]['token'] == T_STRING ) {
540
+                        $ts[$last - 1]['token'] == T_STRING) {
541 541
                         /* func() */
542 542
                         $funcname = $ts[$last - 1]['value'];
543 543
 
@@ -546,7 +546,7 @@  discard block
 block discarded – undo
546 546
                         }
547 547
                     } else if ($last >= 1 &&
548 548
                         $ts[0]['token'] != T_CLASS && /* if we are not in a class definition */
549
-                        $ts[$last - 1]['token'] == T_VARIABLE ) {
549
+                        $ts[$last - 1]['token'] == T_VARIABLE) {
550 550
 
551 551
                         /* $object has to exist and has to be a object */
552 552
                         $funcname = $ts[$last - 1]['value'];
@@ -569,7 +569,7 @@  discard block
 block discarded – undo
569 569
 
570 570
                     if ($last >= 2 &&
571 571
                         $ts[$last - 1]['token'] == T_STRING &&
572
-                        $ts[$last - 2]['token'] == T_CLASS ) {
572
+                        $ts[$last - 2]['token'] == T_CLASS) {
573 573
 
574 574
                         /* class name { */
575 575
 
@@ -582,7 +582,7 @@  discard block
 block discarded – undo
582 582
                         $ts[$last - 1]['token'] == T_STRING &&
583 583
                         $ts[$last - 2]['token'] == T_EXTENDS &&
584 584
                         $ts[$last - 3]['token'] == T_STRING &&
585
-                        $ts[$last - 4]['token'] == T_CLASS ) {
585
+                        $ts[$last - 4]['token'] == T_CLASS) {
586 586
 
587 587
                         /* class classname extends classname { */
588 588
 
@@ -601,7 +601,7 @@  discard block
 block discarded – undo
601 601
                         $ts[$last - 1]['token'] == T_STRING &&
602 602
                         $ts[$last - 2]['token'] == T_IMPLEMENTS &&
603 603
                         $ts[$last - 3]['token'] == T_STRING &&
604
-                        $ts[$last - 4]['token'] == T_CLASS ) {
604
+                        $ts[$last - 4]['token'] == T_CLASS) {
605 605
 
606 606
                         /* class name implements interface { */
607 607
 
@@ -655,7 +655,7 @@  discard block
 block discarded – undo
655 655
         if ($last >= 2 &&
656 656
             $ts[$last - 0]['token'] == T_STRING &&
657 657
             $ts[$last - 1]['token'] == T_DOUBLE_COLON &&
658
-            $ts[$last - 2]['token'] == T_STRING ) {
658
+            $ts[$last - 2]['token'] == T_STRING) {
659 659
 
660 660
             /* Class::constant */
661 661
 
@@ -674,7 +674,7 @@  discard block
 block discarded – undo
674 674
                     $classname, $constname));
675 675
             }
676 676
         } else if ($last == 0 &&
677
-            $ts[$last - 0]['token'] == T_VARIABLE ) {
677
+            $ts[$last - 0]['token'] == T_VARIABLE) {
678 678
 
679 679
             /* $var */
680 680
 
@@ -693,7 +693,7 @@  discard block
 block discarded – undo
693 693
         }
694 694
 
695 695
         if ($need_return) {
696
-            $eval = "return ".$eval;
696
+            $eval = "return " . $eval;
697 697
         }
698 698
 
699 699
         /* add a traling ; if necessary */
@@ -727,9 +727,9 @@  discard block
 block discarded – undo
727 727
 
728 728
             $line = array_shift($this->code_buffer);
729 729
 
730
-            print $line.PHP_EOL;
730
+            print $line . PHP_EOL;
731 731
 
732
-            return $line.PHP_EOL;
732
+            return $line . PHP_EOL;
733 733
         }
734 734
 
735 735
         if ($this->have_readline) {
@@ -755,13 +755,13 @@  discard block
 block discarded – undo
755 755
     * @return string the inline help as string
756 756
     */
757 757
     public function cmdHelp($l) {
758
-        $o = 'Inline Help:'.PHP_EOL;
758
+        $o = 'Inline Help:' . PHP_EOL;
759 759
 
760 760
         $cmds = PHP_Shell_Commands::getInstance()->getCommands();
761 761
 
762 762
         $help = array();
763 763
         foreach ($cmds as $cmd) {
764
-            $help[] = sprintf('  >> %s'.PHP_EOL.'    %s'.PHP_EOL,
764
+            $help[] = sprintf('  >> %s' . PHP_EOL . '    %s' . PHP_EOL,
765 765
                 $cmd['command'],
766 766
                 $cmd['description']
767 767
             );
@@ -869,7 +869,7 @@  discard block
 block discarded – undo
869 869
     * reset the code-buffer
870 870
     */
871 871
     public function resetCode() {
872
-		$this->has_semicolon=false;
872
+		$this->has_semicolon = false;
873 873
         $this->code = '';
874 874
     }
875 875
 
@@ -930,7 +930,7 @@  discard block
 block discarded – undo
930 930
             $c = get_class_methods($GLOBALS[$name]);
931 931
 
932 932
             foreach ($c as $v) {
933
-                $m[] = $v.'(';
933
+                $m[] = $v . '(';
934 934
             }
935 935
             $c = get_class_vars(get_class($GLOBALS[$name]));
936 936
 
@@ -951,7 +951,7 @@  discard block
 block discarded – undo
951 951
             $c = get_class_methods($GLOBALS[$name][$a[2]]);
952 952
 
953 953
             foreach ($c as $v) {
954
-                $m[] = $v.'(';
954
+                $m[] = $v . '(';
955 955
             }
956 956
             $c = get_class_vars(get_class($GLOBALS[$name][$a[2]]));
957 957
 
@@ -989,7 +989,7 @@  discard block
 block discarded – undo
989 989
         $c = get_declared_classes();
990 990
 
991 991
         foreach ($c as $v) {
992
-            $m[] = $v.'(';
992
+            $m[] = $v . '(';
993 993
         }
994 994
 
995 995
         return $m;
@@ -1004,17 +1004,17 @@  discard block
 block discarded – undo
1004 1004
     $f = get_defined_functions();
1005 1005
 
1006 1006
     foreach ($f['internal'] as $v) {
1007
-        $m[] = $v.'(';
1007
+        $m[] = $v . '(';
1008 1008
     }
1009 1009
 
1010 1010
     foreach ($f['user'] as $v) {
1011
-        $m[] = $v.'(';
1011
+        $m[] = $v . '(';
1012 1012
     }
1013 1013
 
1014 1014
     $c = get_declared_classes();
1015 1015
 
1016 1016
     foreach ($c as $v) {
1017
-        $m[] = $v.'::';
1017
+        $m[] = $v . '::';
1018 1018
     }
1019 1019
 
1020 1020
     $c = get_defined_constants();
Please login to merge, or discard this patch.
framework/3rdParty/PhpShell/PHP/Shell/Extensions/InlineHelp.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once(dirname(__FILE__)."/../Extensions.php");
4
-require_once(dirname(__FILE__)."/Prototypes.php");
3
+require_once(dirname(__FILE__) . "/../Extensions.php");
4
+require_once(dirname(__FILE__) . "/Prototypes.php");
5 5
 
6 6
 class PHP_Shell_Extensions_InlineHelp implements PHP_Shell_Extension {
7 7
     public function register() {
8 8
         $cmd = PHP_Shell_Commands::getInstance();
9 9
 
10 10
         $cmd->registerCommand('#^\? #', $this, 'cmdHelp', '? <var>', 
11
-            'show the DocComment a Class, Method or Function'.PHP_EOL.
11
+            'show the DocComment a Class, Method or Function' . PHP_EOL .
12 12
             '    e.g.: ? fopen(), ? PHP_Shell, ? $__shell');
13 13
     }
14 14
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
                 $class = $a[1];
44 44
                 $method = $a[2];
45 45
 
46
-                if (false !== ($proto = PHP_ShellPrototypes::getInstance()->get($class.'::'.$method))) {
46
+                if (false !== ($proto = PHP_ShellPrototypes::getInstance()->get($class . '::' . $method))) {
47 47
 
48 48
                     $cmd = sprintf("/**\n* %s\n\n* @params %s\n* @return %s\n*/\n",
49 49
                         $proto['description'],
Please login to merge, or discard this patch.
framework/3rdParty/PhpShell/PHP/Shell/Extensions/VerbosePrint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     }
29 29
 
30 30
     public function optSetVerbose($key, $val) {
31
-        switch($val) {
31
+        switch ($val) {
32 32
         case "false":
33 33
         case "on":
34 34
         case "1":
Please login to merge, or discard this patch.
framework/3rdParty/PhpShell/PHP/Shell/Extensions/Colour.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,11 +69,11 @@
 block discarded – undo
69 69
     */
70 70
     public function optSetBackground($key, $value) {
71 71
         if (is_null($value)) {
72
-            print(':set '.$key.' needs a colour-scheme, e.g. :set '.$key.'=dark');
72
+            print(':set ' . $key . ' needs a colour-scheme, e.g. :set ' . $key . '=dark');
73 73
             return;
74 74
         }
75 75
         if (false == $this->applyColourScheme($value)) {
76
-            print('setting colourscheme failed: colourscheme '.$value.' is unknown');
76
+            print('setting colourscheme failed: colourscheme ' . $value . ' is unknown');
77 77
             return;
78 78
         }
79 79
     }
Please login to merge, or discard this patch.
framework/3rdParty/PhpShell/PHP/Shell/Extensions/Prototypes.php 1 patch
Spacing   +2704 added lines, -2704 removed lines patch added patch discarded remove patch
@@ -2,16220 +2,16220 @@
 block discarded – undo
2 2
 class PHP_ShellPrototypes {
3 3
     static private $instance = null;
4 4
 
5
-    protected $prototype = array (
5
+    protected $prototype = array(
6 6
   'XMLReader::close' => 
7
-  array (
7
+  array(
8 8
     'return' => 'boolean',
9 9
     'params' => '',
10 10
     'description' => 'Closes xmlreader - current frees resources until xmlTextReaderClose is fixed in libxml',
11 11
   ),
12 12
   'XMLReader::getAttribute' => 
13
-  array (
13
+  array(
14 14
     'return' => 'string',
15 15
     'params' => 'string name',
16 16
     'description' => 'Get value of an attribute from current element',
17 17
   ),
18 18
   'XMLReader::getAttributeNo' => 
19
-  array (
19
+  array(
20 20
     'return' => 'string',
21 21
     'params' => 'int index',
22 22
     'description' => 'Get value of an attribute at index from current element',
23 23
   ),
24 24
   'XMLReader::getAttributeNs' => 
25
-  array (
25
+  array(
26 26
     'return' => 'string',
27 27
     'params' => 'string name, string namespaceURI',
28 28
     'description' => 'Get value of a attribute via name and namespace from current element',
29 29
   ),
30 30
   'XMLReader::getParserProperty' => 
31
-  array (
31
+  array(
32 32
     'return' => 'boolean',
33 33
     'params' => 'int property',
34 34
     'description' => 'Indicates whether given property (one of the parser option constants) is set or not on parser',
35 35
   ),
36 36
   'XMLReader::isValid' => 
37
-  array (
37
+  array(
38 38
     'return' => 'boolean',
39 39
     'params' => '',
40 40
     'description' => 'Returns boolean indicating if parsed document is valid or not.Must set XMLREADER_LOADDTD or XMLREADER_VALIDATE parser option prior to the first call to reador this method will always return FALSE',
41 41
   ),
42 42
   'XMLReader::lookupNamespace' => 
43
-  array (
43
+  array(
44 44
     'return' => 'string',
45 45
     'params' => 'string prefix',
46 46
     'description' => 'Return namespaceURI for associated prefix on current node',
47 47
   ),
48 48
   'XMLReader::moveToAttribute' => 
49
-  array (
49
+  array(
50 50
     'return' => 'boolean',
51 51
     'params' => 'string name',
52 52
     'description' => 'Positions reader at specified attribute - Returns TRUE on success and FALSE on failure',
53 53
   ),
54 54
   'XMLReader::moveToAttributeNo' => 
55
-  array (
55
+  array(
56 56
     'return' => 'boolean',
57 57
     'params' => 'int index',
58 58
     'description' => 'Positions reader at attribute at spcecified index.Returns TRUE on success and FALSE on failure',
59 59
   ),
60 60
   'XMLReader::moveToAttributeNs' => 
61
-  array (
61
+  array(
62 62
     'return' => 'boolean',
63 63
     'params' => 'string name, string namespaceURI',
64 64
     'description' => 'Positions reader at attribute spcified by name and namespaceURI.Returns TRUE on success and FALSE on failure',
65 65
   ),
66 66
   'XMLReader::moveToElement' => 
67
-  array (
67
+  array(
68 68
     'return' => 'boolean',
69 69
     'params' => '',
70 70
     'description' => 'Moves the position of the current instance to the node that contains the current Attribute node.',
71 71
   ),
72 72
   'XMLReader::moveToFirstAttribute' => 
73
-  array (
73
+  array(
74 74
     'return' => 'boolean',
75 75
     'params' => '',
76 76
     'description' => 'Moves the position of the current instance to the first attribute associated with the current node.',
77 77
   ),
78 78
   'XMLReader::moveToNextAttribute' => 
79
-  array (
79
+  array(
80 80
     'return' => 'boolean',
81 81
     'params' => '',
82 82
     'description' => 'Moves the position of the current instance to the next attribute associated with the current node.',
83 83
   ),
84 84
   'XMLReader::read' => 
85
-  array (
85
+  array(
86 86
     'return' => 'boolean',
87 87
     'params' => '',
88 88
     'description' => 'Moves the position of the current instance to the next node in the stream.',
89 89
   ),
90 90
   'XMLReader::next' => 
91
-  array (
91
+  array(
92 92
     'return' => 'boolean',
93 93
     'params' => '[string localname]',
94 94
     'description' => 'Moves the position of the current instance to the next node in the stream.',
95 95
   ),
96 96
   'XMLReader::open' => 
97
-  array (
97
+  array(
98 98
     'return' => 'boolean',
99 99
     'params' => 'string URI',
100 100
     'description' => 'Sets the URI that the the XMLReader will parse.',
101 101
   ),
102 102
   'XMLReader::setParserProperty' => 
103
-  array (
103
+  array(
104 104
     'return' => 'boolean',
105 105
     'params' => 'int property, boolean value',
106 106
     'description' => 'Sets parser property (one of the parser option constants).Properties must be set after open() or XML() and before the first read() is called',
107 107
   ),
108 108
   'XMLReader::setRelaxNGSchemaSource' => 
109
-  array (
109
+  array(
110 110
     'return' => 'boolean',
111 111
     'params' => 'string source',
112 112
     'description' => 'Sets the string that the the XMLReader will parse.',
113 113
   ),
114 114
   'XMLReader::XML' => 
115
-  array (
115
+  array(
116 116
     'return' => 'boolean',
117 117
     'params' => 'string source',
118 118
     'description' => 'Sets the string that the the XMLReader will parse.',
119 119
   ),
120 120
   'XMLReader::expand' => 
121
-  array (
121
+  array(
122 122
     'return' => 'boolean',
123 123
     'params' => '',
124 124
     'description' => 'Moves the position of the current instance to the next node in the stream.',
125 125
   ),
126 126
   'SimpleXMLElement::asXML' => 
127
-  array (
127
+  array(
128 128
     'return' => 'string',
129 129
     'params' => '[string filename]',
130 130
     'description' => 'Return a well-formed XML string based on SimpleXML element',
131 131
   ),
132 132
   'SimpleXMLElement::getNamespaces' => 
133
-  array (
133
+  array(
134 134
     'return' => 'string',
135 135
     'params' => '[bool recursve]',
136 136
     'description' => 'Return all namespaces in use',
137 137
   ),
138 138
   'SimpleXMLElement::getDocNamespaces' => 
139
-  array (
139
+  array(
140 140
     'return' => 'string',
141 141
     'params' => '[bool recursive]',
142 142
     'description' => 'Return all namespaces registered with document',
143 143
   ),
144 144
   'SimpleXMLElement::children' => 
145
-  array (
145
+  array(
146 146
     'return' => 'object',
147 147
     'params' => '[string ns]',
148 148
     'description' => 'Finds children of given node',
149 149
   ),
150 150
   'SimpleXMLElement::getName' => 
151
-  array (
151
+  array(
152 152
     'return' => 'object',
153 153
     'params' => '',
154 154
     'description' => 'Finds children of given node',
155 155
   ),
156 156
   'SimpleXMLElement::attributes' => 
157
-  array (
157
+  array(
158 158
     'return' => 'array',
159 159
     'params' => '[string ns]',
160 160
     'description' => 'Identifies an element\'s attributes',
161 161
   ),
162 162
   'SimpleXMLElement::addChild' => 
163
-  array (
163
+  array(
164 164
     'return' => 'void',
165 165
     'params' => 'string qName [, string value [,string ns]]',
166 166
     'description' => 'Add Element with optional namespace information',
167 167
   ),
168 168
   'SimpleXMLElement::addAttribute' => 
169
-  array (
169
+  array(
170 170
     'return' => 'void',
171 171
     'params' => 'string qName, string value [,string ns]',
172 172
     'description' => 'Add Attribute with optional namespace information',
173 173
   ),
174 174
   'simplexml_load_file' => 
175
-  array (
175
+  array(
176 176
     'return' => 'simplemxml_element',
177 177
     'params' => 'string filename [, string class_name [, int options]]',
178 178
     'description' => 'Load a filename and return a simplexml_element object to allow for processing',
179 179
   ),
180 180
   'simplexml_load_string' => 
181
-  array (
181
+  array(
182 182
     'return' => 'simplemxml_element',
183 183
     'params' => 'string data [, string class_name [, int options]]',
184 184
     'description' => 'Load a string and return a simplexml_element object to allow for processing',
185 185
   ),
186 186
   'simplexml_import_dom' => 
187
-  array (
187
+  array(
188 188
     'return' => 'simplemxml_element',
189 189
     'params' => 'domNode node [, string class_name]',
190 190
     'description' => 'Get a simplexml_element object from dom to allow for processing',
191 191
   ),
192 192
   'snmpget' => 
193
-  array (
193
+  array(
194 194
     'return' => 'string',
195 195
     'params' => 'string host, string community, string object_id [, int timeout [, int retries]]',
196 196
     'description' => 'Fetch a SNMP object',
197 197
   ),
198 198
   'snmpgetnext' => 
199
-  array (
199
+  array(
200 200
     'return' => 'string',
201 201
     'params' => 'string host, string community, string object_id [, int timeout [, int retries]]',
202 202
     'description' => 'Fetch a SNMP object',
203 203
   ),
204 204
   'snmpwalk' => 
205
-  array (
205
+  array(
206 206
     'return' => 'array',
207 207
     'params' => 'string host, string community, string object_id [, int timeout [, int retries]]',
208 208
     'description' => 'Return all objects under the specified object id',
209 209
   ),
210 210
   'snmprealwalk' => 
211
-  array (
211
+  array(
212 212
     'return' => 'array',
213 213
     'params' => 'string host, string community, string object_id [, int timeout [, int retries]]',
214 214
     'description' => 'Return all objects including their respective object id withing the specified one',
215 215
   ),
216 216
   'snmp_get_quick_print' => 
217
-  array (
217
+  array(
218 218
     'return' => 'bool',
219 219
     'params' => 'void',
220 220
     'description' => 'Return the current status of quick_print',
221 221
   ),
222 222
   'snmp_set_quick_print' => 
223
-  array (
223
+  array(
224 224
     'return' => 'void',
225 225
     'params' => 'int quick_print',
226 226
     'description' => 'Return all objects including their respective object id withing the specified one',
227 227
   ),
228 228
   'snmp_set_enum_print' => 
229
-  array (
229
+  array(
230 230
     'return' => 'void',
231 231
     'params' => 'int enum_print',
232 232
     'description' => 'Return all values that are enums with their enum value instead of the raw integer',
233 233
   ),
234 234
   'snmp_set_oid_numeric_print' => 
235
-  array (
235
+  array(
236 236
     'return' => 'void',
237 237
     'params' => 'int oid_numeric_print',
238 238
     'description' => 'Return all objects including their respective object id withing the specified one',
239 239
   ),
240 240
   'snmpset' => 
241
-  array (
241
+  array(
242 242
     'return' => 'int',
243 243
     'params' => 'string host, string community, string object_id, string type, mixed value [, int timeout [, int retries]]',
244 244
     'description' => 'Set the value of a SNMP object',
245 245
   ),
246 246
   'snmp2_get' => 
247
-  array (
247
+  array(
248 248
     'return' => 'string',
249 249
     'params' => 'string host, string community, string object_id [, int timeout [, int retries]]',
250 250
     'description' => 'Fetch a SNMP object',
251 251
   ),
252 252
   'snmp2_getnext' => 
253
-  array (
253
+  array(
254 254
     'return' => 'string',
255 255
     'params' => 'string host, string community, string object_id [, int timeout [, int retries]]',
256 256
     'description' => 'Fetch a SNMP object',
257 257
   ),
258 258
   'snmp2_walk' => 
259
-  array (
259
+  array(
260 260
     'return' => 'array',
261 261
     'params' => 'string host, string community, string object_id [, int timeout [, int retries]]',
262 262
     'description' => 'Return all objects under the specified object id',
263 263
   ),
264 264
   'snmp2_real_walk' => 
265
-  array (
265
+  array(
266 266
     'return' => 'array',
267 267
     'params' => 'string host, string community, string object_id [, int timeout [, int retries]]',
268 268
     'description' => 'Return all objects including their respective object id withing the specified one',
269 269
   ),
270 270
   'snmp2_set' => 
271
-  array (
271
+  array(
272 272
     'return' => 'int',
273 273
     'params' => 'string host, string community, string object_id, string type, mixed value [, int timeout [, int retries]]',
274 274
     'description' => 'Set the value of a SNMP object',
275 275
   ),
276 276
   'php_snmpv3' => 
277
-  array (
277
+  array(
278 278
     'return' => 'void',
279 279
     'params' => 'INTERNAL_FUNCTION_PARAMETERS, int st',
280 280
     'description' => '** Generic SNMPv3 object fetcher* From here is passed on the the common internal object fetcher.** st=SNMP_CMD_GET   snmp3_get() - query an agent and return a single value.* st=SNMP_CMD_GETNEXT   snmp3_getnext() - query an agent and return the next single value.* st=SNMP_CMD_WALK   snmp3_walk() - walk the mib and return a single dimensional array*                       containing the values.* st=SNMP_CMD_REALWALK   snmp3_real_walk() - walk the mib and return an*                            array of oid,value pairs.* st=SNMP_CMD_SET  snmp3_set() - query an agent and set a single value*',
281 281
   ),
282 282
   'snmp3_get' => 
283
-  array (
283
+  array(
284 284
     'return' => 'int',
285 285
     'params' => 'string host, string sec_name, string sec_level, string auth_protocol, string auth_passphrase, string priv_protocol, string priv_passphrase, string object_id [, int timeout [, int retries]]',
286 286
     'description' => 'Fetch the value of a SNMP object',
287 287
   ),
288 288
   'snmp3_getnext' => 
289
-  array (
289
+  array(
290 290
     'return' => 'int',
291 291
     'params' => 'string host, string sec_name, string sec_level, string auth_protocol, string auth_passphrase, string priv_protocol, string priv_passphrase, string object_id [, int timeout [, int retries]]',
292 292
     'description' => 'Fetch the value of a SNMP object',
293 293
   ),
294 294
   'snmp3_walk' => 
295
-  array (
295
+  array(
296 296
     'return' => 'int',
297 297
     'params' => 'string host, string sec_name, string sec_level, string auth_protocol, string auth_passphrase, string priv_protocol, string priv_passphrase, string object_id [, int timeout [, int retries]]',
298 298
     'description' => 'Fetch the value of a SNMP object',
299 299
   ),
300 300
   'snmp3_real_walk' => 
301
-  array (
301
+  array(
302 302
     'return' => 'int',
303 303
     'params' => 'string host, string sec_name, string sec_level, string auth_protocol, string auth_passphrase, string priv_protocol, string priv_passphrase, string object_id [, int timeout [, int retries]]',
304 304
     'description' => 'Fetch the value of a SNMP object',
305 305
   ),
306 306
   'snmp3_set' => 
307
-  array (
307
+  array(
308 308
     'return' => 'int',
309 309
     'params' => 'string host, string sec_name, string sec_level, string auth_protocol, string auth_passphrase, string priv_protocol, string priv_passphrase, string object_id, string type, mixed value [, int timeout [, int retries]]',
310 310
     'description' => 'Fetch the value of a SNMP object',
311 311
   ),
312 312
   'snmp_set_valueretrieval' => 
313
-  array (
313
+  array(
314 314
     'return' => 'int',
315 315
     'params' => 'int method',
316 316
     'description' => 'Specify the method how the SNMP values will be returned',
317 317
   ),
318 318
   'snmp_get_valueretrieval' => 
319
-  array (
319
+  array(
320 320
     'return' => 'int',
321 321
     'params' => '',
322 322
     'description' => 'Return the method how the SNMP values will be returned',
323 323
   ),
324 324
   'snmp_read_mib' => 
325
-  array (
325
+  array(
326 326
     'return' => 'int',
327 327
     'params' => 'string filename',
328 328
     'description' => 'Reads and parses a MIB file into the active MIB tree.',
329 329
   ),
330 330
   'mysqli_embedded_server_start' => 
331
-  array (
331
+  array(
332 332
     'return' => 'bool',
333 333
     'params' => 'bool start, array arguments, array groups',
334 334
     'description' => 'initialize and start embedded server',
335 335
   ),
336 336
   'mysqli_embedded_server_end' => 
337
-  array (
337
+  array(
338 338
     'return' => 'void',
339 339
     'params' => 'void',
340 340
     'description' => '',
341 341
   ),
342 342
   'mysqli_connect' => 
343
-  array (
343
+  array(
344 344
     'return' => 'object',
345 345
     'params' => '[string hostname [,string username [,string passwd [,string dbname [,int port [,string socket]]]]]]',
346 346
     'description' => 'Open a connection to a mysql server',
347 347
   ),
348 348
   'mysqli_connect_errno' => 
349
-  array (
349
+  array(
350 350
     'return' => 'int',
351 351
     'params' => 'void',
352 352
     'description' => 'Returns the numerical value of the error message from last connect command',
353 353
   ),
354 354
   'mysqli_connect_error' => 
355
-  array (
355
+  array(
356 356
     'return' => 'string',
357 357
     'params' => 'void',
358 358
     'description' => 'Returns the text of the error message from previous MySQL operation',
359 359
   ),
360 360
   'mysqli_multi_query' => 
361
-  array (
361
+  array(
362 362
     'return' => 'bool',
363 363
     'params' => 'object link, string query',
364 364
     'description' => 'Binary-safe version of mysql_query()',
365 365
   ),
366 366
   'mysqli_set_charset' => 
367
-  array (
367
+  array(
368 368
     'return' => 'bool',
369 369
     'params' => 'object link, string csname',
370 370
     'description' => 'sets client character set',
371 371
   ),
372 372
   'mysqli_get_charset' => 
373
-  array (
373
+  array(
374 374
     'return' => 'object',
375 375
     'params' => 'object link',
376 376
     'description' => 'returns a character set object',
377 377
   ),
378 378
   'mysqli_affected_rows' => 
379
-  array (
379
+  array(
380 380
     'return' => 'mixed',
381 381
     'params' => 'object link',
382 382
     'description' => 'Get number of affected rows in previous MySQL operation',
383 383
   ),
384 384
   'mysqli_autocommit' => 
385
-  array (
385
+  array(
386 386
     'return' => 'bool',
387 387
     'params' => 'object link, bool mode',
388 388
     'description' => 'Turn auto commit on or of',
389 389
   ),
390 390
   'mysqli_stmt_bind_param' => 
391
-  array (
391
+  array(
392 392
     'return' => 'bool',
393 393
     'params' => 'object stmt, string types, mixed variable [,mixed,....]',
394 394
     'description' => 'Bind variables to a prepared statement as parameters',
395 395
   ),
396 396
   'mysqli_stmt_bind_result' => 
397
-  array (
397
+  array(
398 398
     'return' => 'bool',
399 399
     'params' => 'object stmt, mixed var, [,mixed, ...]',
400 400
     'description' => 'Bind variables to a prepared statement for result storage',
401 401
   ),
402 402
   'mysqli_change_user' => 
403
-  array (
403
+  array(
404 404
     'return' => 'bool',
405 405
     'params' => 'object link, string user, string password, string database',
406 406
     'description' => 'Change logged-in user of the active connection',
407 407
   ),
408 408
   'mysqli_character_set_name' => 
409
-  array (
409
+  array(
410 410
     'return' => 'string',
411 411
     'params' => 'object link',
412 412
     'description' => 'Returns the name of the character set used for this connection',
413 413
   ),
414 414
   'mysqli_close' => 
415
-  array (
415
+  array(
416 416
     'return' => 'bool',
417 417
     'params' => 'object link',
418 418
     'description' => 'Close connection',
419 419
   ),
420 420
   'mysqli_commit' => 
421
-  array (
421
+  array(
422 422
     'return' => 'bool',
423 423
     'params' => 'object link',
424 424
     'description' => 'Commit outstanding actions and close transaction',
425 425
   ),
426 426
   'mysqli_data_seek' => 
427
-  array (
427
+  array(
428 428
     'return' => 'bool',
429 429
     'params' => 'object result, int offset',
430 430
     'description' => 'Move internal result pointer',
431 431
   ),
432 432
   'mysqli_debug' => 
433
-  array (
433
+  array(
434 434
     'return' => 'void',
435 435
     'params' => 'string debug',
436 436
     'description' => '',
437 437
   ),
438 438
   'mysqli_dump_debug_info' => 
439
-  array (
439
+  array(
440 440
     'return' => 'bool',
441 441
     'params' => 'object link',
442 442
     'description' => '',
443 443
   ),
444 444
   'mysqli_errno' => 
445
-  array (
445
+  array(
446 446
     'return' => 'int',
447 447
     'params' => 'object link',
448 448
     'description' => 'Returns the numerical value of the error message from previous MySQL operation',
449 449
   ),
450 450
   'mysqli_error' => 
451
-  array (
451
+  array(
452 452
     'return' => 'string',
453 453
     'params' => 'object link',
454 454
     'description' => 'Returns the text of the error message from previous MySQL operation',
455 455
   ),
456 456
   'mysqli_stmt_execute' => 
457
-  array (
457
+  array(
458 458
     'return' => 'bool',
459 459
     'params' => 'object stmt',
460 460
     'description' => 'Execute a prepared statement',
461 461
   ),
462 462
   'mysqli_stmt_fetch' => 
463
-  array (
463
+  array(
464 464
     'return' => 'mixed',
465 465
     'params' => 'object stmt',
466 466
     'description' => 'Fetch results from a prepared statement into the bound variables',
467 467
   ),
468 468
   'mysqli_field_count' => 
469
-  array (
469
+  array(
470 470
     'return' => 'int',
471 471
     'params' => 'object link',
472 472
     'description' => 'Fetch the number of fields returned by the last query for the given link',
473 473
   ),
474 474
   'mysqli_field_seek' => 
475
-  array (
475
+  array(
476 476
     'return' => 'int',
477 477
     'params' => 'object result, int fieldnr',
478 478
     'description' => 'Set result pointer to a specified field offset',
479 479
   ),
480 480
   'mysqli_field_tell' => 
481
-  array (
481
+  array(
482 482
     'return' => 'int',
483 483
     'params' => 'object result',
484 484
     'description' => 'Get current field offset of result pointer',
485 485
   ),
486 486
   'mysqli_free_result' => 
487
-  array (
487
+  array(
488 488
     'return' => 'void',
489 489
     'params' => 'object result',
490 490
     'description' => 'Free query result memory for the given result handle',
491 491
   ),
492 492
   'mysqli_get_client_info' => 
493
-  array (
493
+  array(
494 494
     'return' => 'string',
495 495
     'params' => 'void',
496 496
     'description' => 'Get MySQL client info',
497 497
   ),
498 498
   'mysqli_get_client_version' => 
499
-  array (
499
+  array(
500 500
     'return' => 'int',
501 501
     'params' => 'void',
502 502
     'description' => 'Get MySQL client info',
503 503
   ),
504 504
   'mysqli_get_proto_info' => 
505
-  array (
505
+  array(
506 506
     'return' => 'int',
507 507
     'params' => 'object link',
508 508
     'description' => 'Get MySQL protocol information',
509 509
   ),
510 510
   'mysqli_get_server_info' => 
511
-  array (
511
+  array(
512 512
     'return' => 'string',
513 513
     'params' => 'object link',
514 514
     'description' => 'Get MySQL server info',
515 515
   ),
516 516
   'mysqli_get_server_version' => 
517
-  array (
517
+  array(
518 518
     'return' => 'int',
519 519
     'params' => 'object link',
520 520
     'description' => 'Return the MySQL version for the server referenced by the given link',
521 521
   ),
522 522
   'mysqli_info' => 
523
-  array (
523
+  array(
524 524
     'return' => 'string',
525 525
     'params' => 'object link',
526 526
     'description' => 'Get information about the most recent query',
527 527
   ),
528 528
   'mysqli_init' => 
529
-  array (
529
+  array(
530 530
     'return' => 'resource',
531 531
     'params' => 'void',
532 532
     'description' => 'Initialize mysqli and return a resource for use with mysql_real_connect',
533 533
   ),
534 534
   'mysqli_insert_id' => 
535
-  array (
535
+  array(
536 536
     'return' => 'mixed',
537 537
     'params' => 'object link',
538 538
     'description' => 'Get the ID generated from the previous INSERT operation',
539 539
   ),
540 540
   'mysqli_kill' => 
541
-  array (
541
+  array(
542 542
     'return' => 'bool',
543 543
     'params' => 'object link, int processid',
544 544
     'description' => 'Kill a mysql process on the server',
545 545
   ),
546 546
   'mysqli_set_local_infile_handler' => 
547
-  array (
547
+  array(
548 548
     'return' => 'bool',
549 549
     'params' => 'object link, callback read_func',
550 550
     'description' => 'Set callback functions for LOAD DATA LOCAL INFILE',
551 551
   ),
552 552
   'mysqli_more_results' => 
553
-  array (
553
+  array(
554 554
     'return' => 'bool',
555 555
     'params' => 'object link',
556 556
     'description' => 'check if there any more query results from a multi query',
557 557
   ),
558 558
   'mysqli_next_result' => 
559
-  array (
559
+  array(
560 560
     'return' => 'bool',
561 561
     'params' => 'object link',
562 562
     'description' => 'read next result from multi_query',
563 563
   ),
564 564
   'mysqli_num_fields' => 
565
-  array (
565
+  array(
566 566
     'return' => 'int',
567 567
     'params' => 'object result',
568 568
     'description' => 'Get number of fields in result',
569 569
   ),
570 570
   'mysqli_num_rows' => 
571
-  array (
571
+  array(
572 572
     'return' => 'mixed',
573 573
     'params' => 'object result',
574 574
     'description' => 'Get number of rows in result',
575 575
   ),
576 576
   'mysqli_options' => 
577
-  array (
577
+  array(
578 578
     'return' => 'bool',
579 579
     'params' => 'object link, int flags, mixed values',
580 580
     'description' => 'Set options',
581 581
   ),
582 582
   'mysqli_ping' => 
583
-  array (
583
+  array(
584 584
     'return' => 'bool',
585 585
     'params' => 'object link',
586 586
     'description' => 'Ping a server connection or reconnect if there is no connection',
587 587
   ),
588 588
   'mysqli_prepare' => 
589
-  array (
589
+  array(
590 590
     'return' => 'mixed',
591 591
     'params' => 'object link, string query',
592 592
     'description' => 'Prepare a SQL statement for execution',
593 593
   ),
594 594
   'mysqli_real_connect' => 
595
-  array (
595
+  array(
596 596
     'return' => 'bool',
597 597
     'params' => 'object link [,string hostname [,string username [,string passwd [,string dbname [,int port [,string socket [,int flags]]]]]]]',
598 598
     'description' => 'Open a connection to a mysql server',
599 599
   ),
600 600
   'mysqli_real_query' => 
601
-  array (
601
+  array(
602 602
     'return' => 'bool',
603 603
     'params' => 'object link, string query',
604 604
     'description' => 'Binary-safe version of mysql_query()',
605 605
   ),
606 606
   'mysqli_real_escape_string' => 
607
-  array (
607
+  array(
608 608
     'return' => 'string',
609 609
     'params' => 'object link, string escapestr',
610 610
     'description' => 'Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection',
611 611
   ),
612 612
   'mysqli_rollback' => 
613
-  array (
613
+  array(
614 614
     'return' => 'bool',
615 615
     'params' => 'object link',
616 616
     'description' => 'Undo actions from current transaction',
617 617
   ),
618 618
   'mysqli_send_long_data' => 
619
-  array (
619
+  array(
620 620
     'return' => 'bool',
621 621
     'params' => 'object stmt, int param_nr, string data',
622 622
     'description' => '',
623 623
   ),
624 624
   'mysqli_stmt_affected_rows' => 
625
-  array (
625
+  array(
626 626
     'return' => 'mixed',
627 627
     'params' => 'object stmt',
628 628
     'description' => 'Return the number of rows affected in the last query for the given link',
629 629
   ),
630 630
   'mysqli_stmt_close' => 
631
-  array (
631
+  array(
632 632
     'return' => 'bool',
633 633
     'params' => 'object stmt',
634 634
     'description' => 'Close statement',
635 635
   ),
636 636
   'mysqli_stmt_data_seek' => 
637
-  array (
637
+  array(
638 638
     'return' => 'void',
639 639
     'params' => 'object stmt, int offset',
640 640
     'description' => 'Move internal result pointer',
641 641
   ),
642 642
   'mysqli_stmt_free_result' => 
643
-  array (
643
+  array(
644 644
     'return' => 'void',
645 645
     'params' => 'object stmt',
646 646
     'description' => 'Free stored result memory for the given statement handle',
647 647
   ),
648 648
   'mysqli_stmt_insert_id' => 
649
-  array (
649
+  array(
650 650
     'return' => 'mixed',
651 651
     'params' => 'object stmt',
652 652
     'description' => 'Get the ID generated from the previous INSERT operation',
653 653
   ),
654 654
   'mysqli_stmt_reset' => 
655
-  array (
655
+  array(
656 656
     'return' => 'bool',
657 657
     'params' => 'object stmt',
658 658
     'description' => 'reset a prepared statement',
659 659
   ),
660 660
   'mysqli_stmt_num_rows' => 
661
-  array (
661
+  array(
662 662
     'return' => 'mixed',
663 663
     'params' => 'object stmt',
664 664
     'description' => 'Return the number of rows in statements result set',
665 665
   ),
666 666
   'mysqli_select_db' => 
667
-  array (
667
+  array(
668 668
     'return' => 'string',
669 669
     'params' => 'object link, string dbname',
670 670
     'description' => 'Select a MySQL database',
671 671
   ),
672 672
   'mysqli_sqlstate' => 
673
-  array (
673
+  array(
674 674
     'return' => 'string',
675 675
     'params' => 'object link',
676 676
     'description' => 'Returns the SQLSTATE error from previous MySQL operation',
677 677
   ),
678 678
   'mysqli_ssl_set' => 
679
-  array (
679
+  array(
680 680
     'return' => 'bool',
681 681
     'params' => 'object link ,string key ,string cert ,string ca ,string capath ,string cipher]',
682 682
     'description' => '',
683 683
   ),
684 684
   'mysqli_stat' => 
685
-  array (
685
+  array(
686 686
     'return' => 'mixed',
687 687
     'params' => 'object link',
688 688
     'description' => 'Get current system status',
689 689
   ),
690 690
   'mysqli_stmt_attr_set' => 
691
-  array (
691
+  array(
692 692
     'return' => 'int',
693 693
     'params' => 'object stmt, long attr, bool mode',
694 694
     'description' => '',
695 695
   ),
696 696
   'mysqli_stmt_attr_get' => 
697
-  array (
697
+  array(
698 698
     'return' => 'int',
699 699
     'params' => 'object stmt, long attr',
700 700
     'description' => '',
701 701
   ),
702 702
   'mysqli_stmt_errno' => 
703
-  array (
703
+  array(
704 704
     'return' => 'int',
705 705
     'params' => 'object stmt',
706 706
     'description' => '',
707 707
   ),
708 708
   'mysqli_stmt_error' => 
709
-  array (
709
+  array(
710 710
     'return' => 'string',
711 711
     'params' => 'object stmt',
712 712
     'description' => '',
713 713
   ),
714 714
   'mysqli_stmt_init' => 
715
-  array (
715
+  array(
716 716
     'return' => 'mixed',
717 717
     'params' => 'object link',
718 718
     'description' => 'Initialize statement object',
719 719
   ),
720 720
   'mysqli_stmt_prepare' => 
721
-  array (
721
+  array(
722 722
     'return' => 'bool',
723 723
     'params' => 'object stmt, string query',
724 724
     'description' => 'prepare server side statement with query',
725 725
   ),
726 726
   'mysqli_stmt_result_metadata' => 
727
-  array (
727
+  array(
728 728
     'return' => 'mixed',
729 729
     'params' => 'object stmt',
730 730
     'description' => 'return result set from statement',
731 731
   ),
732 732
   'mysqli_stmt_store_result' => 
733
-  array (
733
+  array(
734 734
     'return' => 'bool',
735 735
     'params' => 'stmt',
736 736
     'description' => '',
737 737
   ),
738 738
   'mysqli_stmt_sqlstate' => 
739
-  array (
739
+  array(
740 740
     'return' => 'string',
741 741
     'params' => 'object stmt',
742 742
     'description' => '',
743 743
   ),
744 744
   'mysqli_store_result' => 
745
-  array (
745
+  array(
746 746
     'return' => 'object',
747 747
     'params' => 'object link',
748 748
     'description' => 'Buffer result set on client',
749 749
   ),
750 750
   'mysqli_thread_id' => 
751
-  array (
751
+  array(
752 752
     'return' => 'int',
753 753
     'params' => 'object link',
754 754
     'description' => 'Return the current thread ID',
755 755
   ),
756 756
   'mysqli_thread_safe' => 
757
-  array (
757
+  array(
758 758
     'return' => 'bool',
759 759
     'params' => 'void',
760 760
     'description' => 'Return whether thread safety is given or not',
761 761
   ),
762 762
   'mysqli_use_result' => 
763
-  array (
763
+  array(
764 764
     'return' => 'mixed',
765 765
     'params' => 'object link',
766 766
     'description' => 'Directly retrieve query results - do not buffer results on client side',
767 767
   ),
768 768
   'mysqli_disable_reads_from_master' => 
769
-  array (
769
+  array(
770 770
     'return' => 'void',
771 771
     'params' => 'object link',
772 772
     'description' => '',
773 773
   ),
774 774
   'mysqli_disable_rpl_parse' => 
775
-  array (
775
+  array(
776 776
     'return' => 'void',
777 777
     'params' => 'object link',
778 778
     'description' => '',
779 779
   ),
780 780
   'mysqli_enable_reads_from_master' => 
781
-  array (
781
+  array(
782 782
     'return' => 'void',
783 783
     'params' => 'object link',
784 784
     'description' => '',
785 785
   ),
786 786
   'mysqli_enable_rpl_parse' => 
787
-  array (
787
+  array(
788 788
     'return' => 'void',
789 789
     'params' => 'object link',
790 790
     'description' => '',
791 791
   ),
792 792
   'mysqli_master_query' => 
793
-  array (
793
+  array(
794 794
     'return' => 'bool',
795 795
     'params' => 'object link, string query',
796 796
     'description' => 'Enforce execution of a query on the master in a master/slave setup',
797 797
   ),
798 798
   'mysqli_rpl_parse_enabled' => 
799
-  array (
799
+  array(
800 800
     'return' => 'int',
801 801
     'params' => 'object link',
802 802
     'description' => '',
803 803
   ),
804 804
   'mysqli_rpl_probe' => 
805
-  array (
805
+  array(
806 806
     'return' => 'bool',
807 807
     'params' => 'object link',
808 808
     'description' => '',
809 809
   ),
810 810
   'mysqli_rpl_query_type' => 
811
-  array (
811
+  array(
812 812
     'return' => 'int',
813 813
     'params' => 'string query',
814 814
     'description' => '',
815 815
   ),
816 816
   'mysqli_send_query' => 
817
-  array (
817
+  array(
818 818
     'return' => 'bool',
819 819
     'params' => 'object link, string query',
820 820
     'description' => '',
821 821
   ),
822 822
   'mysqli_slave_query' => 
823
-  array (
823
+  array(
824 824
     'return' => 'bool',
825 825
     'params' => 'object link, string query',
826 826
     'description' => 'Enforce execution of a query on a slave in a master/slave setup',
827 827
   ),
828 828
   'imap_open' => 
829
-  array (
829
+  array(
830 830
     'return' => 'resource',
831 831
     'params' => 'string mailbox, string user, string password [, int options]',
832 832
     'description' => 'Open an IMAP stream to a mailbox',
833 833
   ),
834 834
   'imap_reopen' => 
835
-  array (
835
+  array(
836 836
     'return' => 'bool',
837 837
     'params' => 'resource stream_id, string mailbox [, int options]',
838 838
     'description' => 'Reopen an IMAP stream to a new mailbox',
839 839
   ),
840 840
   'imap_append' => 
841
-  array (
841
+  array(
842 842
     'return' => 'bool',
843 843
     'params' => 'resource stream_id, string folder, string message [, string options]',
844 844
     'description' => 'Append a new message to a specified mailbox',
845 845
   ),
846 846
   'imap_num_msg' => 
847
-  array (
847
+  array(
848 848
     'return' => 'int',
849 849
     'params' => 'resource stream_id',
850 850
     'description' => 'Gives the number of messages in the current mailbox',
851 851
   ),
852 852
   'imap_ping' => 
853
-  array (
853
+  array(
854 854
     'return' => 'bool',
855 855
     'params' => 'resource stream_id',
856 856
     'description' => 'Check if the IMAP stream is still active',
857 857
   ),
858 858
   'imap_num_recent' => 
859
-  array (
859
+  array(
860 860
     'return' => 'int',
861 861
     'params' => 'resource stream_id',
862 862
     'description' => 'Gives the number of recent messages in current mailbox',
863 863
   ),
864 864
   'imap_get_quota' => 
865
-  array (
865
+  array(
866 866
     'return' => 'array',
867 867
     'params' => 'resource stream_id, string qroot',
868 868
     'description' => 'Returns the quota set to the mailbox account qroot',
869 869
   ),
870 870
   'imap_get_quotaroot' => 
871
-  array (
871
+  array(
872 872
     'return' => 'array',
873 873
     'params' => 'resource stream_id, string mbox',
874 874
     'description' => 'Returns the quota set to the mailbox account mbox',
875 875
   ),
876 876
   'imap_set_quota' => 
877
-  array (
877
+  array(
878 878
     'return' => 'bool',
879 879
     'params' => 'resource stream_id, string qroot, int mailbox_size',
880 880
     'description' => 'Will set the quota for qroot mailbox',
881 881
   ),
882 882
   'imap_setacl' => 
883
-  array (
883
+  array(
884 884
     'return' => 'bool',
885 885
     'params' => 'resource stream_id, string mailbox, string id, string rights',
886 886
     'description' => 'Sets the ACL for a given mailbox',
887 887
   ),
888 888
   'imap_getacl' => 
889
-  array (
889
+  array(
890 890
     'return' => 'array',
891 891
     'params' => 'resource stream_id, string mailbox',
892 892
     'description' => 'Gets the ACL for a given mailbox',
893 893
   ),
894 894
   'imap_expunge' => 
895
-  array (
895
+  array(
896 896
     'return' => 'bool',
897 897
     'params' => 'resource stream_id',
898 898
     'description' => 'Permanently delete all messages marked for deletion',
899 899
   ),
900 900
   'imap_close' => 
901
-  array (
901
+  array(
902 902
     'return' => 'bool',
903 903
     'params' => 'resource stream_id [, int options]',
904 904
     'description' => 'Close an IMAP stream',
905 905
   ),
906 906
   'imap_headers' => 
907
-  array (
907
+  array(
908 908
     'return' => 'array',
909 909
     'params' => 'resource stream_id',
910 910
     'description' => 'Returns headers for all messages in a mailbox',
911 911
   ),
912 912
   'imap_body' => 
913
-  array (
913
+  array(
914 914
     'return' => 'string',
915 915
     'params' => 'resource stream_id, int msg_no [, int options]',
916 916
     'description' => 'Read the message body',
917 917
   ),
918 918
   'imap_mail_copy' => 
919
-  array (
919
+  array(
920 920
     'return' => 'bool',
921 921
     'params' => 'resource stream_id, int msg_no, string mailbox [, int options]',
922 922
     'description' => 'Copy specified message to a mailbox',
923 923
   ),
924 924
   'imap_mail_move' => 
925
-  array (
925
+  array(
926 926
     'return' => 'bool',
927 927
     'params' => 'resource stream_id, int msg_no, string mailbox [, int options]',
928 928
     'description' => 'Move specified message to a mailbox',
929 929
   ),
930 930
   'imap_createmailbox' => 
931
-  array (
931
+  array(
932 932
     'return' => 'bool',
933 933
     'params' => 'resource stream_id, string mailbox',
934 934
     'description' => 'Create a new mailbox',
935 935
   ),
936 936
   'imap_renamemailbox' => 
937
-  array (
937
+  array(
938 938
     'return' => 'bool',
939 939
     'params' => 'resource stream_id, string old_name, string new_name',
940 940
     'description' => 'Rename a mailbox',
941 941
   ),
942 942
   'imap_deletemailbox' => 
943
-  array (
943
+  array(
944 944
     'return' => 'bool',
945 945
     'params' => 'resource stream_id, string mailbox',
946 946
     'description' => 'Delete a mailbox',
947 947
   ),
948 948
   'imap_list' => 
949
-  array (
949
+  array(
950 950
     'return' => 'array',
951 951
     'params' => 'resource stream_id, string ref, string pattern',
952 952
     'description' => 'Read the list of mailboxes',
953 953
   ),
954 954
   'imap_getmailboxes' => 
955
-  array (
955
+  array(
956 956
     'return' => 'array',
957 957
     'params' => 'resource stream_id, string ref, string pattern',
958 958
     'description' => 'Reads the list of mailboxes and returns a full array of objects containing name, attributes, and delimiter',
959 959
   ),
960 960
   'imap_scan' => 
961
-  array (
961
+  array(
962 962
     'return' => 'array',
963 963
     'params' => 'resource stream_id, string ref, string pattern, string content',
964 964
     'description' => 'Read list of mailboxes containing a certain string',
965 965
   ),
966 966
   'imap_check' => 
967
-  array (
967
+  array(
968 968
     'return' => 'object',
969 969
     'params' => 'resource stream_id',
970 970
     'description' => 'Get mailbox properties',
971 971
   ),
972 972
   'imap_delete' => 
973
-  array (
973
+  array(
974 974
     'return' => 'bool',
975 975
     'params' => 'resource stream_id, int msg_no [, int options]',
976 976
     'description' => 'Mark a message for deletion',
977 977
   ),
978 978
   'imap_undelete' => 
979
-  array (
979
+  array(
980 980
     'return' => 'bool',
981 981
     'params' => 'resource stream_id, int msg_no',
982 982
     'description' => 'Remove the delete flag from a message',
983 983
   ),
984 984
   'imap_headerinfo' => 
985
-  array (
985
+  array(
986 986
     'return' => 'object',
987 987
     'params' => 'resource stream_id, int msg_no [, int from_length [, int subject_length [, string default_host]]]',
988 988
     'description' => 'Read the headers of the message',
989 989
   ),
990 990
   'imap_rfc822_parse_headers' => 
991
-  array (
991
+  array(
992 992
     'return' => 'object',
993 993
     'params' => 'string headers [, string default_host]',
994 994
     'description' => 'Parse a set of mail headers contained in a string, and return an object similar to imap_headerinfo()',
995 995
   ),
996 996
   'imap_lsub' => 
997
-  array (
997
+  array(
998 998
     'return' => 'array',
999 999
     'params' => 'resource stream_id, string ref, string pattern',
1000 1000
     'description' => 'Return a list of subscribed mailboxes',
1001 1001
   ),
1002 1002
   'imap_getsubscribed' => 
1003
-  array (
1003
+  array(
1004 1004
     'return' => 'array',
1005 1005
     'params' => 'resource stream_id, string ref, string pattern',
1006 1006
     'description' => 'Return a list of subscribed mailboxes, in the same format as imap_getmailboxes()',
1007 1007
   ),
1008 1008
   'imap_subscribe' => 
1009
-  array (
1009
+  array(
1010 1010
     'return' => 'bool',
1011 1011
     'params' => 'resource stream_id, string mailbox',
1012 1012
     'description' => 'Subscribe to a mailbox',
1013 1013
   ),
1014 1014
   'imap_unsubscribe' => 
1015
-  array (
1015
+  array(
1016 1016
     'return' => 'bool',
1017 1017
     'params' => 'resource stream_id, string mailbox',
1018 1018
     'description' => 'Unsubscribe from a mailbox',
1019 1019
   ),
1020 1020
   'imap_fetchstructure' => 
1021
-  array (
1021
+  array(
1022 1022
     'return' => 'object',
1023 1023
     'params' => 'resource stream_id, int msg_no [, int options]',
1024 1024
     'description' => 'Read the full structure of a message',
1025 1025
   ),
1026 1026
   'imap_fetchbody' => 
1027
-  array (
1027
+  array(
1028 1028
     'return' => 'string',
1029 1029
     'params' => 'resource stream_id, int msg_no, string section [, int options]',
1030 1030
     'description' => 'Get a specific body section',
1031 1031
   ),
1032 1032
   'imap_savebody' => 
1033
-  array (
1033
+  array(
1034 1034
     'return' => 'bool',
1035 1035
     'params' => 'resource stream_id, string|resource file, int msg_no[, string section = ""[, int options = 0]]',
1036 1036
     'description' => 'Save a specific body section to a file',
1037 1037
   ),
1038 1038
   'imap_base64' => 
1039
-  array (
1039
+  array(
1040 1040
     'return' => 'string',
1041 1041
     'params' => 'string text',
1042 1042
     'description' => 'Decode BASE64 encoded text',
1043 1043
   ),
1044 1044
   'imap_qprint' => 
1045
-  array (
1045
+  array(
1046 1046
     'return' => 'string',
1047 1047
     'params' => 'string text',
1048 1048
     'description' => 'Convert a quoted-printable string to an 8-bit string',
1049 1049
   ),
1050 1050
   'imap_8bit' => 
1051
-  array (
1051
+  array(
1052 1052
     'return' => 'string',
1053 1053
     'params' => 'string text',
1054 1054
     'description' => 'Convert an 8-bit string to a quoted-printable string',
1055 1055
   ),
1056 1056
   'imap_binary' => 
1057
-  array (
1057
+  array(
1058 1058
     'return' => 'string',
1059 1059
     'params' => 'string text',
1060 1060
     'description' => 'Convert an 8bit string to a base64 string',
1061 1061
   ),
1062 1062
   'imap_mailboxmsginfo' => 
1063
-  array (
1063
+  array(
1064 1064
     'return' => 'object',
1065 1065
     'params' => 'resource stream_id',
1066 1066
     'description' => 'Returns info about the current mailbox',
1067 1067
   ),
1068 1068
   'imap_rfc822_write_address' => 
1069
-  array (
1069
+  array(
1070 1070
     'return' => 'string',
1071 1071
     'params' => 'string mailbox, string host, string personal',
1072 1072
     'description' => 'Returns a properly formatted email address given the mailbox, host, and personal info',
1073 1073
   ),
1074 1074
   'imap_rfc822_parse_adrlist' => 
1075
-  array (
1075
+  array(
1076 1076
     'return' => 'array',
1077 1077
     'params' => 'string address_string, string default_host',
1078 1078
     'description' => 'Parses an address string',
1079 1079
   ),
1080 1080
   'imap_utf8' => 
1081
-  array (
1081
+  array(
1082 1082
     'return' => 'string',
1083 1083
     'params' => 'string mime_encoded_text',
1084 1084
     'description' => 'Convert a mime-encoded text to UTF-8',
1085 1085
   ),
1086 1086
   'imap_utf7_decode' => 
1087
-  array (
1087
+  array(
1088 1088
     'return' => 'string',
1089 1089
     'params' => 'string buf',
1090 1090
     'description' => 'Decode a modified UTF-7 string',
1091 1091
   ),
1092 1092
   'imap_utf7_encode' => 
1093
-  array (
1093
+  array(
1094 1094
     'return' => 'string',
1095 1095
     'params' => 'string buf',
1096 1096
     'description' => 'Encode a string in modified UTF-7',
1097 1097
   ),
1098 1098
   'imap_setflag_full' => 
1099
-  array (
1099
+  array(
1100 1100
     'return' => 'bool',
1101 1101
     'params' => 'resource stream_id, string sequence, string flag [, int options]',
1102 1102
     'description' => 'Sets flags on messages',
1103 1103
   ),
1104 1104
   'imap_clearflag_full' => 
1105
-  array (
1105
+  array(
1106 1106
     'return' => 'bool',
1107 1107
     'params' => 'resource stream_id, string sequence, string flag [, int options]',
1108 1108
     'description' => 'Clears flags on messages',
1109 1109
   ),
1110 1110
   'imap_sort' => 
1111
-  array (
1111
+  array(
1112 1112
     'return' => 'array',
1113 1113
     'params' => 'resource stream_id, int criteria, int reverse [, int options [, string search_criteria [, string charset]]]',
1114 1114
     'description' => 'Sort an array of message headers, optionally including only messages that meet specified criteria.',
1115 1115
   ),
1116 1116
   'imap_fetchheader' => 
1117
-  array (
1117
+  array(
1118 1118
     'return' => 'string',
1119 1119
     'params' => 'resource stream_id, int msg_no [, int options]',
1120 1120
     'description' => 'Get the full unfiltered header for a message',
1121 1121
   ),
1122 1122
   'imap_uid' => 
1123
-  array (
1123
+  array(
1124 1124
     'return' => 'int',
1125 1125
     'params' => 'resource stream_id, int msg_no',
1126 1126
     'description' => 'Get the unique message id associated with a standard sequential message number',
1127 1127
   ),
1128 1128
   'imap_msgno' => 
1129
-  array (
1129
+  array(
1130 1130
     'return' => 'int',
1131 1131
     'params' => 'resource stream_id, int unique_msg_id',
1132 1132
     'description' => 'Get the sequence number associated with a UID',
1133 1133
   ),
1134 1134
   'imap_status' => 
1135
-  array (
1135
+  array(
1136 1136
     'return' => 'object',
1137 1137
     'params' => 'resource stream_id, string mailbox, int options',
1138 1138
     'description' => 'Get status info from a mailbox',
1139 1139
   ),
1140 1140
   'imap_bodystruct' => 
1141
-  array (
1141
+  array(
1142 1142
     'return' => 'object',
1143 1143
     'params' => 'resource stream_id, int msg_no, string section',
1144 1144
     'description' => 'Read the structure of a specified body section of a specific message',
1145 1145
   ),
1146 1146
   'imap_fetch_overview' => 
1147
-  array (
1147
+  array(
1148 1148
     'return' => 'array',
1149 1149
     'params' => 'resource stream_id, int msg_no [, int options]',
1150 1150
     'description' => 'Read an overview of the information in the headers of the given message sequence',
1151 1151
   ),
1152 1152
   'imap_mail_compose' => 
1153
-  array (
1153
+  array(
1154 1154
     'return' => 'string',
1155 1155
     'params' => 'array envelope, array body',
1156 1156
     'description' => 'Create a MIME message based on given envelope and body sections',
1157 1157
   ),
1158 1158
   'imap_mail' => 
1159
-  array (
1159
+  array(
1160 1160
     'return' => 'bool',
1161 1161
     'params' => 'string to, string subject, string message [, string additional_headers [, string cc [, string bcc [, string rpath]]]]',
1162 1162
     'description' => 'Send an email message',
1163 1163
   ),
1164 1164
   'imap_search' => 
1165
-  array (
1165
+  array(
1166 1166
     'return' => 'array',
1167 1167
     'params' => 'resource stream_id, string criteria [, int options [, string charset]]',
1168 1168
     'description' => 'Return a list of messages matching the given criteria',
1169 1169
   ),
1170 1170
   'imap_alerts' => 
1171
-  array (
1171
+  array(
1172 1172
     'return' => 'array',
1173 1173
     'params' => 'void',
1174 1174
     'description' => 'Returns an array of all IMAP alerts that have been generated since the last page load or since the last imap_alerts() call, whichever came last. The alert stack is cleared after imap_alerts() is called.',
1175 1175
   ),
1176 1176
   'imap_errors' => 
1177
-  array (
1177
+  array(
1178 1178
     'return' => 'array',
1179 1179
     'params' => 'void',
1180 1180
     'description' => 'Returns an array of all IMAP errors generated since the last page load, or since the last imap_errors() call, whichever came last. The error stack is cleared after imap_errors() is called.',
1181 1181
   ),
1182 1182
   'imap_last_error' => 
1183
-  array (
1183
+  array(
1184 1184
     'return' => 'string',
1185 1185
     'params' => 'void',
1186 1186
     'description' => 'Returns the last error that was generated by an IMAP function. The error stack is NOT cleared after this call.',
1187 1187
   ),
1188 1188
   'imap_mime_header_decode' => 
1189
-  array (
1189
+  array(
1190 1190
     'return' => 'array',
1191 1191
     'params' => 'string str',
1192 1192
     'description' => 'Decode mime header element in accordance with RFC 2047 and return array of objects containing \'charset\' encoding and decoded \'text\'',
1193 1193
   ),
1194 1194
   'imap_thread' => 
1195
-  array (
1195
+  array(
1196 1196
     'return' => 'array',
1197 1197
     'params' => 'resource stream_id [, int options]',
1198 1198
     'description' => 'Return threaded by REFERENCES tree',
1199 1199
   ),
1200 1200
   'imap_timeout' => 
1201
-  array (
1201
+  array(
1202 1202
     'return' => 'mixed',
1203 1203
     'params' => 'int timeout_type [, int timeout]',
1204 1204
     'description' => 'Set or fetch imap timeout',
1205 1205
   ),
1206 1206
   'session_set_cookie_params' => 
1207
-  array (
1207
+  array(
1208 1208
     'return' => 'void',
1209 1209
     'params' => 'int lifetime [, string path [, string domain [, bool secure]]]',
1210 1210
     'description' => 'Set session cookie parameters',
1211 1211
   ),
1212 1212
   'session_get_cookie_params' => 
1213
-  array (
1213
+  array(
1214 1214
     'return' => 'array',
1215 1215
     'params' => 'void',
1216 1216
     'description' => 'Return the session cookie parameters',
1217 1217
   ),
1218 1218
   'session_name' => 
1219
-  array (
1219
+  array(
1220 1220
     'return' => 'string',
1221 1221
     'params' => '[string newname]',
1222 1222
     'description' => 'Return the current session name. If newname is given, the session name is replaced with newname',
1223 1223
   ),
1224 1224
   'session_module_name' => 
1225
-  array (
1225
+  array(
1226 1226
     'return' => 'string',
1227 1227
     'params' => '[string newname]',
1228 1228
     'description' => 'Return the current module name used for accessing session data. If newname is given, the module name is replaced with newname',
1229 1229
   ),
1230 1230
   'session_set_save_handler' => 
1231
-  array (
1231
+  array(
1232 1232
     'return' => 'void',
1233 1233
     'params' => 'string open, string close, string read, string write, string destroy, string gc',
1234 1234
     'description' => 'Sets user-level functions',
1235 1235
   ),
1236 1236
   'session_save_path' => 
1237
-  array (
1237
+  array(
1238 1238
     'return' => 'string',
1239 1239
     'params' => '[string newname]',
1240 1240
     'description' => 'Return the current save path passed to module_name. If newname is given, the save path is replaced with newname',
1241 1241
   ),
1242 1242
   'session_id' => 
1243
-  array (
1243
+  array(
1244 1244
     'return' => 'string',
1245 1245
     'params' => '[string newid]',
1246 1246
     'description' => 'Return the current session id. If newid is given, the session id is replaced with newid',
1247 1247
   ),
1248 1248
   'session_regenerate_id' => 
1249
-  array (
1249
+  array(
1250 1250
     'return' => 'bool',
1251 1251
     'params' => '[bool delete_old_session]',
1252 1252
     'description' => 'Update the current session id with a newly generated one. If delete_old_session is set to true, remove the old session.',
1253 1253
   ),
1254 1254
   'session_cache_limiter' => 
1255
-  array (
1255
+  array(
1256 1256
     'return' => 'string',
1257 1257
     'params' => '[string new_cache_limiter]',
1258 1258
     'description' => 'Return the current cache limiter. If new_cache_limited is given, the current cache_limiter is replaced with new_cache_limiter',
1259 1259
   ),
1260 1260
   'session_cache_expire' => 
1261
-  array (
1261
+  array(
1262 1262
     'return' => 'int',
1263 1263
     'params' => '[int new_cache_expire]',
1264 1264
     'description' => 'Return the current cache expire. If new_cache_expire is given, the current cache_expire is replaced with new_cache_expire',
1265 1265
   ),
1266 1266
   'session_register' => 
1267
-  array (
1267
+  array(
1268 1268
     'return' => 'bool',
1269 1269
     'params' => 'mixed var_names [, mixed ...]',
1270 1270
     'description' => 'Adds varname(s) to the list of variables which are freezed at the session end',
1271 1271
   ),
1272 1272
   'session_unregister' => 
1273
-  array (
1273
+  array(
1274 1274
     'return' => 'bool',
1275 1275
     'params' => 'string varname',
1276 1276
     'description' => 'Removes varname from the list of variables which are freezed at the session end',
1277 1277
   ),
1278 1278
   'session_is_registered' => 
1279
-  array (
1279
+  array(
1280 1280
     'return' => 'bool',
1281 1281
     'params' => 'string varname',
1282 1282
     'description' => 'Checks if a variable is registered in session',
1283 1283
   ),
1284 1284
   'session_encode' => 
1285
-  array (
1285
+  array(
1286 1286
     'return' => 'string',
1287 1287
     'params' => 'void',
1288 1288
     'description' => 'Serializes the current setup and returns the serialized representation',
1289 1289
   ),
1290 1290
   'session_decode' => 
1291
-  array (
1291
+  array(
1292 1292
     'return' => 'bool',
1293 1293
     'params' => 'string data',
1294 1294
     'description' => 'Deserializes data and reinitializes the variables',
1295 1295
   ),
1296 1296
   'session_start' => 
1297
-  array (
1297
+  array(
1298 1298
     'return' => 'bool',
1299 1299
     'params' => 'void',
1300 1300
     'description' => 'Begin session - reinitializes freezed variables, registers browsers etc',
1301 1301
   ),
1302 1302
   'session_destroy' => 
1303
-  array (
1303
+  array(
1304 1304
     'return' => 'bool',
1305 1305
     'params' => 'void',
1306 1306
     'description' => 'Destroy the current session and all data associated with it',
1307 1307
   ),
1308 1308
   'session_unset' => 
1309
-  array (
1309
+  array(
1310 1310
     'return' => 'void',
1311 1311
     'params' => 'void',
1312 1312
     'description' => 'Unset all registered variables',
1313 1313
   ),
1314 1314
   'session_write_close' => 
1315
-  array (
1315
+  array(
1316 1316
     'return' => 'void',
1317 1317
     'params' => 'void',
1318 1318
     'description' => 'Write session data and end session',
1319 1319
   ),
1320 1320
   'mysql_connect' => 
1321
-  array (
1321
+  array(
1322 1322
     'return' => 'resource',
1323 1323
     'params' => '[string hostname[:port][:/path/to/socket] [, string username [, string password [, bool new [, int flags]]]]]',
1324 1324
     'description' => 'Opens a connection to a MySQL Server',
1325 1325
   ),
1326 1326
   'mysql_pconnect' => 
1327
-  array (
1327
+  array(
1328 1328
     'return' => 'resource',
1329 1329
     'params' => '[string hostname[:port][:/path/to/socket] [, string username [, string password [, int flags]]]]',
1330 1330
     'description' => 'Opens a persistent connection to a MySQL Server',
1331 1331
   ),
1332 1332
   'mysql_close' => 
1333
-  array (
1333
+  array(
1334 1334
     'return' => 'bool',
1335 1335
     'params' => '[int link_identifier]',
1336 1336
     'description' => 'Close a MySQL connection',
1337 1337
   ),
1338 1338
   'mysql_select_db' => 
1339
-  array (
1339
+  array(
1340 1340
     'return' => 'bool',
1341 1341
     'params' => 'string database_name [, int link_identifier]',
1342 1342
     'description' => 'Selects a MySQL database',
1343 1343
   ),
1344 1344
   'mysql_get_client_info' => 
1345
-  array (
1345
+  array(
1346 1346
     'return' => 'string',
1347 1347
     'params' => 'void',
1348 1348
     'description' => 'Returns a string that represents the client library version',
1349 1349
   ),
1350 1350
   'mysql_get_host_info' => 
1351
-  array (
1351
+  array(
1352 1352
     'return' => 'string',
1353 1353
     'params' => '[int link_identifier]',
1354 1354
     'description' => 'Returns a string describing the type of connection in use, including the server host name',
1355 1355
   ),
1356 1356
   'mysql_get_proto_info' => 
1357
-  array (
1357
+  array(
1358 1358
     'return' => 'int',
1359 1359
     'params' => '[int link_identifier]',
1360 1360
     'description' => 'Returns the protocol version used by current connection',
1361 1361
   ),
1362 1362
   'mysql_get_server_info' => 
1363
-  array (
1363
+  array(
1364 1364
     'return' => 'string',
1365 1365
     'params' => '[int link_identifier]',
1366 1366
     'description' => 'Returns a string that represents the server version number',
1367 1367
   ),
1368 1368
   'mysql_info' => 
1369
-  array (
1369
+  array(
1370 1370
     'return' => 'string',
1371 1371
     'params' => '[int link_identifier]',
1372 1372
     'description' => 'Returns a string containing information about the most recent query',
1373 1373
   ),
1374 1374
   'mysql_thread_id' => 
1375
-  array (
1375
+  array(
1376 1376
     'return' => 'int',
1377 1377
     'params' => '[int link_identifier]',
1378 1378
     'description' => 'Returns the thread id of current connection',
1379 1379
   ),
1380 1380
   'mysql_stat' => 
1381
-  array (
1381
+  array(
1382 1382
     'return' => 'string',
1383 1383
     'params' => '[int link_identifier]',
1384 1384
     'description' => 'Returns a string containing status information',
1385 1385
   ),
1386 1386
   'mysql_client_encoding' => 
1387
-  array (
1387
+  array(
1388 1388
     'return' => 'string',
1389 1389
     'params' => '[int link_identifier]',
1390 1390
     'description' => 'Returns the default character set for the current connection',
1391 1391
   ),
1392 1392
   'mysql_create_db' => 
1393
-  array (
1393
+  array(
1394 1394
     'return' => 'bool',
1395 1395
     'params' => 'string database_name [, int link_identifier]',
1396 1396
     'description' => 'Create a MySQL database',
1397 1397
   ),
1398 1398
   'mysql_drop_db' => 
1399
-  array (
1399
+  array(
1400 1400
     'return' => 'bool',
1401 1401
     'params' => 'string database_name [, int link_identifier]',
1402 1402
     'description' => 'Drops (delete) a MySQL database',
1403 1403
   ),
1404 1404
   'mysql_query' => 
1405
-  array (
1405
+  array(
1406 1406
     'return' => 'resource',
1407 1407
     'params' => 'string query [, int link_identifier]',
1408 1408
     'description' => 'Sends an SQL query to MySQL',
1409 1409
   ),
1410 1410
   'mysql_unbuffered_query' => 
1411
-  array (
1411
+  array(
1412 1412
     'return' => 'resource',
1413 1413
     'params' => 'string query [, int link_identifier]',
1414 1414
     'description' => 'Sends an SQL query to MySQL, without fetching and buffering the result rows',
1415 1415
   ),
1416 1416
   'mysql_db_query' => 
1417
-  array (
1417
+  array(
1418 1418
     'return' => 'resource',
1419 1419
     'params' => 'string database_name, string query [, int link_identifier]',
1420 1420
     'description' => 'Sends an SQL query to MySQL',
1421 1421
   ),
1422 1422
   'mysql_list_dbs' => 
1423
-  array (
1423
+  array(
1424 1424
     'return' => 'resource',
1425 1425
     'params' => '[int link_identifier]',
1426 1426
     'description' => 'List databases available on a MySQL server',
1427 1427
   ),
1428 1428
   'mysql_list_tables' => 
1429
-  array (
1429
+  array(
1430 1430
     'return' => 'resource',
1431 1431
     'params' => 'string database_name [, int link_identifier]',
1432 1432
     'description' => 'List tables in a MySQL database',
1433 1433
   ),
1434 1434
   'mysql_list_fields' => 
1435
-  array (
1435
+  array(
1436 1436
     'return' => 'resource',
1437 1437
     'params' => 'string database_name, string table_name [, int link_identifier]',
1438 1438
     'description' => 'List MySQL result fields',
1439 1439
   ),
1440 1440
   'mysql_list_processes' => 
1441
-  array (
1441
+  array(
1442 1442
     'return' => 'resource',
1443 1443
     'params' => '[int link_identifier]',
1444 1444
     'description' => 'Returns a result set describing the current server threads',
1445 1445
   ),
1446 1446
   'mysql_error' => 
1447
-  array (
1447
+  array(
1448 1448
     'return' => 'string',
1449 1449
     'params' => '[int link_identifier]',
1450 1450
     'description' => 'Returns the text of the error message from previous MySQL operation',
1451 1451
   ),
1452 1452
   'mysql_errno' => 
1453
-  array (
1453
+  array(
1454 1454
     'return' => 'int',
1455 1455
     'params' => '[int link_identifier]',
1456 1456
     'description' => 'Returns the number of the error message from previous MySQL operation',
1457 1457
   ),
1458 1458
   'mysql_affected_rows' => 
1459
-  array (
1459
+  array(
1460 1460
     'return' => 'int',
1461 1461
     'params' => '[int link_identifier]',
1462 1462
     'description' => 'Gets number of affected rows in previous MySQL operation',
1463 1463
   ),
1464 1464
   'mysql_escape_string' => 
1465
-  array (
1465
+  array(
1466 1466
     'return' => 'string',
1467 1467
     'params' => 'string to_be_escaped',
1468 1468
     'description' => 'Escape string for mysql query',
1469 1469
   ),
1470 1470
   'mysql_real_escape_string' => 
1471
-  array (
1471
+  array(
1472 1472
     'return' => 'string',
1473 1473
     'params' => 'string to_be_escaped [, int link_identifier]',
1474 1474
     'description' => 'Escape special characters in a string for use in a SQL statement, taking into account the current charset of the connection',
1475 1475
   ),
1476 1476
   'mysql_insert_id' => 
1477
-  array (
1477
+  array(
1478 1478
     'return' => 'int',
1479 1479
     'params' => '[int link_identifier]',
1480 1480
     'description' => 'Gets the ID generated from the previous INSERT operation',
1481 1481
   ),
1482 1482
   'mysql_result' => 
1483
-  array (
1483
+  array(
1484 1484
     'return' => 'mixed',
1485 1485
     'params' => 'resource result, int row [, mixed field]',
1486 1486
     'description' => 'Gets result data',
1487 1487
   ),
1488 1488
   'mysql_num_rows' => 
1489
-  array (
1489
+  array(
1490 1490
     'return' => 'int',
1491 1491
     'params' => 'resource result',
1492 1492
     'description' => 'Gets number of rows in a result',
1493 1493
   ),
1494 1494
   'mysql_num_fields' => 
1495
-  array (
1495
+  array(
1496 1496
     'return' => 'int',
1497 1497
     'params' => 'resource result',
1498 1498
     'description' => 'Gets number of fields in a result',
1499 1499
   ),
1500 1500
   'mysql_fetch_row' => 
1501
-  array (
1501
+  array(
1502 1502
     'return' => 'array',
1503 1503
     'params' => 'resource result',
1504 1504
     'description' => 'Gets a result row as an enumerated array',
1505 1505
   ),
1506 1506
   'mysql_fetch_object' => 
1507
-  array (
1507
+  array(
1508 1508
     'return' => 'object',
1509 1509
     'params' => 'resource result [, string class_name [, NULL|array ctor_params]]',
1510 1510
     'description' => 'Fetch a result row as an object',
1511 1511
   ),
1512 1512
   'mysql_fetch_array' => 
1513
-  array (
1513
+  array(
1514 1514
     'return' => 'array',
1515 1515
     'params' => 'resource result [, int result_type]',
1516 1516
     'description' => 'Fetch a result row as an array (associative, numeric or both)',
1517 1517
   ),
1518 1518
   'mysql_fetch_assoc' => 
1519
-  array (
1519
+  array(
1520 1520
     'return' => 'array',
1521 1521
     'params' => 'resource result',
1522 1522
     'description' => 'Fetch a result row as an associative array',
1523 1523
   ),
1524 1524
   'mysql_data_seek' => 
1525
-  array (
1525
+  array(
1526 1526
     'return' => 'bool',
1527 1527
     'params' => 'resource result, int row_number',
1528 1528
     'description' => 'Move internal result pointer',
1529 1529
   ),
1530 1530
   'mysql_fetch_lengths' => 
1531
-  array (
1531
+  array(
1532 1532
     'return' => 'array',
1533 1533
     'params' => 'resource result',
1534 1534
     'description' => 'Gets max data size of each column in a result',
1535 1535
   ),
1536 1536
   'mysql_fetch_field' => 
1537
-  array (
1537
+  array(
1538 1538
     'return' => 'object',
1539 1539
     'params' => 'resource result [, int field_offset]',
1540 1540
     'description' => 'Gets column information from a result and return as an object',
1541 1541
   ),
1542 1542
   'mysql_field_seek' => 
1543
-  array (
1543
+  array(
1544 1544
     'return' => 'bool',
1545 1545
     'params' => 'resource result, int field_offset',
1546 1546
     'description' => 'Sets result pointer to a specific field offset',
1547 1547
   ),
1548 1548
   'mysql_field_name' => 
1549
-  array (
1549
+  array(
1550 1550
     'return' => 'string',
1551 1551
     'params' => 'resource result, int field_index',
1552 1552
     'description' => 'Gets the name of the specified field in a result',
1553 1553
   ),
1554 1554
   'mysql_field_table' => 
1555
-  array (
1555
+  array(
1556 1556
     'return' => 'string',
1557 1557
     'params' => 'resource result, int field_offset',
1558 1558
     'description' => 'Gets name of the table the specified field is in',
1559 1559
   ),
1560 1560
   'mysql_field_len' => 
1561
-  array (
1561
+  array(
1562 1562
     'return' => 'int',
1563 1563
     'params' => 'resource result, int field_offset',
1564 1564
     'description' => 'Returns the length of the specified field',
1565 1565
   ),
1566 1566
   'mysql_field_type' => 
1567
-  array (
1567
+  array(
1568 1568
     'return' => 'string',
1569 1569
     'params' => 'resource result, int field_offset',
1570 1570
     'description' => 'Gets the type of the specified field in a result',
1571 1571
   ),
1572 1572
   'mysql_field_flags' => 
1573
-  array (
1573
+  array(
1574 1574
     'return' => 'string',
1575 1575
     'params' => 'resource result, int field_offset',
1576 1576
     'description' => 'Gets the flags associated with the specified field in a result',
1577 1577
   ),
1578 1578
   'mysql_free_result' => 
1579
-  array (
1579
+  array(
1580 1580
     'return' => 'bool',
1581 1581
     'params' => 'resource result',
1582 1582
     'description' => 'Free result memory',
1583 1583
   ),
1584 1584
   'mysql_ping' => 
1585
-  array (
1585
+  array(
1586 1586
     'return' => 'bool',
1587 1587
     'params' => '[int link_identifier]',
1588 1588
     'description' => 'Ping a server connection. If no connection then reconnect.',
1589 1589
   ),
1590 1590
   'dom_domerrorhandler_handle_error' => 
1591
-  array (
1591
+  array(
1592 1592
     'return' => 'dom_boolean',
1593 1593
     'params' => 'domerror error',
1594 1594
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-ERRORS-DOMErrorHandler-handleErrorSince:',
1595 1595
   ),
1596 1596
   'dom_document_create_element' => 
1597
-  array (
1597
+  array(
1598 1598
     'return' => 'DOMElement',
1599 1599
     'params' => 'string tagName [, string value]',
1600 1600
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-2141741547Since:',
1601 1601
   ),
1602 1602
   'dom_document_create_document_fragment' => 
1603
-  array (
1603
+  array(
1604 1604
     'return' => 'DOMDocumentFragment',
1605 1605
     'params' => '',
1606 1606
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-35CB04B5Since:',
1607 1607
   ),
1608 1608
   'dom_document_create_text_node' => 
1609
-  array (
1609
+  array(
1610 1610
     'return' => 'DOMText',
1611 1611
     'params' => 'string data',
1612 1612
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1975348127Since:',
1613 1613
   ),
1614 1614
   'dom_document_create_comment' => 
1615
-  array (
1615
+  array(
1616 1616
     'return' => 'DOMComment',
1617 1617
     'params' => 'string data',
1618 1618
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1334481328Since:',
1619 1619
   ),
1620 1620
   'dom_document_create_cdatasection' => 
1621
-  array (
1621
+  array(
1622 1622
     'return' => 'DOMCdataSection',
1623 1623
     'params' => 'string data',
1624 1624
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-D26C0AF8Since:',
1625 1625
   ),
1626 1626
   'dom_document_create_processing_instruction' => 
1627
-  array (
1627
+  array(
1628 1628
     'return' => 'DOMProcessingInstruction',
1629 1629
     'params' => 'string target, string data',
1630 1630
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-135944439Since:',
1631 1631
   ),
1632 1632
   'dom_document_create_attribute' => 
1633
-  array (
1633
+  array(
1634 1634
     'return' => 'DOMAttr',
1635 1635
     'params' => 'string name',
1636 1636
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1084891198Since:',
1637 1637
   ),
1638 1638
   'dom_document_create_entity_reference' => 
1639
-  array (
1639
+  array(
1640 1640
     'return' => 'DOMEntityReference',
1641 1641
     'params' => 'string name',
1642 1642
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-392B75AESince:',
1643 1643
   ),
1644 1644
   'dom_document_get_elements_by_tag_name' => 
1645
-  array (
1645
+  array(
1646 1646
     'return' => 'DOMNodeList',
1647 1647
     'params' => 'string tagname',
1648 1648
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-A6C9094Since:',
1649 1649
   ),
1650 1650
   'dom_document_import_node' => 
1651
-  array (
1651
+  array(
1652 1652
     'return' => 'DOMNode',
1653 1653
     'params' => 'DOMNode importedNode, boolean deep',
1654 1654
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Core-Document-importNodeSince: DOM Level 2',
1655 1655
   ),
1656 1656
   'dom_document_create_element_ns' => 
1657
-  array (
1657
+  array(
1658 1658
     'return' => 'DOMElement',
1659 1659
     'params' => 'string namespaceURI, string qualifiedName [,string value]',
1660 1660
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-DocCrElNSSince: DOM Level 2',
1661 1661
   ),
1662 1662
   'dom_document_create_attribute_ns' => 
1663
-  array (
1663
+  array(
1664 1664
     'return' => 'DOMAttr',
1665 1665
     'params' => 'string namespaceURI, string qualifiedName',
1666 1666
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-DocCrAttrNSSince: DOM Level 2',
1667 1667
   ),
1668 1668
   'dom_document_get_elements_by_tag_name_ns' => 
1669
-  array (
1669
+  array(
1670 1670
     'return' => 'DOMNodeList',
1671 1671
     'params' => 'string namespaceURI, string localName',
1672 1672
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-getElBTNNSSince: DOM Level 2',
1673 1673
   ),
1674 1674
   'dom_document_get_element_by_id' => 
1675
-  array (
1675
+  array(
1676 1676
     'return' => 'DOMElement',
1677 1677
     'params' => 'string elementId',
1678 1678
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-getElBIdSince: DOM Level 2',
1679 1679
   ),
1680 1680
   'dom_document_adopt_node' => 
1681
-  array (
1681
+  array(
1682 1682
     'return' => 'DOMNode',
1683 1683
     'params' => 'DOMNode source',
1684 1684
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Document3-adoptNodeSince: DOM Level 3',
1685 1685
   ),
1686 1686
   'dom_document_normalize_document' => 
1687
-  array (
1687
+  array(
1688 1688
     'return' => 'void',
1689 1689
     'params' => '',
1690 1690
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Document3-normalizeDocumentSince: DOM Level 3',
1691 1691
   ),
1692 1692
   'dom_document_rename_node' => 
1693
-  array (
1693
+  array(
1694 1694
     'return' => 'DOMNode',
1695 1695
     'params' => 'node n, string namespaceURI, string qualifiedName',
1696 1696
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Document3-renameNodeSince: DOM Level 3',
1697 1697
   ),
1698 1698
   'dom_document_load' => 
1699
-  array (
1699
+  array(
1700 1700
     'return' => 'DOMNode',
1701 1701
     'params' => 'string source [, int options]',
1702 1702
     'description' => 'URL: http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS-loadSince: DOM Level 3',
1703 1703
   ),
1704 1704
   'dom_document_loadxml' => 
1705
-  array (
1705
+  array(
1706 1706
     'return' => 'DOMNode',
1707 1707
     'params' => 'string source [, int options]',
1708 1708
     'description' => 'URL: http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS-loadXMLSince: DOM Level 3',
1709 1709
   ),
1710 1710
   'dom_document_save' => 
1711
-  array (
1711
+  array(
1712 1712
     'return' => 'int',
1713 1713
     'params' => 'string file',
1714 1714
     'description' => 'Convenience method to save to file',
1715 1715
   ),
1716 1716
   'dom_document_savexml' => 
1717
-  array (
1717
+  array(
1718 1718
     'return' => 'string',
1719 1719
     'params' => '[node n]',
1720 1720
     'description' => 'URL: http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS-saveXMLSince: DOM Level 3',
1721 1721
   ),
1722 1722
   'dom_document_xinclude' => 
1723
-  array (
1723
+  array(
1724 1724
     'return' => 'int',
1725 1725
     'params' => '[int options]',
1726 1726
     'description' => 'Substitutues xincludes in a DomDocument',
1727 1727
   ),
1728 1728
   'dom_document_validate' => 
1729
-  array (
1729
+  array(
1730 1730
     'return' => 'boolean',
1731 1731
     'params' => '',
1732 1732
     'description' => 'Since: DOM extended',
1733 1733
   ),
1734 1734
   'dom_document_load_html_file' => 
1735
-  array (
1735
+  array(
1736 1736
     'return' => 'DOMNode',
1737 1737
     'params' => 'string source',
1738 1738
     'description' => 'Since: DOM extended',
1739 1739
   ),
1740 1740
   'dom_document_load_html' => 
1741
-  array (
1741
+  array(
1742 1742
     'return' => 'DOMNode',
1743 1743
     'params' => 'string source',
1744 1744
     'description' => 'Since: DOM extended',
1745 1745
   ),
1746 1746
   'dom_document_save_html_file' => 
1747
-  array (
1747
+  array(
1748 1748
     'return' => 'int',
1749 1749
     'params' => 'string file',
1750 1750
     'description' => 'Convenience method to save to file as html',
1751 1751
   ),
1752 1752
   'dom_document_save_html' => 
1753
-  array (
1753
+  array(
1754 1754
     'return' => 'string',
1755 1755
     'params' => '',
1756 1756
     'description' => 'Convenience method to output as html',
1757 1757
   ),
1758 1758
   'dom_domstringlist_item' => 
1759
-  array (
1759
+  array(
1760 1760
     'return' => 'domstring',
1761 1761
     'params' => 'int index',
1762 1762
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMStringList-itemSince:',
1763 1763
   ),
1764 1764
   'dom_string_extend_find_offset16' => 
1765
-  array (
1765
+  array(
1766 1766
     'return' => 'int',
1767 1767
     'params' => 'int offset32',
1768 1768
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#i18n-methods-StringExtend-findOffset16Since:',
1769 1769
   ),
1770 1770
   'dom_string_extend_find_offset32' => 
1771
-  array (
1771
+  array(
1772 1772
     'return' => 'int',
1773 1773
     'params' => 'int offset16',
1774 1774
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#i18n-methods-StringExtend-findOffset32Since:',
1775 1775
   ),
1776 1776
   'dom_import_simplexml' => 
1777
-  array (
1777
+  array(
1778 1778
     'return' => 'somNode',
1779 1779
     'params' => 'sxeobject node',
1780 1780
     'description' => 'Get a simplexml_element object from dom to allow for processing',
1781 1781
   ),
1782 1782
   'dom_domimplementation_has_feature' => 
1783
-  array (
1783
+  array(
1784 1784
     'return' => 'boolean',
1785 1785
     'params' => 'string feature, string version',
1786 1786
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-5CED94D7Since:',
1787 1787
   ),
1788 1788
   'dom_domimplementation_create_document_type' => 
1789
-  array (
1789
+  array(
1790 1790
     'return' => 'DOMDocumentType',
1791 1791
     'params' => 'string qualifiedName, string publicId, string systemId',
1792 1792
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Level-2-Core-DOM-createDocTypeSince: DOM Level 2',
1793 1793
   ),
1794 1794
   'dom_domimplementation_create_document' => 
1795
-  array (
1795
+  array(
1796 1796
     'return' => 'DOMDocument',
1797 1797
     'params' => 'string namespaceURI, string qualifiedName, DOMDocumentType doctype',
1798 1798
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Level-2-Core-DOM-createDocumentSince: DOM Level 2',
1799 1799
   ),
1800 1800
   'dom_domimplementation_get_feature' => 
1801
-  array (
1801
+  array(
1802 1802
     'return' => 'DOMNode',
1803 1803
     'params' => 'string feature, string version',
1804 1804
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMImplementation3-getFeatureSince: DOM Level 3',
1805 1805
   ),
1806 1806
   'dom_namelist_get_name' => 
1807
-  array (
1807
+  array(
1808 1808
     'return' => 'string',
1809 1809
     'params' => 'int index',
1810 1810
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#NameList-getNameSince:',
1811 1811
   ),
1812 1812
   'dom_namelist_get_namespace_uri' => 
1813
-  array (
1813
+  array(
1814 1814
     'return' => 'string',
1815 1815
     'params' => 'int index',
1816 1816
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#NameList-getNamespaceURISince:',
1817 1817
   ),
1818 1818
   'dom_text_split_text' => 
1819
-  array (
1819
+  array(
1820 1820
     'return' => 'DOMText',
1821 1821
     'params' => 'int offset',
1822 1822
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-38853C1DSince:',
1823 1823
   ),
1824 1824
   'dom_text_is_whitespace_in_element_content' => 
1825
-  array (
1825
+  array(
1826 1826
     'return' => 'boolean',
1827 1827
     'params' => '',
1828 1828
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Text3-isWhitespaceInElementContentSince: DOM Level 3',
1829 1829
   ),
1830 1830
   'dom_text_replace_whole_text' => 
1831
-  array (
1831
+  array(
1832 1832
     'return' => 'DOMText',
1833 1833
     'params' => 'string content',
1834 1834
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Text3-replaceWholeTextSince: DOM Level 3',
1835 1835
   ),
1836 1836
   'dom_element_get_attribute' => 
1837
-  array (
1837
+  array(
1838 1838
     'return' => 'string',
1839 1839
     'params' => 'string name',
1840 1840
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-666EE0F9Since:',
1841 1841
   ),
1842 1842
   'dom_element_set_attribute' => 
1843
-  array (
1843
+  array(
1844 1844
     'return' => 'void',
1845 1845
     'params' => 'string name, string value',
1846 1846
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-F68F082Since:',
1847 1847
   ),
1848 1848
   'dom_element_remove_attribute' => 
1849
-  array (
1849
+  array(
1850 1850
     'return' => 'void',
1851 1851
     'params' => 'string name',
1852 1852
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-6D6AC0F9Since:',
1853 1853
   ),
1854 1854
   'dom_element_get_attribute_node' => 
1855
-  array (
1855
+  array(
1856 1856
     'return' => 'DOMAttr',
1857 1857
     'params' => 'string name',
1858 1858
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-217A91B8Since:',
1859 1859
   ),
1860 1860
   'dom_element_set_attribute_node' => 
1861
-  array (
1861
+  array(
1862 1862
     'return' => 'DOMAttr',
1863 1863
     'params' => 'DOMAttr newAttr',
1864 1864
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-887236154Since:',
1865 1865
   ),
1866 1866
   'dom_element_remove_attribute_node' => 
1867
-  array (
1867
+  array(
1868 1868
     'return' => 'DOMAttr',
1869 1869
     'params' => 'DOMAttr oldAttr',
1870 1870
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-D589198Since:',
1871 1871
   ),
1872 1872
   'dom_element_get_elements_by_tag_name' => 
1873
-  array (
1873
+  array(
1874 1874
     'return' => 'DOMNodeList',
1875 1875
     'params' => 'string name',
1876 1876
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1938918DSince:',
1877 1877
   ),
1878 1878
   'dom_element_get_attribute_ns' => 
1879
-  array (
1879
+  array(
1880 1880
     'return' => 'string',
1881 1881
     'params' => 'string namespaceURI, string localName',
1882 1882
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElGetAttrNSSince: DOM Level 2',
1883 1883
   ),
1884 1884
   'dom_element_set_attribute_ns' => 
1885
-  array (
1885
+  array(
1886 1886
     'return' => 'void',
1887 1887
     'params' => 'string namespaceURI, string qualifiedName, string value',
1888 1888
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElSetAttrNSSince: DOM Level 2',
1889 1889
   ),
1890 1890
   'dom_element_remove_attribute_ns' => 
1891
-  array (
1891
+  array(
1892 1892
     'return' => 'void',
1893 1893
     'params' => 'string namespaceURI, string localName',
1894 1894
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElRemAtNSSince: DOM Level 2',
1895 1895
   ),
1896 1896
   'dom_element_get_attribute_node_ns' => 
1897
-  array (
1897
+  array(
1898 1898
     'return' => 'DOMAttr',
1899 1899
     'params' => 'string namespaceURI, string localName',
1900 1900
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElGetAtNodeNSSince: DOM Level 2',
1901 1901
   ),
1902 1902
   'dom_element_set_attribute_node_ns' => 
1903
-  array (
1903
+  array(
1904 1904
     'return' => 'DOMAttr',
1905 1905
     'params' => 'DOMAttr newAttr',
1906 1906
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElSetAtNodeNSSince: DOM Level 2',
1907 1907
   ),
1908 1908
   'dom_element_get_elements_by_tag_name_ns' => 
1909
-  array (
1909
+  array(
1910 1910
     'return' => 'DOMNodeList',
1911 1911
     'params' => 'string namespaceURI, string localName',
1912 1912
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-A6C90942Since: DOM Level 2',
1913 1913
   ),
1914 1914
   'dom_element_has_attribute' => 
1915
-  array (
1915
+  array(
1916 1916
     'return' => 'boolean',
1917 1917
     'params' => 'string name',
1918 1918
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElHasAttrSince: DOM Level 2',
1919 1919
   ),
1920 1920
   'dom_element_has_attribute_ns' => 
1921
-  array (
1921
+  array(
1922 1922
     'return' => 'boolean',
1923 1923
     'params' => 'string namespaceURI, string localName',
1924 1924
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElHasAttrNSSince: DOM Level 2',
1925 1925
   ),
1926 1926
   'dom_element_set_id_attribute' => 
1927
-  array (
1927
+  array(
1928 1928
     'return' => 'void',
1929 1929
     'params' => 'string name, boolean isId',
1930 1930
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElSetIdAttrSince: DOM Level 3',
1931 1931
   ),
1932 1932
   'dom_element_set_id_attribute_ns' => 
1933
-  array (
1933
+  array(
1934 1934
     'return' => 'void',
1935 1935
     'params' => 'string namespaceURI, string localName, boolean isId',
1936 1936
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElSetIdAttrNSSince: DOM Level 3',
1937 1937
   ),
1938 1938
   'dom_element_set_id_attribute_node' => 
1939
-  array (
1939
+  array(
1940 1940
     'return' => 'void',
1941 1941
     'params' => 'attr idAttr, boolean isId',
1942 1942
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-ElSetIdAttrNodeSince: DOM Level 3',
1943 1943
   ),
1944 1944
   'dom_userdatahandler_handle' => 
1945
-  array (
1945
+  array(
1946 1946
     'return' => 'dom_void',
1947 1947
     'params' => 'short operation, string key, domobject data, node src, node dst',
1948 1948
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-handleUserDataEventSince:',
1949 1949
   ),
1950 1950
   'dom_characterdata_substring_data' => 
1951
-  array (
1951
+  array(
1952 1952
     'return' => 'string',
1953 1953
     'params' => 'int offset, int count',
1954 1954
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-6531BCCFSince:',
1955 1955
   ),
1956 1956
   'dom_characterdata_append_data' => 
1957
-  array (
1957
+  array(
1958 1958
     'return' => 'void',
1959 1959
     'params' => 'string arg',
1960 1960
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-32791A2FSince:',
1961 1961
   ),
1962 1962
   'dom_characterdata_insert_data' => 
1963
-  array (
1963
+  array(
1964 1964
     'return' => 'void',
1965 1965
     'params' => 'int offset, string arg',
1966 1966
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-3EDB695FSince:',
1967 1967
   ),
1968 1968
   'dom_characterdata_delete_data' => 
1969
-  array (
1969
+  array(
1970 1970
     'return' => 'void',
1971 1971
     'params' => 'int offset, int count',
1972 1972
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-7C603781Since:',
1973 1973
   ),
1974 1974
   'dom_characterdata_replace_data' => 
1975
-  array (
1975
+  array(
1976 1976
     'return' => 'void',
1977 1977
     'params' => 'int offset, int count, string arg',
1978 1978
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-E5CBA7FBSince:',
1979 1979
   ),
1980 1980
   'dom_domimplementationsource_get_domimplementation' => 
1981
-  array (
1981
+  array(
1982 1982
     'return' => 'domdomimplementation',
1983 1983
     'params' => 'string features',
1984 1984
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-getDOMImplSince:',
1985 1985
   ),
1986 1986
   'dom_domimplementationsource_get_domimplementations' => 
1987
-  array (
1987
+  array(
1988 1988
     'return' => 'domimplementationlist',
1989 1989
     'params' => 'string features',
1990 1990
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-getDOMImplsSince:',
1991 1991
   ),
1992 1992
   'dom_node_insert_before' => 
1993
-  array (
1993
+  array(
1994 1994
     'return' => 'domnode',
1995 1995
     'params' => 'DomNode newChild, DomNode refChild',
1996 1996
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-952280727Since:',
1997 1997
   ),
1998 1998
   'dom_node_replace_child' => 
1999
-  array (
1999
+  array(
2000 2000
     'return' => 'DomNode',
2001 2001
     'params' => 'DomNode newChild, DomNode oldChild',
2002 2002
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-785887307Since:',
2003 2003
   ),
2004 2004
   'dom_node_remove_child' => 
2005
-  array (
2005
+  array(
2006 2006
     'return' => 'DomNode',
2007 2007
     'params' => 'DomNode oldChild',
2008 2008
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1734834066Since:',
2009 2009
   ),
2010 2010
   'dom_node_append_child' => 
2011
-  array (
2011
+  array(
2012 2012
     'return' => 'DomNode',
2013 2013
     'params' => 'DomNode newChild',
2014 2014
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-184E7107Since:',
2015 2015
   ),
2016 2016
   'dom_node_has_child_nodes' => 
2017
-  array (
2017
+  array(
2018 2018
     'return' => 'boolean',
2019 2019
     'params' => '',
2020 2020
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-810594187Since:',
2021 2021
   ),
2022 2022
   'dom_node_clone_node' => 
2023
-  array (
2023
+  array(
2024 2024
     'return' => 'DomNode',
2025 2025
     'params' => 'boolean deep',
2026 2026
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-3A0ED0A4Since:',
2027 2027
   ),
2028 2028
   'dom_node_normalize' => 
2029
-  array (
2029
+  array(
2030 2030
     'return' => 'void',
2031 2031
     'params' => '',
2032 2032
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-normalizeSince:',
2033 2033
   ),
2034 2034
   'dom_node_is_supported' => 
2035
-  array (
2035
+  array(
2036 2036
     'return' => 'boolean',
2037 2037
     'params' => 'string feature, string version',
2038 2038
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-Level-2-Core-Node-supportsSince: DOM Level 2',
2039 2039
   ),
2040 2040
   'dom_node_has_attributes' => 
2041
-  array (
2041
+  array(
2042 2042
     'return' => 'boolean',
2043 2043
     'params' => '',
2044 2044
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-NodeHasAttrsSince: DOM Level 2',
2045 2045
   ),
2046 2046
   'dom_node_compare_document_position' => 
2047
-  array (
2047
+  array(
2048 2048
     'return' => 'short',
2049 2049
     'params' => 'DomNode other',
2050 2050
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-compareDocumentPositionSince: DOM Level 3',
2051 2051
   ),
2052 2052
   'dom_node_is_same_node' => 
2053
-  array (
2053
+  array(
2054 2054
     'return' => 'boolean',
2055 2055
     'params' => 'DomNode other',
2056 2056
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-isSameNodeSince: DOM Level 3',
2057 2057
   ),
2058 2058
   'dom_node_lookup_prefix' => 
2059
-  array (
2059
+  array(
2060 2060
     'return' => 'string',
2061 2061
     'params' => 'string namespaceURI',
2062 2062
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-lookupNamespacePrefixSince: DOM Level 3',
2063 2063
   ),
2064 2064
   'dom_node_is_default_namespace' => 
2065
-  array (
2065
+  array(
2066 2066
     'return' => 'boolean',
2067 2067
     'params' => 'string namespaceURI',
2068 2068
     'description' => 'URL: http://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-isDefaultNamespaceSince: DOM Level 3',
2069 2069
   ),
2070 2070
   'dom_node_lookup_namespace_uri' => 
2071
-  array (
2071
+  array(
2072 2072
     'return' => 'string',
2073 2073
     'params' => 'string prefix',
2074 2074
     'description' => 'URL: http://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-lookupNamespaceURISince: DOM Level 3',
2075 2075
   ),
2076 2076
   'dom_node_is_equal_node' => 
2077
-  array (
2077
+  array(
2078 2078
     'return' => 'boolean',
2079 2079
     'params' => 'DomNode arg',
2080 2080
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-isEqualNodeSince: DOM Level 3',
2081 2081
   ),
2082 2082
   'dom_node_get_feature' => 
2083
-  array (
2083
+  array(
2084 2084
     'return' => 'DomNode',
2085 2085
     'params' => 'string feature, string version',
2086 2086
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-getFeatureSince: DOM Level 3',
2087 2087
   ),
2088 2088
   'dom_node_set_user_data' => 
2089
-  array (
2089
+  array(
2090 2090
     'return' => 'DomUserData',
2091 2091
     'params' => 'string key, DomUserData data, userdatahandler handler',
2092 2092
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-setUserDataSince: DOM Level 3',
2093 2093
   ),
2094 2094
   'dom_node_get_user_data' => 
2095
-  array (
2095
+  array(
2096 2096
     'return' => 'DomUserData',
2097 2097
     'params' => 'string key',
2098 2098
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-getUserDataSince: DOM Level 3',
2099 2099
   ),
2100 2100
   'dom_domconfiguration_set_parameter' => 
2101
-  array (
2101
+  array(
2102 2102
     'return' => 'dom_void',
2103 2103
     'params' => 'string name, domuserdata value',
2104 2104
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMConfiguration-propertySince:',
2105 2105
   ),
2106 2106
   'dom_domconfiguration_get_parameter' => 
2107
-  array (
2107
+  array(
2108 2108
     'return' => 'domdomuserdata',
2109 2109
     'params' => 'string name',
2110 2110
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMConfiguration-getParameterSince:',
2111 2111
   ),
2112 2112
   'dom_domconfiguration_can_set_parameter' => 
2113
-  array (
2113
+  array(
2114 2114
     'return' => 'boolean',
2115 2115
     'params' => 'string name, domuserdata value',
2116 2116
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMConfiguration-canSetParameterSince:',
2117 2117
   ),
2118 2118
   'dom_namednodemap_get_named_item' => 
2119
-  array (
2119
+  array(
2120 2120
     'return' => 'DOMNode',
2121 2121
     'params' => 'string name',
2122 2122
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1074577549Since:',
2123 2123
   ),
2124 2124
   'dom_namednodemap_set_named_item' => 
2125
-  array (
2125
+  array(
2126 2126
     'return' => 'DOMNode',
2127 2127
     'params' => 'DOMNode arg',
2128 2128
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1025163788Since:',
2129 2129
   ),
2130 2130
   'dom_namednodemap_remove_named_item' => 
2131
-  array (
2131
+  array(
2132 2132
     'return' => 'DOMNode',
2133 2133
     'params' => 'string name',
2134 2134
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-D58B193Since:',
2135 2135
   ),
2136 2136
   'dom_namednodemap_item' => 
2137
-  array (
2137
+  array(
2138 2138
     'return' => 'DOMNode',
2139 2139
     'params' => 'int index',
2140 2140
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-349467F9Since:',
2141 2141
   ),
2142 2142
   'dom_namednodemap_get_named_item_ns' => 
2143
-  array (
2143
+  array(
2144 2144
     'return' => 'DOMNode',
2145 2145
     'params' => 'string namespaceURI, string localName',
2146 2146
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-getNamedItemNSSince: DOM Level 2',
2147 2147
   ),
2148 2148
   'dom_namednodemap_set_named_item_ns' => 
2149
-  array (
2149
+  array(
2150 2150
     'return' => 'DOMNode',
2151 2151
     'params' => 'DOMNode arg',
2152 2152
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-setNamedItemNSSince: DOM Level 2',
2153 2153
   ),
2154 2154
   'dom_namednodemap_remove_named_item_ns' => 
2155
-  array (
2155
+  array(
2156 2156
     'return' => 'DOMNode',
2157 2157
     'params' => 'string namespaceURI, string localName',
2158 2158
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-removeNamedItemNSSince: DOM Level 2',
2159 2159
   ),
2160 2160
   'dom_attr_is_id' => 
2161
-  array (
2161
+  array(
2162 2162
     'return' => 'boolean',
2163 2163
     'params' => '',
2164 2164
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Attr-isIdSince: DOM Level 3',
2165 2165
   ),
2166 2166
   'dom_domimplementationlist_item' => 
2167
-  array (
2167
+  array(
2168 2168
     'return' => 'domdomimplementation',
2169 2169
     'params' => 'int index',
2170 2170
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMImplementationList-itemSince:',
2171 2171
   ),
2172 2172
   'dom_nodelist_item' => 
2173
-  array (
2173
+  array(
2174 2174
     'return' => 'DOMNode',
2175 2175
     'params' => 'int index',
2176 2176
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-844377136Since:',
2177 2177
   ),
2178 2178
   'PDO::pgsqlLOBCreate' => 
2179
-  array (
2179
+  array(
2180 2180
     'return' => 'string',
2181 2181
     'params' => '',
2182 2182
     'description' => 'Creates a new large object, returning its identifier.  Must be called inside a transaction.',
2183 2183
   ),
2184 2184
   'PDO::pgsqlLOBOpen' => 
2185
-  array (
2185
+  array(
2186 2186
     'return' => 'resource',
2187 2187
     'params' => 'string oid [, string mode = \'rb\']',
2188 2188
     'description' => 'Opens an existing large object stream.  Must be called inside a transaction.',
2189 2189
   ),
2190 2190
   'PDO::pgsqlLOBUnlink' => 
2191
-  array (
2191
+  array(
2192 2192
     'return' => 'bool',
2193 2193
     'params' => 'string oid',
2194 2194
     'description' => 'Deletes the large object identified by oid.  Must be called inside a transaction.',
2195 2195
   ),
2196 2196
   'xmlrpc_encode_request' => 
2197
-  array (
2197
+  array(
2198 2198
     'return' => 'string',
2199 2199
     'params' => 'string method, mixed params',
2200 2200
     'description' => 'Generates XML for a method request',
2201 2201
   ),
2202 2202
   'xmlrpc_encode' => 
2203
-  array (
2203
+  array(
2204 2204
     'return' => 'string',
2205 2205
     'params' => 'mixed value',
2206 2206
     'description' => 'Generates XML for a PHP value',
2207 2207
   ),
2208 2208
   'xmlrpc_decode_request' => 
2209
-  array (
2209
+  array(
2210 2210
     'return' => 'array',
2211 2211
     'params' => 'string xml, string& method [, string encoding]',
2212 2212
     'description' => 'Decodes XML into native PHP types',
2213 2213
   ),
2214 2214
   'xmlrpc_decode' => 
2215
-  array (
2215
+  array(
2216 2216
     'return' => 'array',
2217 2217
     'params' => 'string xml [, string encoding]',
2218 2218
     'description' => 'Decodes XML into native PHP types',
2219 2219
   ),
2220 2220
   'xmlrpc_server_create' => 
2221
-  array (
2221
+  array(
2222 2222
     'return' => 'resource',
2223 2223
     'params' => 'void',
2224 2224
     'description' => 'Creates an xmlrpc server',
2225 2225
   ),
2226 2226
   'xmlrpc_server_destroy' => 
2227
-  array (
2227
+  array(
2228 2228
     'return' => 'int',
2229 2229
     'params' => 'resource server',
2230 2230
     'description' => 'Destroys server resources',
2231 2231
   ),
2232 2232
   'xmlrpc_server_register_method' => 
2233
-  array (
2233
+  array(
2234 2234
     'return' => 'bool',
2235 2235
     'params' => 'resource server, string method_name, string function',
2236 2236
     'description' => 'Register a PHP function to handle method matching method_name',
2237 2237
   ),
2238 2238
   'xmlrpc_server_register_introspection_callback' => 
2239
-  array (
2239
+  array(
2240 2240
     'return' => 'bool',
2241 2241
     'params' => 'resource server, string function',
2242 2242
     'description' => 'Register a PHP function to generate documentation',
2243 2243
   ),
2244 2244
   'xmlrpc_server_call_method' => 
2245
-  array (
2245
+  array(
2246 2246
     'return' => 'mixed',
2247 2247
     'params' => 'resource server, string xml, mixed user_data [, array output_options]',
2248 2248
     'description' => 'Parses XML requests and call methods',
2249 2249
   ),
2250 2250
   'xmlrpc_server_add_introspection_data' => 
2251
-  array (
2251
+  array(
2252 2252
     'return' => 'int',
2253 2253
     'params' => 'resource server, array desc',
2254 2254
     'description' => 'Adds introspection documentation',
2255 2255
   ),
2256 2256
   'xmlrpc_parse_method_descriptions' => 
2257
-  array (
2257
+  array(
2258 2258
     'return' => 'array',
2259 2259
     'params' => 'string xml',
2260 2260
     'description' => 'Decodes XML into a list of method descriptions',
2261 2261
   ),
2262 2262
   'xmlrpc_set_type' => 
2263
-  array (
2263
+  array(
2264 2264
     'return' => 'bool',
2265 2265
     'params' => 'string value, string type',
2266 2266
     'description' => 'Sets xmlrpc type, base64 or datetime, for a PHP string value',
2267 2267
   ),
2268 2268
   'xmlrpc_get_type' => 
2269
-  array (
2269
+  array(
2270 2270
     'return' => 'string',
2271 2271
     'params' => 'mixed value',
2272 2272
     'description' => 'Gets xmlrpc type for a PHP value. Especially useful for base64 and datetime strings',
2273 2273
   ),
2274 2274
   'xmlrpc_is_fault' => 
2275
-  array (
2275
+  array(
2276 2276
     'return' => 'bool',
2277 2277
     'params' => 'array',
2278 2278
     'description' => 'Determines if an array value represents an XMLRPC fault.',
2279 2279
   ),
2280 2280
   'textdomain' => 
2281
-  array (
2281
+  array(
2282 2282
     'return' => 'string',
2283 2283
     'params' => 'string domain',
2284 2284
     'description' => 'Set the textdomain to "domain". Returns the current domain',
2285 2285
   ),
2286 2286
   'gettext' => 
2287
-  array (
2287
+  array(
2288 2288
     'return' => 'string',
2289 2289
     'params' => 'string msgid',
2290 2290
     'description' => 'Return the translation of msgid for the current domain, or msgid unaltered if a translation does not exist',
2291 2291
   ),
2292 2292
   'dgettext' => 
2293
-  array (
2293
+  array(
2294 2294
     'return' => 'string',
2295 2295
     'params' => 'string domain_name, string msgid',
2296 2296
     'description' => 'Return the translation of msgid for domain_name, or msgid unaltered if a translation does not exist',
2297 2297
   ),
2298 2298
   'dcgettext' => 
2299
-  array (
2299
+  array(
2300 2300
     'return' => 'string',
2301 2301
     'params' => 'string domain_name, string msgid, long category',
2302 2302
     'description' => 'Return the translation of msgid for domain_name and category, or msgid unaltered if a translation does not exist',
2303 2303
   ),
2304 2304
   'bindtextdomain' => 
2305
-  array (
2305
+  array(
2306 2306
     'return' => 'string',
2307 2307
     'params' => 'string domain_name, string dir',
2308 2308
     'description' => 'Bind to the text domain domain_name, looking for translations in dir. Returns the current domain',
2309 2309
   ),
2310 2310
   'ngettext' => 
2311
-  array (
2311
+  array(
2312 2312
     'return' => 'string',
2313 2313
     'params' => 'string MSGID1, string MSGID2, int N',
2314 2314
     'description' => 'Plural version of gettext()',
2315 2315
   ),
2316 2316
   'msg_set_queue' => 
2317
-  array (
2317
+  array(
2318 2318
     'return' => 'bool',
2319 2319
     'params' => 'resource queue, array data',
2320 2320
     'description' => 'Set information for a message queue',
2321 2321
   ),
2322 2322
   'msg_stat_queue' => 
2323
-  array (
2323
+  array(
2324 2324
     'return' => 'array',
2325 2325
     'params' => 'resource queue',
2326 2326
     'description' => 'Returns information about a message queue',
2327 2327
   ),
2328 2328
   'msg_get_queue' => 
2329
-  array (
2329
+  array(
2330 2330
     'return' => 'resource',
2331 2331
     'params' => 'int key [, int perms]',
2332 2332
     'description' => 'Attach to a message queue',
2333 2333
   ),
2334 2334
   'msg_remove_queue' => 
2335
-  array (
2335
+  array(
2336 2336
     'return' => 'bool',
2337 2337
     'params' => 'resource queue',
2338 2338
     'description' => 'Destroy the queue',
2339 2339
   ),
2340 2340
   'msg_receive' => 
2341
-  array (
2341
+  array(
2342 2342
     'return' => 'mixed',
2343 2343
     'params' => 'resource queue, int desiredmsgtype, int &msgtype, int maxsize, mixed message [, bool unserialize=true [, int flags=0 [, int errorcode]]]',
2344 2344
     'description' => 'Send a message of type msgtype (must be > 0) to a message queue',
2345 2345
   ),
2346 2346
   'msg_send' => 
2347
-  array (
2347
+  array(
2348 2348
     'return' => 'bool',
2349 2349
     'params' => 'resource queue, int msgtype, mixed message [, bool serialize=true [, bool blocking=true [, int errorcode]]]',
2350 2350
     'description' => 'Send a message of type msgtype (must be > 0) to a message queue',
2351 2351
   ),
2352 2352
   'xml_parser_create' => 
2353
-  array (
2353
+  array(
2354 2354
     'return' => 'resource',
2355 2355
     'params' => '[string encoding]',
2356 2356
     'description' => 'Create an XML parser',
2357 2357
   ),
2358 2358
   'xml_parser_create_ns' => 
2359
-  array (
2359
+  array(
2360 2360
     'return' => 'resource',
2361 2361
     'params' => '[string encoding [, string sep]]',
2362 2362
     'description' => 'Create an XML parser',
2363 2363
   ),
2364 2364
   'xml_set_object' => 
2365
-  array (
2365
+  array(
2366 2366
     'return' => 'int',
2367 2367
     'params' => 'resource parser, object &obj',
2368 2368
     'description' => 'Set up object which should be used for callbacks',
2369 2369
   ),
2370 2370
   'xml_set_element_handler' => 
2371
-  array (
2371
+  array(
2372 2372
     'return' => 'int',
2373 2373
     'params' => 'resource parser, string shdl, string ehdl',
2374 2374
     'description' => 'Set up start and end element handlers',
2375 2375
   ),
2376 2376
   'xml_set_character_data_handler' => 
2377
-  array (
2377
+  array(
2378 2378
     'return' => 'int',
2379 2379
     'params' => 'resource parser, string hdl',
2380 2380
     'description' => 'Set up character data handler',
2381 2381
   ),
2382 2382
   'xml_set_processing_instruction_handler' => 
2383
-  array (
2383
+  array(
2384 2384
     'return' => 'int',
2385 2385
     'params' => 'resource parser, string hdl',
2386 2386
     'description' => 'Set up processing instruction (PI) handler',
2387 2387
   ),
2388 2388
   'xml_set_default_handler' => 
2389
-  array (
2389
+  array(
2390 2390
     'return' => 'int',
2391 2391
     'params' => 'resource parser, string hdl',
2392 2392
     'description' => 'Set up default handler',
2393 2393
   ),
2394 2394
   'xml_set_unparsed_entity_decl_handler' => 
2395
-  array (
2395
+  array(
2396 2396
     'return' => 'int',
2397 2397
     'params' => 'resource parser, string hdl',
2398 2398
     'description' => 'Set up unparsed entity declaration handler',
2399 2399
   ),
2400 2400
   'xml_set_notation_decl_handler' => 
2401
-  array (
2401
+  array(
2402 2402
     'return' => 'int',
2403 2403
     'params' => 'resource parser, string hdl',
2404 2404
     'description' => 'Set up notation declaration handler',
2405 2405
   ),
2406 2406
   'xml_set_external_entity_ref_handler' => 
2407
-  array (
2407
+  array(
2408 2408
     'return' => 'int',
2409 2409
     'params' => 'resource parser, string hdl',
2410 2410
     'description' => 'Set up external entity reference handler',
2411 2411
   ),
2412 2412
   'xml_set_start_namespace_decl_handler' => 
2413
-  array (
2413
+  array(
2414 2414
     'return' => 'int',
2415 2415
     'params' => 'resource parser, string hdl',
2416 2416
     'description' => 'Set up character data handler',
2417 2417
   ),
2418 2418
   'xml_set_end_namespace_decl_handler' => 
2419
-  array (
2419
+  array(
2420 2420
     'return' => 'int',
2421 2421
     'params' => 'resource parser, string hdl',
2422 2422
     'description' => 'Set up character data handler',
2423 2423
   ),
2424 2424
   'xml_parse' => 
2425
-  array (
2425
+  array(
2426 2426
     'return' => 'int',
2427 2427
     'params' => 'resource parser, string data [, int isFinal]',
2428 2428
     'description' => 'Start parsing an XML document',
2429 2429
   ),
2430 2430
   'xml_parse_into_struct' => 
2431
-  array (
2431
+  array(
2432 2432
     'return' => 'int',
2433 2433
     'params' => 'resource parser, string data, array &struct, array &index',
2434 2434
     'description' => 'Parsing a XML document',
2435 2435
   ),
2436 2436
   'xml_get_error_code' => 
2437
-  array (
2437
+  array(
2438 2438
     'return' => 'int',
2439 2439
     'params' => 'resource parser',
2440 2440
     'description' => 'Get XML parser error code',
2441 2441
   ),
2442 2442
   'xml_error_string' => 
2443
-  array (
2443
+  array(
2444 2444
     'return' => 'string',
2445 2445
     'params' => 'int code',
2446 2446
     'description' => 'Get XML parser error string',
2447 2447
   ),
2448 2448
   'xml_get_current_line_number' => 
2449
-  array (
2449
+  array(
2450 2450
     'return' => 'int',
2451 2451
     'params' => 'resource parser',
2452 2452
     'description' => 'Get current line number for an XML parser',
2453 2453
   ),
2454 2454
   'xml_get_current_column_number' => 
2455
-  array (
2455
+  array(
2456 2456
     'return' => 'int',
2457 2457
     'params' => 'resource parser',
2458 2458
     'description' => 'Get current column number for an XML parser',
2459 2459
   ),
2460 2460
   'xml_get_current_byte_index' => 
2461
-  array (
2461
+  array(
2462 2462
     'return' => 'int',
2463 2463
     'params' => 'resource parser',
2464 2464
     'description' => 'Get current byte index for an XML parser',
2465 2465
   ),
2466 2466
   'xml_parser_free' => 
2467
-  array (
2467
+  array(
2468 2468
     'return' => 'int',
2469 2469
     'params' => 'resource parser',
2470 2470
     'description' => 'Free an XML parser',
2471 2471
   ),
2472 2472
   'xml_parser_set_option' => 
2473
-  array (
2473
+  array(
2474 2474
     'return' => 'int',
2475 2475
     'params' => 'resource parser, int option, mixed value',
2476 2476
     'description' => 'Set options in an XML parser',
2477 2477
   ),
2478 2478
   'xml_parser_get_option' => 
2479
-  array (
2479
+  array(
2480 2480
     'return' => 'int',
2481 2481
     'params' => 'resource parser, int option',
2482 2482
     'description' => 'Get options from an XML parser',
2483 2483
   ),
2484 2484
   'utf8_encode' => 
2485
-  array (
2485
+  array(
2486 2486
     'return' => 'string',
2487 2487
     'params' => 'string data',
2488 2488
     'description' => 'Encodes an ISO-8859-1 string to UTF-8',
2489 2489
   ),
2490 2490
   'utf8_decode' => 
2491
-  array (
2491
+  array(
2492 2492
     'return' => 'string',
2493 2493
     'params' => 'string data',
2494 2494
     'description' => 'Converts a UTF-8 encoded string to ISO-8859-1',
2495 2495
   ),
2496 2496
   'shm_attach' => 
2497
-  array (
2497
+  array(
2498 2498
     'return' => 'int',
2499 2499
     'params' => 'int key [, int memsize [, int perm]]',
2500 2500
     'description' => 'Creates or open a shared memory segment',
2501 2501
   ),
2502 2502
   'shm_detach' => 
2503
-  array (
2503
+  array(
2504 2504
     'return' => 'bool',
2505 2505
     'params' => 'int shm_identifier',
2506 2506
     'description' => 'Disconnects from shared memory segment',
2507 2507
   ),
2508 2508
   'shm_remove' => 
2509
-  array (
2509
+  array(
2510 2510
     'return' => 'bool',
2511 2511
     'params' => 'int shm_identifier',
2512 2512
     'description' => 'Removes shared memory from Unix systems',
2513 2513
   ),
2514 2514
   'shm_put_var' => 
2515
-  array (
2515
+  array(
2516 2516
     'return' => 'bool',
2517 2517
     'params' => 'int shm_identifier, int variable_key, mixed variable',
2518 2518
     'description' => 'Inserts or updates a variable in shared memory',
2519 2519
   ),
2520 2520
   'shm_get_var' => 
2521
-  array (
2521
+  array(
2522 2522
     'return' => 'mixed',
2523 2523
     'params' => 'int id, int variable_key',
2524 2524
     'description' => 'Returns a variable from shared memory',
2525 2525
   ),
2526 2526
   'shm_remove_var' => 
2527
-  array (
2527
+  array(
2528 2528
     'return' => 'bool',
2529 2529
     'params' => 'int id, int variable_key',
2530 2530
     'description' => 'Removes variable from shared memory',
2531 2531
   ),
2532 2532
   'socket_select' => 
2533
-  array (
2533
+  array(
2534 2534
     'return' => 'int',
2535 2535
     'params' => 'array &read_fds, array &write_fds, &array except_fds, int tv_sec[, int tv_usec]',
2536 2536
     'description' => 'Runs the select() system call on the sets mentioned with a timeout specified by tv_sec and tv_usec',
2537 2537
   ),
2538 2538
   'socket_create_listen' => 
2539
-  array (
2539
+  array(
2540 2540
     'return' => 'resource',
2541 2541
     'params' => 'int port[, int backlog]',
2542 2542
     'description' => 'Opens a socket on port to accept connections',
2543 2543
   ),
2544 2544
   'socket_accept' => 
2545
-  array (
2545
+  array(
2546 2546
     'return' => 'resource',
2547 2547
     'params' => 'resource socket',
2548 2548
     'description' => 'Accepts a connection on the listening socket fd',
2549 2549
   ),
2550 2550
   'socket_set_nonblock' => 
2551
-  array (
2551
+  array(
2552 2552
     'return' => 'bool',
2553 2553
     'params' => 'resource socket',
2554 2554
     'description' => 'Sets nonblocking mode on a socket resource',
2555 2555
   ),
2556 2556
   'socket_set_block' => 
2557
-  array (
2557
+  array(
2558 2558
     'return' => 'bool',
2559 2559
     'params' => 'resource socket',
2560 2560
     'description' => 'Sets blocking mode on a socket resource',
2561 2561
   ),
2562 2562
   'socket_listen' => 
2563
-  array (
2563
+  array(
2564 2564
     'return' => 'bool',
2565 2565
     'params' => 'resource socket[, int backlog]',
2566 2566
     'description' => 'Sets the maximum number of connections allowed to be waited for on the socket specified by fd',
2567 2567
   ),
2568 2568
   'socket_close' => 
2569
-  array (
2569
+  array(
2570 2570
     'return' => 'void',
2571 2571
     'params' => 'resource socket',
2572 2572
     'description' => 'Closes a file descriptor',
2573 2573
   ),
2574 2574
   'socket_write' => 
2575
-  array (
2575
+  array(
2576 2576
     'return' => 'int',
2577 2577
     'params' => 'resource socket, string buf[, int length]',
2578 2578
     'description' => 'Writes the buffer to the socket resource, length is optional',
2579 2579
   ),
2580 2580
   'socket_read' => 
2581
-  array (
2581
+  array(
2582 2582
     'return' => 'string',
2583 2583
     'params' => 'resource socket, int length [, int type]',
2584 2584
     'description' => 'Reads a maximum of length bytes from socket',
2585 2585
   ),
2586 2586
   'socket_getsockname' => 
2587
-  array (
2587
+  array(
2588 2588
     'return' => 'bool',
2589 2589
     'params' => 'resource socket, string &addr[, int &port]',
2590 2590
     'description' => 'Queries the remote side of the given socket which may either result in host/port or in a UNIX filesystem path, dependent on its type.',
2591 2591
   ),
2592 2592
   'socket_getpeername' => 
2593
-  array (
2593
+  array(
2594 2594
     'return' => 'bool',
2595 2595
     'params' => 'resource socket, string &addr[, int &port]',
2596 2596
     'description' => 'Queries the remote side of the given socket which may either result in host/port or in a UNIX filesystem path, dependent on its type.',
2597 2597
   ),
2598 2598
   'socket_create' => 
2599
-  array (
2599
+  array(
2600 2600
     'return' => 'resource',
2601 2601
     'params' => 'int domain, int type, int protocol',
2602 2602
     'description' => 'Creates an endpoint for communication in the domain specified by domain, of type specified by type',
2603 2603
   ),
2604 2604
   'socket_connect' => 
2605
-  array (
2605
+  array(
2606 2606
     'return' => 'bool',
2607 2607
     'params' => 'resource socket, string addr [, int port]',
2608 2608
     'description' => 'Opens a connection to addr:port on the socket specified by socket',
2609 2609
   ),
2610 2610
   'socket_strerror' => 
2611
-  array (
2611
+  array(
2612 2612
     'return' => 'string',
2613 2613
     'params' => 'int errno',
2614 2614
     'description' => 'Returns a string describing an error',
2615 2615
   ),
2616 2616
   'socket_bind' => 
2617
-  array (
2617
+  array(
2618 2618
     'return' => 'bool',
2619 2619
     'params' => 'resource socket, string addr [, int port]',
2620 2620
     'description' => 'Binds an open socket to a listening port, port is only specified in AF_INET family.',
2621 2621
   ),
2622 2622
   'socket_recv' => 
2623
-  array (
2623
+  array(
2624 2624
     'return' => 'int',
2625 2625
     'params' => 'resource socket, string &buf, int len, int flags',
2626 2626
     'description' => 'Receives data from a connected socket',
2627 2627
   ),
2628 2628
   'socket_send' => 
2629
-  array (
2629
+  array(
2630 2630
     'return' => 'int',
2631 2631
     'params' => 'resource socket, string buf, int len, int flags',
2632 2632
     'description' => 'Sends data to a connected socket',
2633 2633
   ),
2634 2634
   'socket_recvfrom' => 
2635
-  array (
2635
+  array(
2636 2636
     'return' => 'int',
2637 2637
     'params' => 'resource socket, string &buf, int len, int flags, string &name [, int &port]',
2638 2638
     'description' => 'Receives data from a socket, connected or not',
2639 2639
   ),
2640 2640
   'socket_sendto' => 
2641
-  array (
2641
+  array(
2642 2642
     'return' => 'int',
2643 2643
     'params' => 'resource socket, string buf, int len, int flags, string addr [, int port]',
2644 2644
     'description' => 'Sends a message to a socket, whether it is connected or not',
2645 2645
   ),
2646 2646
   'socket_get_option' => 
2647
-  array (
2647
+  array(
2648 2648
     'return' => 'mixed',
2649 2649
     'params' => 'resource socket, int level, int optname',
2650 2650
     'description' => 'Gets socket options for the socket',
2651 2651
   ),
2652 2652
   'socket_set_option' => 
2653
-  array (
2653
+  array(
2654 2654
     'return' => 'bool',
2655 2655
     'params' => 'resource socket, int level, int optname, int|array optval',
2656 2656
     'description' => 'Sets socket options for the socket',
2657 2657
   ),
2658 2658
   'socket_create_pair' => 
2659
-  array (
2659
+  array(
2660 2660
     'return' => 'bool',
2661 2661
     'params' => 'int domain, int type, int protocol, array &fd',
2662 2662
     'description' => 'Creates a pair of indistinguishable sockets and stores them in fds.',
2663 2663
   ),
2664 2664
   'socket_shutdown' => 
2665
-  array (
2665
+  array(
2666 2666
     'return' => 'bool',
2667 2667
     'params' => 'resource socket[, int how]',
2668 2668
     'description' => 'Shuts down a socket for receiving, sending, or both.',
2669 2669
   ),
2670 2670
   'socket_last_error' => 
2671
-  array (
2671
+  array(
2672 2672
     'return' => 'int',
2673 2673
     'params' => '[resource socket]',
2674 2674
     'description' => 'Returns the last socket error (either the last used or the provided socket resource)',
2675 2675
   ),
2676 2676
   'socket_clear_error' => 
2677
-  array (
2677
+  array(
2678 2678
     'return' => 'void',
2679 2679
     'params' => '[resource socket]',
2680 2680
     'description' => 'Clears the error on the socket or the last error code.',
2681 2681
   ),
2682 2682
   'sybase_connect' => 
2683
-  array (
2683
+  array(
2684 2684
     'return' => 'int',
2685 2685
     'params' => '[string host [, string user [, string password [, string charset [, string appname]]]]]',
2686 2686
     'description' => 'Open Sybase server connection',
2687 2687
   ),
2688 2688
   'sybase_pconnect' => 
2689
-  array (
2689
+  array(
2690 2690
     'return' => 'int',
2691 2691
     'params' => '[string host [, string user [, string password [, string charset [, string appname]]]]]',
2692 2692
     'description' => 'Open persistent Sybase connection',
2693 2693
   ),
2694 2694
   'sybase_close' => 
2695
-  array (
2695
+  array(
2696 2696
     'return' => 'bool',
2697 2697
     'params' => '[int link_id]',
2698 2698
     'description' => 'Close Sybase connection',
2699 2699
   ),
2700 2700
   'sybase_select_db' => 
2701
-  array (
2701
+  array(
2702 2702
     'return' => 'bool',
2703 2703
     'params' => 'string database [, int link_id]',
2704 2704
     'description' => 'Select Sybase database',
2705 2705
   ),
2706 2706
   'sybase_query' => 
2707
-  array (
2707
+  array(
2708 2708
     'return' => 'int',
2709 2709
     'params' => 'string query [, int link_id]',
2710 2710
     'description' => 'Send Sybase query',
2711 2711
   ),
2712 2712
   'sybase_free_result' => 
2713
-  array (
2713
+  array(
2714 2714
     'return' => 'bool',
2715 2715
     'params' => 'int result',
2716 2716
     'description' => 'Free result memory',
2717 2717
   ),
2718 2718
   'sybase_get_last_message' => 
2719
-  array (
2719
+  array(
2720 2720
     'return' => 'string',
2721 2721
     'params' => 'void',
2722 2722
     'description' => 'Returns the last message from server (over min_message_severity)',
2723 2723
   ),
2724 2724
   'sybase_num_rows' => 
2725
-  array (
2725
+  array(
2726 2726
     'return' => 'int',
2727 2727
     'params' => 'int result',
2728 2728
     'description' => 'Get number of rows in result',
2729 2729
   ),
2730 2730
   'sybase_num_fields' => 
2731
-  array (
2731
+  array(
2732 2732
     'return' => 'int',
2733 2733
     'params' => 'int result',
2734 2734
     'description' => 'Get number of fields in result',
2735 2735
   ),
2736 2736
   'sybase_fetch_row' => 
2737
-  array (
2737
+  array(
2738 2738
     'return' => 'array',
2739 2739
     'params' => 'int result',
2740 2740
     'description' => 'Get row as enumerated array',
2741 2741
   ),
2742 2742
   'sybase_fetch_object' => 
2743
-  array (
2743
+  array(
2744 2744
     'return' => 'object',
2745 2745
     'params' => 'int result [, mixed object]',
2746 2746
     'description' => 'Fetch row as object',
2747 2747
   ),
2748 2748
   'sybase_fetch_array' => 
2749
-  array (
2749
+  array(
2750 2750
     'return' => 'array',
2751 2751
     'params' => 'int result',
2752 2752
     'description' => 'Fetch row as array',
2753 2753
   ),
2754 2754
   'sybase_data_seek' => 
2755
-  array (
2755
+  array(
2756 2756
     'return' => 'bool',
2757 2757
     'params' => 'int result, int offset',
2758 2758
     'description' => 'Move internal row pointer',
2759 2759
   ),
2760 2760
   'sybase_fetch_field' => 
2761
-  array (
2761
+  array(
2762 2762
     'return' => 'object',
2763 2763
     'params' => 'int result [, int offset]',
2764 2764
     'description' => 'Get field information',
2765 2765
   ),
2766 2766
   'sybase_field_seek' => 
2767
-  array (
2767
+  array(
2768 2768
     'return' => 'bool',
2769 2769
     'params' => 'int result, int offset',
2770 2770
     'description' => 'Set field offset',
2771 2771
   ),
2772 2772
   'sybase_result' => 
2773
-  array (
2773
+  array(
2774 2774
     'return' => 'string',
2775 2775
     'params' => 'int result, int row, mixed field',
2776 2776
     'description' => 'Get result data',
2777 2777
   ),
2778 2778
   'sybase_affected_rows' => 
2779
-  array (
2779
+  array(
2780 2780
     'return' => 'int',
2781 2781
     'params' => '[int link_id]',
2782 2782
     'description' => 'Get number of affected rows in last query',
2783 2783
   ),
2784 2784
   'sybase_min_error_severity' => 
2785
-  array (
2785
+  array(
2786 2786
     'return' => 'void',
2787 2787
     'params' => 'int severity',
2788 2788
     'description' => 'Sets the minimum error severity',
2789 2789
   ),
2790 2790
   'sybase_min_message_severity' => 
2791
-  array (
2791
+  array(
2792 2792
     'return' => 'void',
2793 2793
     'params' => 'int severity',
2794 2794
     'description' => 'Sets the minimum message severity',
2795 2795
   ),
2796 2796
   'confirm_extname_compiled' => 
2797
-  array (
2797
+  array(
2798 2798
     'return' => 'string',
2799 2799
     'params' => 'string arg',
2800 2800
     'description' => 'Return a string to confirm that the module is compiled in',
2801 2801
   ),
2802 2802
   'fdf_open' => 
2803
-  array (
2803
+  array(
2804 2804
     'return' => 'resource',
2805 2805
     'params' => 'string filename',
2806 2806
     'description' => 'Opens a new FDF document',
2807 2807
   ),
2808 2808
   'fdf_open_string' => 
2809
-  array (
2809
+  array(
2810 2810
     'return' => 'resource',
2811 2811
     'params' => 'string fdf_data',
2812 2812
     'description' => 'Opens a new FDF document from string',
2813 2813
   ),
2814 2814
   'fdf_create' => 
2815
-  array (
2815
+  array(
2816 2816
     'return' => 'resource',
2817 2817
     'params' => 'void',
2818 2818
     'description' => 'Creates a new FDF document',
2819 2819
   ),
2820 2820
   'fdf_close' => 
2821
-  array (
2821
+  array(
2822 2822
     'return' => 'void',
2823 2823
     'params' => 'resource fdfdoc',
2824 2824
     'description' => 'Closes the FDF document',
2825 2825
   ),
2826 2826
   'fdf_get_value' => 
2827
-  array (
2827
+  array(
2828 2828
     'return' => 'string',
2829 2829
     'params' => 'resource fdfdoc, string fieldname [, int which]',
2830 2830
     'description' => 'Gets the value of a field as string',
2831 2831
   ),
2832 2832
   'fdf_set_value' => 
2833
-  array (
2833
+  array(
2834 2834
     'return' => 'bool',
2835 2835
     'params' => 'resource fdfdoc, string fieldname, mixed value [, int isname]',
2836 2836
     'description' => 'Sets the value of a field',
2837 2837
   ),
2838 2838
   'fdf_next_field_name' => 
2839
-  array (
2839
+  array(
2840 2840
     'return' => 'string',
2841 2841
     'params' => 'resource fdfdoc [, string fieldname]',
2842 2842
     'description' => 'Gets the name of the next field name or the first field name',
2843 2843
   ),
2844 2844
   'fdf_set_ap' => 
2845
-  array (
2845
+  array(
2846 2846
     'return' => 'bool',
2847 2847
     'params' => 'resource fdfdoc, string fieldname, int face, string filename, int pagenr',
2848 2848
     'description' => 'Sets the appearence of a field',
2849 2849
   ),
2850 2850
   'fdf_get_ap' => 
2851
-  array (
2851
+  array(
2852 2852
     'return' => 'bool',
2853 2853
     'params' => 'resource fdfdoc, string fieldname, int face, string filename',
2854 2854
     'description' => 'Gets the appearance of a field and creates a PDF document out of it.',
2855 2855
   ),
2856 2856
   'fdf_get_encoding' => 
2857
-  array (
2857
+  array(
2858 2858
     'return' => 'string',
2859 2859
     'params' => 'resource fdf',
2860 2860
     'description' => 'Gets FDF file encoding scheme',
2861 2861
   ),
2862 2862
   'fdf_set_status' => 
2863
-  array (
2863
+  array(
2864 2864
     'return' => 'bool',
2865 2865
     'params' => 'resource fdfdoc, string status',
2866 2866
     'description' => 'Sets the value of /Status key',
2867 2867
   ),
2868 2868
   'fdf_get_status' => 
2869
-  array (
2869
+  array(
2870 2870
     'return' => 'string',
2871 2871
     'params' => 'resource fdfdoc',
2872 2872
     'description' => 'Gets the value of /Status key',
2873 2873
   ),
2874 2874
   'fdf_set_file' => 
2875
-  array (
2875
+  array(
2876 2876
     'return' => 'bool',
2877 2877
     'params' => 'resource fdfdoc, string filename [, string target_frame]',
2878 2878
     'description' => 'Sets the value of /F key',
2879 2879
   ),
2880 2880
   'fdf_get_file' => 
2881
-  array (
2881
+  array(
2882 2882
     'return' => 'string',
2883 2883
     'params' => 'resource fdfdoc',
2884 2884
     'description' => 'Gets the value of /F key',
2885 2885
   ),
2886 2886
   'fdf_save' => 
2887
-  array (
2887
+  array(
2888 2888
     'return' => 'bool',
2889 2889
     'params' => 'resource fdfdoc [, string filename]',
2890 2890
     'description' => 'Writes out the FDF file',
2891 2891
   ),
2892 2892
   'fdf_save_string' => 
2893
-  array (
2893
+  array(
2894 2894
     'return' => 'string',
2895 2895
     'params' => 'resource fdfdoc',
2896 2896
     'description' => 'Returns the FDF file as a string',
2897 2897
   ),
2898 2898
   'fdf_add_template' => 
2899
-  array (
2899
+  array(
2900 2900
     'return' => 'bool',
2901 2901
     'params' => 'resource fdfdoc, int newpage, string filename, string template, int rename',
2902 2902
     'description' => 'Adds a template into the FDF document',
2903 2903
   ),
2904 2904
   'fdf_set_flags' => 
2905
-  array (
2905
+  array(
2906 2906
     'return' => 'bool',
2907 2907
     'params' => 'resource fdfdoc, string fieldname, int whichflags, int newflags',
2908 2908
     'description' => 'Sets flags for a field in the FDF document',
2909 2909
   ),
2910 2910
   'fdf_get_flags' => 
2911
-  array (
2911
+  array(
2912 2912
     'return' => 'int',
2913 2913
     'params' => 'resorce fdfdoc, string fieldname, int whichflags',
2914 2914
     'description' => 'Gets the flags of a field',
2915 2915
   ),
2916 2916
   'fdf_set_opt' => 
2917
-  array (
2917
+  array(
2918 2918
     'return' => 'bool',
2919 2919
     'params' => 'resource fdfdoc, string fieldname, int element, string value, string name',
2920 2920
     'description' => 'Sets a value in the opt array for a field',
2921 2921
   ),
2922 2922
   'fdf_get_opt' => 
2923
-  array (
2923
+  array(
2924 2924
     'return' => 'mixed',
2925 2925
     'params' => 'resource fdfdof, string fieldname [, int element]',
2926 2926
     'description' => 'Gets a value from the opt array of a field',
2927 2927
   ),
2928 2928
   'fdf_set_submit_form_action' => 
2929
-  array (
2929
+  array(
2930 2930
     'return' => 'bool',
2931 2931
     'params' => 'resource fdfdoc, string fieldname, int whichtrigger, string url, int flags',
2932 2932
     'description' => 'Sets the submit form action for a field',
2933 2933
   ),
2934 2934
   'fdf_set_javascript_action' => 
2935
-  array (
2935
+  array(
2936 2936
     'return' => 'bool',
2937 2937
     'params' => 'resource fdfdoc, string fieldname, int whichtrigger, string script',
2938 2938
     'description' => 'Sets the javascript action for a field',
2939 2939
   ),
2940 2940
   'fdf_set_encoding' => 
2941
-  array (
2941
+  array(
2942 2942
     'return' => 'bool',
2943 2943
     'params' => 'resource fdf_document, string encoding',
2944 2944
     'description' => 'Sets FDF encoding (either "Shift-JIS" or "Unicode")',
2945 2945
   ),
2946 2946
   'fdf_errno' => 
2947
-  array (
2947
+  array(
2948 2948
     'return' => 'int',
2949 2949
     'params' => 'void',
2950 2950
     'description' => 'Gets error code for last operation',
2951 2951
   ),
2952 2952
   'fdf_error' => 
2953
-  array (
2953
+  array(
2954 2954
     'return' => 'string',
2955 2955
     'params' => '[int errno]',
2956 2956
     'description' => 'Gets error description for error code',
2957 2957
   ),
2958 2958
   'fdf_get_version' => 
2959
-  array (
2959
+  array(
2960 2960
     'return' => 'string',
2961 2961
     'params' => '[resource fdfdoc]',
2962 2962
     'description' => 'Gets version number for FDF api or file',
2963 2963
   ),
2964 2964
   'fdf_set_version' => 
2965
-  array (
2965
+  array(
2966 2966
     'return' => 'bool',
2967 2967
     'params' => 'resourece fdfdoc, string version',
2968 2968
     'description' => 'Sets FDF version for a file',
2969 2969
   ),
2970 2970
   'fdf_add_doc_javascript' => 
2971
-  array (
2971
+  array(
2972 2972
     'return' => 'bool',
2973 2973
     'params' => 'resource fdfdoc, string scriptname, string script',
2974 2974
     'description' => 'Add javascript code to the fdf file',
2975 2975
   ),
2976 2976
   'fdf_set_on_import_javascript' => 
2977
-  array (
2977
+  array(
2978 2978
     'return' => 'bool',
2979 2979
     'params' => 'resource fdfdoc, string script [, bool before_data_import]',
2980 2980
     'description' => 'Adds javascript code to be executed when Acrobat opens the FDF',
2981 2981
   ),
2982 2982
   'fdf_set_target_frame' => 
2983
-  array (
2983
+  array(
2984 2984
     'return' => 'bool',
2985 2985
     'params' => 'resource fdfdoc, string target',
2986 2986
     'description' => 'Sets target frame for form',
2987 2987
   ),
2988 2988
   'fdf_remove_item' => 
2989
-  array (
2989
+  array(
2990 2990
     'return' => 'bool',
2991 2991
     'params' => 'resource fdfdoc, string fieldname, int item',
2992 2992
     'description' => 'Sets target frame for form',
2993 2993
   ),
2994 2994
   'fdf_get_attachment' => 
2995
-  array (
2995
+  array(
2996 2996
     'return' => 'array',
2997 2997
     'params' => 'resource fdfdoc, string fieldname, string savepath',
2998 2998
     'description' => 'Get attached uploaded file',
2999 2999
   ),
3000 3000
   'fdf_enum_values' => 
3001
-  array (
3001
+  array(
3002 3002
     'return' => 'bool',
3003 3003
     'params' => 'resource fdfdoc, callback function [, mixed userdata]',
3004 3004
     'description' => 'Call a user defined function for each document value',
3005 3005
   ),
3006 3006
   'fdf_header' => 
3007
-  array (
3007
+  array(
3008 3008
     'return' => 'void',
3009 3009
     'params' => 'void',
3010 3010
     'description' => 'Set FDF specific HTTP headers',
3011 3011
   ),
3012 3012
   'variant_set' => 
3013
-  array (
3013
+  array(
3014 3014
     'return' => 'void',
3015 3015
     'params' => 'object variant, mixed value',
3016 3016
     'description' => 'Assigns a new value for a variant object',
3017 3017
   ),
3018 3018
   'variant_add' => 
3019
-  array (
3019
+  array(
3020 3020
     'return' => 'mixed',
3021 3021
     'params' => 'mixed left, mixed right',
3022 3022
     'description' => '"Adds" two variant values together and returns the result',
3023 3023
   ),
3024 3024
   'variant_cat' => 
3025
-  array (
3025
+  array(
3026 3026
     'return' => 'mixed',
3027 3027
     'params' => 'mixed left, mixed right',
3028 3028
     'description' => 'concatenates two variant values together and returns the result',
3029 3029
   ),
3030 3030
   'variant_sub' => 
3031
-  array (
3031
+  array(
3032 3032
     'return' => 'mixed',
3033 3033
     'params' => 'mixed left, mixed right',
3034 3034
     'description' => 'subtracts the value of the right variant from the left variant value and returns the result',
3035 3035
   ),
3036 3036
   'variant_mul' => 
3037
-  array (
3037
+  array(
3038 3038
     'return' => 'mixed',
3039 3039
     'params' => 'mixed left, mixed right',
3040 3040
     'description' => 'multiplies the values of the two variants and returns the result',
3041 3041
   ),
3042 3042
   'variant_and' => 
3043
-  array (
3043
+  array(
3044 3044
     'return' => 'mixed',
3045 3045
     'params' => 'mixed left, mixed right',
3046 3046
     'description' => 'performs a bitwise AND operation between two variants and returns the result',
3047 3047
   ),
3048 3048
   'variant_div' => 
3049
-  array (
3049
+  array(
3050 3050
     'return' => 'mixed',
3051 3051
     'params' => 'mixed left, mixed right',
3052 3052
     'description' => 'Returns the result from dividing two variants',
3053 3053
   ),
3054 3054
   'variant_eqv' => 
3055
-  array (
3055
+  array(
3056 3056
     'return' => 'mixed',
3057 3057
     'params' => 'mixed left, mixed right',
3058 3058
     'description' => 'Performs a bitwise equivalence on two variants',
3059 3059
   ),
3060 3060
   'variant_idiv' => 
3061
-  array (
3061
+  array(
3062 3062
     'return' => 'mixed',
3063 3063
     'params' => 'mixed left, mixed right',
3064 3064
     'description' => 'Converts variants to integers and then returns the result from dividing them',
3065 3065
   ),
3066 3066
   'variant_imp' => 
3067
-  array (
3067
+  array(
3068 3068
     'return' => 'mixed',
3069 3069
     'params' => 'mixed left, mixed right',
3070 3070
     'description' => 'Performs a bitwise implication on two variants',
3071 3071
   ),
3072 3072
   'variant_mod' => 
3073
-  array (
3073
+  array(
3074 3074
     'return' => 'mixed',
3075 3075
     'params' => 'mixed left, mixed right',
3076 3076
     'description' => 'Divides two variants and returns only the remainder',
3077 3077
   ),
3078 3078
   'variant_or' => 
3079
-  array (
3079
+  array(
3080 3080
     'return' => 'mixed',
3081 3081
     'params' => 'mixed left, mixed right',
3082 3082
     'description' => 'Performs a logical disjunction on two variants',
3083 3083
   ),
3084 3084
   'variant_pow' => 
3085
-  array (
3085
+  array(
3086 3086
     'return' => 'mixed',
3087 3087
     'params' => 'mixed left, mixed right',
3088 3088
     'description' => 'Returns the result of performing the power function with two variants',
3089 3089
   ),
3090 3090
   'variant_xor' => 
3091
-  array (
3091
+  array(
3092 3092
     'return' => 'mixed',
3093 3093
     'params' => 'mixed left, mixed right',
3094 3094
     'description' => 'Performs a logical exclusion on two variants',
3095 3095
   ),
3096 3096
   'variant_abs' => 
3097
-  array (
3097
+  array(
3098 3098
     'return' => 'mixed',
3099 3099
     'params' => 'mixed left',
3100 3100
     'description' => 'Returns the absolute value of a variant',
3101 3101
   ),
3102 3102
   'variant_fix' => 
3103
-  array (
3103
+  array(
3104 3104
     'return' => 'mixed',
3105 3105
     'params' => 'mixed left',
3106 3106
     'description' => 'Returns the integer part ? of a variant',
3107 3107
   ),
3108 3108
   'variant_int' => 
3109
-  array (
3109
+  array(
3110 3110
     'return' => 'mixed',
3111 3111
     'params' => 'mixed left',
3112 3112
     'description' => 'Returns the integer portion of a variant',
3113 3113
   ),
3114 3114
   'variant_neg' => 
3115
-  array (
3115
+  array(
3116 3116
     'return' => 'mixed',
3117 3117
     'params' => 'mixed left',
3118 3118
     'description' => 'Performs logical negation on a variant',
3119 3119
   ),
3120 3120
   'variant_not' => 
3121
-  array (
3121
+  array(
3122 3122
     'return' => 'mixed',
3123 3123
     'params' => 'mixed left',
3124 3124
     'description' => 'Performs bitwise not negation on a variant',
3125 3125
   ),
3126 3126
   'variant_round' => 
3127
-  array (
3127
+  array(
3128 3128
     'return' => 'mixed',
3129 3129
     'params' => 'mixed left, int decimals',
3130 3130
     'description' => 'Rounds a variant to the specified number of decimal places',
3131 3131
   ),
3132 3132
   'variant_cmp' => 
3133
-  array (
3133
+  array(
3134 3134
     'return' => 'int',
3135 3135
     'params' => 'mixed left, mixed right [, int lcid [, int flags]]',
3136 3136
     'description' => 'Compares two variants',
3137 3137
   ),
3138 3138
   'variant_date_to_timestamp' => 
3139
-  array (
3139
+  array(
3140 3140
     'return' => 'int',
3141 3141
     'params' => 'object variant',
3142 3142
     'description' => 'Converts a variant date/time value to unix timestamp',
3143 3143
   ),
3144 3144
   'variant_date_from_timestamp' => 
3145
-  array (
3145
+  array(
3146 3146
     'return' => 'object',
3147 3147
     'params' => 'int timestamp',
3148 3148
     'description' => 'Returns a variant date representation of a unix timestamp',
3149 3149
   ),
3150 3150
   'variant_get_type' => 
3151
-  array (
3151
+  array(
3152 3152
     'return' => 'int',
3153 3153
     'params' => 'object variant',
3154 3154
     'description' => 'Returns the VT_XXX type code for a variant',
3155 3155
   ),
3156 3156
   'variant_set_type' => 
3157
-  array (
3157
+  array(
3158 3158
     'return' => 'void',
3159 3159
     'params' => 'object variant, int type',
3160 3160
     'description' => 'Convert a variant into another type.  Variant is modified "in-place"',
3161 3161
   ),
3162 3162
   'variant_cast' => 
3163
-  array (
3163
+  array(
3164 3164
     'return' => 'object',
3165 3165
     'params' => 'object variant, int type',
3166 3166
     'description' => 'Convert a variant into a new variant object of another type',
3167 3167
   ),
3168 3168
   'com_get_active_object' => 
3169
-  array (
3169
+  array(
3170 3170
     'return' => 'object',
3171 3171
     'params' => 'string progid [, int code_page ]',
3172 3172
     'description' => 'Returns a handle to an already running instance of a COM object',
3173 3173
   ),
3174 3174
   'com_create_guid' => 
3175
-  array (
3175
+  array(
3176 3176
     'return' => 'string',
3177 3177
     'params' => '',
3178 3178
     'description' => 'Generate a globally unique identifier (GUID)',
3179 3179
   ),
3180 3180
   'com_event_sink' => 
3181
-  array (
3181
+  array(
3182 3182
     'return' => 'bool',
3183 3183
     'params' => 'object comobject, object sinkobject [, mixed sinkinterface]',
3184 3184
     'description' => 'Connect events from a COM object to a PHP object',
3185 3185
   ),
3186 3186
   'com_print_typeinfo' => 
3187
-  array (
3187
+  array(
3188 3188
     'return' => 'bool',
3189 3189
     'params' => 'object comobject | string typelib, string dispinterface, bool wantsink',
3190 3190
     'description' => 'Print out a PHP class definition for a dispatchable interface',
3191 3191
   ),
3192 3192
   'com_message_pump' => 
3193
-  array (
3193
+  array(
3194 3194
     'return' => 'bool',
3195 3195
     'params' => '[int timeoutms]',
3196 3196
     'description' => 'Process COM messages, sleeping for up to timeoutms milliseconds',
3197 3197
   ),
3198 3198
   'com_load_typelib' => 
3199
-  array (
3199
+  array(
3200 3200
     'return' => 'bool',
3201 3201
     'params' => 'string typelib_name [, int case_insensitive]',
3202 3202
     'description' => 'Loads a Typelibrary and registers its constants',
3203 3203
   ),
3204 3204
   'COMPersistHelper::GetCurFile' => 
3205
-  array (
3205
+  array(
3206 3206
     'return' => 'string',
3207 3207
     'params' => '',
3208 3208
     'description' => 'Determines the filename into which an object will be saved, or false if none is set, via IPersistFile::GetCurFile',
3209 3209
   ),
3210 3210
   'COMPersistHelper::SaveToFile' => 
3211
-  array (
3211
+  array(
3212 3212
     'return' => 'bool',
3213 3213
     'params' => 'string filename [, bool remember]',
3214 3214
     'description' => 'Persist object data to file, via IPersistFile::Save',
3215 3215
   ),
3216 3216
   'COMPersistHelper::LoadFromFile' => 
3217
-  array (
3217
+  array(
3218 3218
     'return' => 'bool',
3219 3219
     'params' => 'string filename [, int flags]',
3220 3220
     'description' => 'Load object data from file, via IPersistFile::Load',
3221 3221
   ),
3222 3222
   'COMPersistHelper::GetMaxStreamSize' => 
3223
-  array (
3223
+  array(
3224 3224
     'return' => 'int',
3225 3225
     'params' => '',
3226 3226
     'description' => 'Gets maximum stream size required to store the object data, via IPersistStream::GetSizeMax (or IPersistStreamInit::GetSizeMax)',
3227 3227
   ),
3228 3228
   'COMPersistHelper::InitNew' => 
3229
-  array (
3229
+  array(
3230 3230
     'return' => 'int',
3231 3231
     'params' => '',
3232 3232
     'description' => 'Initializes the object to a default state, via IPersistStreamInit::InitNew',
3233 3233
   ),
3234 3234
   'COMPersistHelper::LoadFromStream' => 
3235
-  array (
3235
+  array(
3236 3236
     'return' => 'mixed',
3237 3237
     'params' => 'resource stream',
3238 3238
     'description' => 'Initializes an object from the stream where it was previously saved, via IPersistStream::Load or OleLoadFromStream',
3239 3239
   ),
3240 3240
   'COMPersistHelper::SaveToStream' => 
3241
-  array (
3241
+  array(
3242 3242
     'return' => 'int',
3243 3243
     'params' => 'resource stream',
3244 3244
     'description' => 'Saves the object to a stream, via IPersistStream::Save',
3245 3245
   ),
3246 3246
   'COMPersistHelper::__construct' => 
3247
-  array (
3247
+  array(
3248 3248
     'return' => 'int',
3249 3249
     'params' => '[object com_object]',
3250 3250
     'description' => 'Creates a persistence helper object, usually associated with a com_object',
3251 3251
   ),
3252 3252
   'pg_connect' => 
3253
-  array (
3253
+  array(
3254 3254
     'return' => 'resource',
3255 3255
     'params' => 'string connection_string[, int connect_type] | [string host, string port [, string options [, string tty,]]] string database',
3256 3256
     'description' => 'Open a PostgreSQL connection',
3257 3257
   ),
3258 3258
   'pg_pconnect' => 
3259
-  array (
3259
+  array(
3260 3260
     'return' => 'resource',
3261 3261
     'params' => 'string connection_string | [string host, string port [, string options [, string tty,]]] string database',
3262 3262
     'description' => 'Open a persistent PostgreSQL connection',
3263 3263
   ),
3264 3264
   'pg_close' => 
3265
-  array (
3265
+  array(
3266 3266
     'return' => 'bool',
3267 3267
     'params' => '[resource connection]',
3268 3268
     'description' => 'Close a PostgreSQL connection',
3269 3269
   ),
3270 3270
   'pg_dbname' => 
3271
-  array (
3271
+  array(
3272 3272
     'return' => 'string',
3273 3273
     'params' => '[resource connection]',
3274 3274
     'description' => 'Get the database name',
3275 3275
   ),
3276 3276
   'pg_last_error' => 
3277
-  array (
3277
+  array(
3278 3278
     'return' => 'string',
3279 3279
     'params' => '[resource connection]',
3280 3280
     'description' => 'Get the error message string',
3281 3281
   ),
3282 3282
   'pg_options' => 
3283
-  array (
3283
+  array(
3284 3284
     'return' => 'string',
3285 3285
     'params' => '[resource connection]',
3286 3286
     'description' => 'Get the options associated with the connection',
3287 3287
   ),
3288 3288
   'pg_port' => 
3289
-  array (
3289
+  array(
3290 3290
     'return' => 'int',
3291 3291
     'params' => '[resource connection]',
3292 3292
     'description' => 'Return the port number associated with the connection',
3293 3293
   ),
3294 3294
   'pg_tty' => 
3295
-  array (
3295
+  array(
3296 3296
     'return' => 'string',
3297 3297
     'params' => '[resource connection]',
3298 3298
     'description' => 'Return the tty name associated with the connection',
3299 3299
   ),
3300 3300
   'pg_host' => 
3301
-  array (
3301
+  array(
3302 3302
     'return' => 'string',
3303 3303
     'params' => '[resource connection]',
3304 3304
     'description' => 'Returns the host name associated with the connection',
3305 3305
   ),
3306 3306
   'pg_version' => 
3307
-  array (
3307
+  array(
3308 3308
     'return' => 'array',
3309 3309
     'params' => '[resource connection]',
3310 3310
     'description' => 'Returns an array with client, protocol and server version (when available)',
3311 3311
   ),
3312 3312
   'pg_parameter_status' => 
3313
-  array (
3313
+  array(
3314 3314
     'return' => 'string|false',
3315 3315
     'params' => '[resource connection,] string param_name',
3316 3316
     'description' => 'Returns the value of a server parameter',
3317 3317
   ),
3318 3318
   'pg_ping' => 
3319
-  array (
3319
+  array(
3320 3320
     'return' => 'bool',
3321 3321
     'params' => '[resource connection]',
3322 3322
     'description' => 'Ping database. If connection is bad, try to reconnect.',
3323 3323
   ),
3324 3324
   'pg_query' => 
3325
-  array (
3325
+  array(
3326 3326
     'return' => 'resource',
3327 3327
     'params' => '[resource connection,] string query',
3328 3328
     'description' => 'Execute a query',
3329 3329
   ),
3330 3330
   'pg_query_params' => 
3331
-  array (
3331
+  array(
3332 3332
     'return' => 'resource',
3333 3333
     'params' => '[resource connection,] string query, array params',
3334 3334
     'description' => 'Execute a query',
3335 3335
   ),
3336 3336
   'pg_prepare' => 
3337
-  array (
3337
+  array(
3338 3338
     'return' => 'resource',
3339 3339
     'params' => '[resource connection,] string stmtname, string query',
3340 3340
     'description' => 'Prepare a query for future execution',
3341 3341
   ),
3342 3342
   'pg_execute' => 
3343
-  array (
3343
+  array(
3344 3344
     'return' => 'resource',
3345 3345
     'params' => '[resource connection,] string stmtname, array params',
3346 3346
     'description' => 'Execute a prepared query',
3347 3347
   ),
3348 3348
   'pg_num_rows' => 
3349
-  array (
3349
+  array(
3350 3350
     'return' => 'int',
3351 3351
     'params' => 'resource result',
3352 3352
     'description' => 'Return the number of rows in the result',
3353 3353
   ),
3354 3354
   'pg_num_fields' => 
3355
-  array (
3355
+  array(
3356 3356
     'return' => 'int',
3357 3357
     'params' => 'resource result',
3358 3358
     'description' => 'Return the number of fields in the result',
3359 3359
   ),
3360 3360
   'pg_affected_rows' => 
3361
-  array (
3361
+  array(
3362 3362
     'return' => 'int',
3363 3363
     'params' => 'resource result',
3364 3364
     'description' => 'Returns the number of affected tuples',
3365 3365
   ),
3366 3366
   'pg_last_notice' => 
3367
-  array (
3367
+  array(
3368 3368
     'return' => 'string',
3369 3369
     'params' => 'resource connection',
3370 3370
     'description' => 'Returns the last notice set by the backend',
3371 3371
   ),
3372 3372
   'pg_field_name' => 
3373
-  array (
3373
+  array(
3374 3374
     'return' => 'string',
3375 3375
     'params' => 'resource result, int field_number',
3376 3376
     'description' => 'Returns the name of the field',
3377 3377
   ),
3378 3378
   'pg_field_size' => 
3379
-  array (
3379
+  array(
3380 3380
     'return' => 'int',
3381 3381
     'params' => 'resource result, int field_number',
3382 3382
     'description' => 'Returns the internal size of the field',
3383 3383
   ),
3384 3384
   'pg_field_type' => 
3385
-  array (
3385
+  array(
3386 3386
     'return' => 'string',
3387 3387
     'params' => 'resource result, int field_number',
3388 3388
     'description' => 'Returns the type name for the given field',
3389 3389
   ),
3390 3390
   'pg_field_type_oid' => 
3391
-  array (
3391
+  array(
3392 3392
     'return' => 'string',
3393 3393
     'params' => 'resource result, int field_number',
3394 3394
     'description' => 'Returns the type oid for the given field',
3395 3395
   ),
3396 3396
   'pg_field_num' => 
3397
-  array (
3397
+  array(
3398 3398
     'return' => 'int',
3399 3399
     'params' => 'resource result, string field_name',
3400 3400
     'description' => 'Returns the field number of the named field',
3401 3401
   ),
3402 3402
   'pg_fetch_result' => 
3403
-  array (
3403
+  array(
3404 3404
     'return' => 'mixed',
3405 3405
     'params' => 'resource result, [int row_number,] mixed field_name',
3406 3406
     'description' => 'Returns values from a result identifier',
3407 3407
   ),
3408 3408
   'pg_fetch_row' => 
3409
-  array (
3409
+  array(
3410 3410
     'return' => 'array',
3411 3411
     'params' => 'resource result [, int row [, int result_type]]',
3412 3412
     'description' => 'Get a row as an enumerated array',
3413 3413
   ),
3414 3414
   'pg_fetch_assoc' => 
3415
-  array (
3415
+  array(
3416 3416
     'return' => 'array',
3417 3417
     'params' => 'resource result [, int row]',
3418 3418
     'description' => 'Fetch a row as an assoc array',
3419 3419
   ),
3420 3420
   'pg_fetch_array' => 
3421
-  array (
3421
+  array(
3422 3422
     'return' => 'array',
3423 3423
     'params' => 'resource result [, int row [, int result_type]]',
3424 3424
     'description' => 'Fetch a row as an array',
3425 3425
   ),
3426 3426
   'pg_fetch_object' => 
3427
-  array (
3427
+  array(
3428 3428
     'return' => 'object',
3429 3429
     'params' => 'resource result [, int row [, string class_name [, NULL|array ctor_params]]]',
3430 3430
     'description' => 'Fetch a row as an object',
3431 3431
   ),
3432 3432
   'pg_fetch_all' => 
3433
-  array (
3433
+  array(
3434 3434
     'return' => 'array',
3435 3435
     'params' => 'resource result',
3436 3436
     'description' => 'Fetch all rows into array',
3437 3437
   ),
3438 3438
   'pg_fetch_all_columns' => 
3439
-  array (
3439
+  array(
3440 3440
     'return' => 'array',
3441 3441
     'params' => 'resource result [, int column_number]',
3442 3442
     'description' => 'Fetch all rows into array',
3443 3443
   ),
3444 3444
   'pg_result_seek' => 
3445
-  array (
3445
+  array(
3446 3446
     'return' => 'bool',
3447 3447
     'params' => 'resource result, int offset',
3448 3448
     'description' => 'Set internal row offset',
3449 3449
   ),
3450 3450
   'pg_field_prtlen' => 
3451
-  array (
3451
+  array(
3452 3452
     'return' => 'int',
3453 3453
     'params' => 'resource result, [int row,] mixed field_name_or_number',
3454 3454
     'description' => 'Returns the printed length',
3455 3455
   ),
3456 3456
   'pg_field_is_null' => 
3457
-  array (
3457
+  array(
3458 3458
     'return' => 'int',
3459 3459
     'params' => 'resource result, [int row,] mixed field_name_or_number',
3460 3460
     'description' => 'Test if a field is NULL',
3461 3461
   ),
3462 3462
   'pg_free_result' => 
3463
-  array (
3463
+  array(
3464 3464
     'return' => 'bool',
3465 3465
     'params' => 'resource result',
3466 3466
     'description' => 'Free result memory',
3467 3467
   ),
3468 3468
   'pg_last_oid' => 
3469
-  array (
3469
+  array(
3470 3470
     'return' => 'string',
3471 3471
     'params' => 'resource result',
3472 3472
     'description' => 'Returns the last object identifier',
3473 3473
   ),
3474 3474
   'pg_trace' => 
3475
-  array (
3475
+  array(
3476 3476
     'return' => 'bool',
3477 3477
     'params' => 'string filename [, string mode [, resource connection]]',
3478 3478
     'description' => 'Enable tracing a PostgreSQL connection',
3479 3479
   ),
3480 3480
   'pg_untrace' => 
3481
-  array (
3481
+  array(
3482 3482
     'return' => 'bool',
3483 3483
     'params' => '[resource connection]',
3484 3484
     'description' => 'Disable tracing of a PostgreSQL connection',
3485 3485
   ),
3486 3486
   'pg_lo_create' => 
3487
-  array (
3487
+  array(
3488 3488
     'return' => 'int',
3489 3489
     'params' => '[resource connection]',
3490 3490
     'description' => 'Create a large object',
3491 3491
   ),
3492 3492
   'pg_lo_unlink' => 
3493
-  array (
3493
+  array(
3494 3494
     'return' => 'bool',
3495 3495
     'params' => '[resource connection,] string large_object_oid',
3496 3496
     'description' => 'Delete a large object',
3497 3497
   ),
3498 3498
   'pg_lo_open' => 
3499
-  array (
3499
+  array(
3500 3500
     'return' => 'resource',
3501 3501
     'params' => '[resource connection,] int large_object_oid, string mode',
3502 3502
     'description' => 'Open a large object and return fd',
3503 3503
   ),
3504 3504
   'pg_lo_close' => 
3505
-  array (
3505
+  array(
3506 3506
     'return' => 'bool',
3507 3507
     'params' => 'resource large_object',
3508 3508
     'description' => 'Close a large object',
3509 3509
   ),
3510 3510
   'pg_lo_read' => 
3511
-  array (
3511
+  array(
3512 3512
     'return' => 'string',
3513 3513
     'params' => 'resource large_object [, int len]',
3514 3514
     'description' => 'Read a large object',
3515 3515
   ),
3516 3516
   'pg_lo_write' => 
3517
-  array (
3517
+  array(
3518 3518
     'return' => 'int',
3519 3519
     'params' => 'resource large_object, string buf [, int len]',
3520 3520
     'description' => 'Write a large object',
3521 3521
   ),
3522 3522
   'pg_lo_read_all' => 
3523
-  array (
3523
+  array(
3524 3524
     'return' => 'int',
3525 3525
     'params' => 'resource large_object',
3526 3526
     'description' => 'Read a large object and send straight to browser',
3527 3527
   ),
3528 3528
   'pg_lo_import' => 
3529
-  array (
3529
+  array(
3530 3530
     'return' => 'int',
3531 3531
     'params' => '[resource connection, ] string filename',
3532 3532
     'description' => 'Import large object direct from filesystem',
3533 3533
   ),
3534 3534
   'pg_lo_export' => 
3535
-  array (
3535
+  array(
3536 3536
     'return' => 'bool',
3537 3537
     'params' => '[resource connection, ] int objoid, string filename',
3538 3538
     'description' => 'Export large object direct to filesystem',
3539 3539
   ),
3540 3540
   'pg_lo_seek' => 
3541
-  array (
3541
+  array(
3542 3542
     'return' => 'bool',
3543 3543
     'params' => 'resource large_object, int offset [, int whence]',
3544 3544
     'description' => 'Seeks position of large object',
3545 3545
   ),
3546 3546
   'pg_lo_tell' => 
3547
-  array (
3547
+  array(
3548 3548
     'return' => 'int',
3549 3549
     'params' => 'resource large_object',
3550 3550
     'description' => 'Returns current position of large object',
3551 3551
   ),
3552 3552
   'pg_set_error_verbosity' => 
3553
-  array (
3553
+  array(
3554 3554
     'return' => 'int',
3555 3555
     'params' => '[resource connection,] int verbosity',
3556 3556
     'description' => 'Set error verbosity',
3557 3557
   ),
3558 3558
   'pg_set_client_encoding' => 
3559
-  array (
3559
+  array(
3560 3560
     'return' => 'int',
3561 3561
     'params' => '[resource connection,] string encoding',
3562 3562
     'description' => 'Set client encoding',
3563 3563
   ),
3564 3564
   'pg_client_encoding' => 
3565
-  array (
3565
+  array(
3566 3566
     'return' => 'string',
3567 3567
     'params' => '[resource connection]',
3568 3568
     'description' => 'Get the current client encoding',
3569 3569
   ),
3570 3570
   'pg_end_copy' => 
3571
-  array (
3571
+  array(
3572 3572
     'return' => 'bool',
3573 3573
     'params' => '[resource connection]',
3574 3574
     'description' => 'Sync with backend. Completes the Copy command',
3575 3575
   ),
3576 3576
   'pg_put_line' => 
3577
-  array (
3577
+  array(
3578 3578
     'return' => 'bool',
3579 3579
     'params' => '[resource connection,] string query',
3580 3580
     'description' => 'Send null-terminated string to backend server',
3581 3581
   ),
3582 3582
   'pg_copy_to' => 
3583
-  array (
3583
+  array(
3584 3584
     'return' => 'array',
3585 3585
     'params' => 'resource connection, string table_name [, string delimiter [, string null_as]]',
3586 3586
     'description' => 'Copy table to array',
3587 3587
   ),
3588 3588
   'pg_copy_from' => 
3589
-  array (
3589
+  array(
3590 3590
     'return' => 'bool',
3591 3591
     'params' => 'resource connection, string table_name , array rows [, string delimiter [, string null_as]]',
3592 3592
     'description' => 'Copy table from array',
3593 3593
   ),
3594 3594
   'pg_escape_string' => 
3595
-  array (
3595
+  array(
3596 3596
     'return' => 'string',
3597 3597
     'params' => 'string data',
3598 3598
     'description' => 'Escape string for text/char type',
3599 3599
   ),
3600 3600
   'pg_escape_bytea' => 
3601
-  array (
3601
+  array(
3602 3602
     'return' => 'string',
3603 3603
     'params' => 'string data',
3604 3604
     'description' => 'Escape binary for bytea type',
3605 3605
   ),
3606 3606
   'pg_unescape_bytea' => 
3607
-  array (
3607
+  array(
3608 3608
     'return' => 'string',
3609 3609
     'params' => 'string data',
3610 3610
     'description' => 'Unescape binary for bytea type',
3611 3611
   ),
3612 3612
   'pg_result_error' => 
3613
-  array (
3613
+  array(
3614 3614
     'return' => 'string',
3615 3615
     'params' => 'resource result',
3616 3616
     'description' => 'Get error message associated with result',
3617 3617
   ),
3618 3618
   'pg_result_error_field' => 
3619
-  array (
3619
+  array(
3620 3620
     'return' => 'string',
3621 3621
     'params' => 'resource result, int fieldcode',
3622 3622
     'description' => 'Get error message field associated with result',
3623 3623
   ),
3624 3624
   'pg_connection_status' => 
3625
-  array (
3625
+  array(
3626 3626
     'return' => 'int',
3627 3627
     'params' => 'resource connnection',
3628 3628
     'description' => 'Get connection status',
3629 3629
   ),
3630 3630
   'pg_transaction_status' => 
3631
-  array (
3631
+  array(
3632 3632
     'return' => 'int',
3633 3633
     'params' => 'resource connnection',
3634 3634
     'description' => 'Get transaction status',
3635 3635
   ),
3636 3636
   'pg_connection_reset' => 
3637
-  array (
3637
+  array(
3638 3638
     'return' => 'bool',
3639 3639
     'params' => 'resource connection',
3640 3640
     'description' => 'Reset connection (reconnect)',
3641 3641
   ),
3642 3642
   'pg_cancel_query' => 
3643
-  array (
3643
+  array(
3644 3644
     'return' => 'bool',
3645 3645
     'params' => 'resource connection',
3646 3646
     'description' => 'Cancel request',
3647 3647
   ),
3648 3648
   'pg_connection_busy' => 
3649
-  array (
3649
+  array(
3650 3650
     'return' => 'bool',
3651 3651
     'params' => 'resource connection',
3652 3652
     'description' => 'Get connection is busy or not',
3653 3653
   ),
3654 3654
   'pg_send_query' => 
3655
-  array (
3655
+  array(
3656 3656
     'return' => 'bool',
3657 3657
     'params' => 'resource connection, string query',
3658 3658
     'description' => 'Send asynchronous query',
3659 3659
   ),
3660 3660
   'pg_send_query_params' => 
3661
-  array (
3661
+  array(
3662 3662
     'return' => 'bool',
3663 3663
     'params' => 'resource connection, string query',
3664 3664
     'description' => 'Send asynchronous parameterized query',
3665 3665
   ),
3666 3666
   'pg_send_prepare' => 
3667
-  array (
3667
+  array(
3668 3668
     'return' => 'bool',
3669 3669
     'params' => 'resource connection, string stmtname, string query',
3670 3670
     'description' => 'Asynchronously prepare a query for future execution',
3671 3671
   ),
3672 3672
   'pg_send_execute' => 
3673
-  array (
3673
+  array(
3674 3674
     'return' => 'bool',
3675 3675
     'params' => 'resource connection, string stmtname, array params',
3676 3676
     'description' => 'Executes prevriously prepared stmtname asynchronously',
3677 3677
   ),
3678 3678
   'pg_get_result' => 
3679
-  array (
3679
+  array(
3680 3680
     'return' => 'resource',
3681 3681
     'params' => 'resource connection',
3682 3682
     'description' => 'Get asynchronous query result',
3683 3683
   ),
3684 3684
   'pg_result_status' => 
3685
-  array (
3685
+  array(
3686 3686
     'return' => 'mixed',
3687 3687
     'params' => 'resource result[, long result_type]',
3688 3688
     'description' => 'Get status of query result',
3689 3689
   ),
3690 3690
   'pg_get_notify' => 
3691
-  array (
3691
+  array(
3692 3692
     'return' => 'array',
3693 3693
     'params' => '[resource connection[, result_type]]',
3694 3694
     'description' => 'Get asynchronous notification',
3695 3695
   ),
3696 3696
   'pg_get_pid' => 
3697
-  array (
3697
+  array(
3698 3698
     'return' => 'int',
3699 3699
     'params' => '[resource connection',
3700 3700
     'description' => 'Get backend(server) pid',
3701 3701
   ),
3702 3702
   'pg_meta_data' => 
3703
-  array (
3703
+  array(
3704 3704
     'return' => 'array',
3705 3705
     'params' => 'resource db, string table',
3706 3706
     'description' => 'Get meta_data',
3707 3707
   ),
3708 3708
   'pg_convert' => 
3709
-  array (
3709
+  array(
3710 3710
     'return' => 'array',
3711 3711
     'params' => 'resource db, string table, array values[, int options]',
3712 3712
     'description' => 'Check and convert values for PostgreSQL SQL statement',
3713 3713
   ),
3714 3714
   'pg_insert' => 
3715
-  array (
3715
+  array(
3716 3716
     'return' => 'mixed',
3717 3717
     'params' => 'resource db, string table, array values[, int options]',
3718 3718
     'description' => 'Insert values (filed=>value) to table',
3719 3719
   ),
3720 3720
   'pg_update' => 
3721
-  array (
3721
+  array(
3722 3722
     'return' => 'mixed',
3723 3723
     'params' => 'resource db, string table, array fields, array ids[, int options]',
3724 3724
     'description' => 'Update table using values (field=>value) and ids (id=>value)',
3725 3725
   ),
3726 3726
   'pg_delete' => 
3727
-  array (
3727
+  array(
3728 3728
     'return' => 'mixed',
3729 3729
     'params' => 'resource db, string table, array ids[, int options]',
3730 3730
     'description' => 'Delete records has ids (id=>value)',
3731 3731
   ),
3732 3732
   'pg_select' => 
3733
-  array (
3733
+  array(
3734 3734
     'return' => 'mixed',
3735 3735
     'params' => 'resource db, string table, array ids[, int options]',
3736 3736
     'description' => 'Select records that has ids (id=>value)',
3737 3737
   ),
3738 3738
   'filepro' => 
3739
-  array (
3739
+  array(
3740 3740
     'return' => 'bool',
3741 3741
     'params' => 'string directory',
3742 3742
     'description' => 'Read and verify the map file',
3743 3743
   ),
3744 3744
   'filepro_rowcount' => 
3745
-  array (
3745
+  array(
3746 3746
     'return' => 'int',
3747 3747
     'params' => 'void',
3748 3748
     'description' => 'Find out how many rows are in a filePro database',
3749 3749
   ),
3750 3750
   'filepro_fieldname' => 
3751
-  array (
3751
+  array(
3752 3752
     'return' => 'string',
3753 3753
     'params' => 'int fieldnumber',
3754 3754
     'description' => 'Gets the name of a field',
3755 3755
   ),
3756 3756
   'filepro_fieldtype' => 
3757
-  array (
3757
+  array(
3758 3758
     'return' => 'string',
3759 3759
     'params' => 'int field_number',
3760 3760
     'description' => 'Gets the type of a field',
3761 3761
   ),
3762 3762
   'filepro_fieldwidth' => 
3763
-  array (
3763
+  array(
3764 3764
     'return' => 'int',
3765 3765
     'params' => 'int field_number',
3766 3766
     'description' => 'Gets the width of a field',
3767 3767
   ),
3768 3768
   'filepro_fieldcount' => 
3769
-  array (
3769
+  array(
3770 3770
     'return' => 'int',
3771 3771
     'params' => 'void',
3772 3772
     'description' => 'Find out how many fields are in a filePro database',
3773 3773
   ),
3774 3774
   'filepro_retrieve' => 
3775
-  array (
3775
+  array(
3776 3776
     'return' => 'string',
3777 3777
     'params' => 'int row_number, int field_number',
3778 3778
     'description' => 'Retrieves data from a filePro database',
3779 3779
   ),
3780 3780
   'bzread' => 
3781
-  array (
3781
+  array(
3782 3782
     'return' => 'string',
3783 3783
     'params' => 'int bz[, int length]',
3784 3784
     'description' => 'Reads up to length bytes from a BZip2 stream, or 1024 bytes if length is not specified',
3785 3785
   ),
3786 3786
   'bzopen' => 
3787
-  array (
3787
+  array(
3788 3788
     'return' => 'resource',
3789 3789
     'params' => 'string|int file|fp, string mode',
3790 3790
     'description' => 'Opens a new BZip2 stream',
3791 3791
   ),
3792 3792
   'bzerrno' => 
3793
-  array (
3793
+  array(
3794 3794
     'return' => 'int',
3795 3795
     'params' => 'resource bz',
3796 3796
     'description' => 'Returns the error number',
3797 3797
   ),
3798 3798
   'bzerrstr' => 
3799
-  array (
3799
+  array(
3800 3800
     'return' => 'string',
3801 3801
     'params' => 'resource bz',
3802 3802
     'description' => 'Returns the error string',
3803 3803
   ),
3804 3804
   'bzerror' => 
3805
-  array (
3805
+  array(
3806 3806
     'return' => 'array',
3807 3807
     'params' => 'resource bz',
3808 3808
     'description' => 'Returns the error number and error string in an associative array',
3809 3809
   ),
3810 3810
   'bzcompress' => 
3811
-  array (
3811
+  array(
3812 3812
     'return' => 'string',
3813 3813
     'params' => 'string source [, int blocksize100k [, int workfactor]]',
3814 3814
     'description' => 'Compresses a string into BZip2 encoded data',
3815 3815
   ),
3816 3816
   'bzdecompress' => 
3817
-  array (
3817
+  array(
3818 3818
     'return' => 'string',
3819 3819
     'params' => 'string source [, int small]',
3820 3820
     'description' => 'Decompresses BZip2 compressed data',
3821 3821
   ),
3822 3822
   'dba_popen' => 
3823
-  array (
3823
+  array(
3824 3824
     'return' => 'resource',
3825 3825
     'params' => 'string path, string mode [, string handlername, string ...]',
3826 3826
     'description' => 'Opens path using the specified handler in mode persistently',
3827 3827
   ),
3828 3828
   'dba_open' => 
3829
-  array (
3829
+  array(
3830 3830
     'return' => 'resource',
3831 3831
     'params' => 'string path, string mode [, string handlername, string ...]',
3832 3832
     'description' => 'Opens path using the specified handler in mode',
3833 3833
   ),
3834 3834
   'dba_close' => 
3835
-  array (
3835
+  array(
3836 3836
     'return' => 'void',
3837 3837
     'params' => 'resource handle',
3838 3838
     'description' => 'Closes database',
3839 3839
   ),
3840 3840
   'dba_exists' => 
3841
-  array (
3841
+  array(
3842 3842
     'return' => 'bool',
3843 3843
     'params' => 'string key, resource handle',
3844 3844
     'description' => 'Checks, if the specified key exists',
3845 3845
   ),
3846 3846
   'dba_fetch' => 
3847
-  array (
3847
+  array(
3848 3848
     'return' => 'string',
3849 3849
     'params' => 'string key, [int skip ,] resource handle',
3850 3850
     'description' => 'Fetches the data associated with key',
3851 3851
   ),
3852 3852
   'dba_key_split' => 
3853
-  array (
3853
+  array(
3854 3854
     'return' => 'array|false',
3855 3855
     'params' => 'string key',
3856 3856
     'description' => 'Splits an inifile key into an array of the form array(0=>group,1=>value_name) but returns false if input is false or null',
3857 3857
   ),
3858 3858
   'dba_firstkey' => 
3859
-  array (
3859
+  array(
3860 3860
     'return' => 'string',
3861 3861
     'params' => 'resource handle',
3862 3862
     'description' => 'Resets the internal key pointer and returns the first key',
3863 3863
   ),
3864 3864
   'dba_nextkey' => 
3865
-  array (
3865
+  array(
3866 3866
     'return' => 'string',
3867 3867
     'params' => 'resource handle',
3868 3868
     'description' => 'Returns the next key',
3869 3869
   ),
3870 3870
   'dba_delete' => 
3871
-  array (
3871
+  array(
3872 3872
     'return' => 'bool',
3873 3873
     'params' => 'string key, resource handle',
3874 3874
     'description' => 'Deletes the entry associated with keyIf inifile: remove all other key lines',
3875 3875
   ),
3876 3876
   'dba_insert' => 
3877
-  array (
3877
+  array(
3878 3878
     'return' => 'bool',
3879 3879
     'params' => 'string key, string value, resource handle',
3880 3880
     'description' => 'If not inifile: Insert value as key, return false, if key exists alreadyIf inifile: Add vakue as key (next instance of key)',
3881 3881
   ),
3882 3882
   'dba_replace' => 
3883
-  array (
3883
+  array(
3884 3884
     'return' => 'bool',
3885 3885
     'params' => 'string key, string value, resource handle',
3886 3886
     'description' => 'Inserts value as key, replaces key, if key exists alreadyIf inifile: remove all other key lines',
3887 3887
   ),
3888 3888
   'dba_optimize' => 
3889
-  array (
3889
+  array(
3890 3890
     'return' => 'bool',
3891 3891
     'params' => 'resource handle',
3892 3892
     'description' => 'Optimizes (e.g. clean up, vacuum) database',
3893 3893
   ),
3894 3894
   'dba_sync' => 
3895
-  array (
3895
+  array(
3896 3896
     'return' => 'bool',
3897 3897
     'params' => 'resource handle',
3898 3898
     'description' => 'Synchronizes database',
3899 3899
   ),
3900 3900
   'dba_handlers' => 
3901
-  array (
3901
+  array(
3902 3902
     'return' => 'array',
3903 3903
     'params' => '[bool full_info]',
3904 3904
     'description' => 'List configured database handlers',
3905 3905
   ),
3906 3906
   'dba_list' => 
3907
-  array (
3907
+  array(
3908 3908
     'return' => 'array',
3909 3909
     'params' => '',
3910 3910
     'description' => 'List opened databases',
3911 3911
   ),
3912 3912
   'iconv_strlen' => 
3913
-  array (
3913
+  array(
3914 3914
     'return' => 'int',
3915 3915
     'params' => 'string str [, string charset]',
3916 3916
     'description' => 'Returns the character count of str',
3917 3917
   ),
3918 3918
   'iconv_substr' => 
3919
-  array (
3919
+  array(
3920 3920
     'return' => 'string',
3921 3921
     'params' => 'string str, int offset, [int length, string charset]',
3922 3922
     'description' => 'Returns specified part of a string',
3923 3923
   ),
3924 3924
   'iconv_strpos' => 
3925
-  array (
3925
+  array(
3926 3926
     'return' => 'int',
3927 3927
     'params' => 'string haystack, string needle, int offset [, string charset]',
3928 3928
     'description' => 'Finds position of first occurrence of needle within part of haystack beginning with offset',
3929 3929
   ),
3930 3930
   'iconv_strrpos' => 
3931
-  array (
3931
+  array(
3932 3932
     'return' => 'int',
3933 3933
     'params' => 'string haystack, string needle [, string charset]',
3934 3934
     'description' => 'Finds position of last occurrence of needle within part of haystack beginning with offset',
3935 3935
   ),
3936 3936
   'iconv_mime_encode' => 
3937
-  array (
3937
+  array(
3938 3938
     'return' => 'string',
3939 3939
     'params' => 'string field_name, string field_value, [, array preference]',
3940 3940
     'description' => 'Composes a mime header field with field_name and field_value in a specified scheme',
3941 3941
   ),
3942 3942
   'iconv_mime_decode' => 
3943
-  array (
3943
+  array(
3944 3944
     'return' => 'string',
3945 3945
     'params' => 'string encoded_string [, int mode, string charset]',
3946 3946
     'description' => 'Decodes a mime header field',
3947 3947
   ),
3948 3948
   'iconv_mime_decode_headers' => 
3949
-  array (
3949
+  array(
3950 3950
     'return' => 'array',
3951 3951
     'params' => 'string headers [, int mode, string charset]',
3952 3952
     'description' => 'Decodes multiple mime header fields',
3953 3953
   ),
3954 3954
   'iconv' => 
3955
-  array (
3955
+  array(
3956 3956
     'return' => 'string',
3957 3957
     'params' => 'string in_charset, string out_charset, string str',
3958 3958
     'description' => 'Returns str converted to the out_charset character set',
3959 3959
   ),
3960 3960
   'ob_iconv_handler' => 
3961
-  array (
3961
+  array(
3962 3962
     'return' => 'string',
3963 3963
     'params' => 'string contents, int status',
3964 3964
     'description' => 'Returns str in output buffer converted to the iconv.output_encoding character set',
3965 3965
   ),
3966 3966
   'iconv_set_encoding' => 
3967
-  array (
3967
+  array(
3968 3968
     'return' => 'bool',
3969 3969
     'params' => 'string type, string charset',
3970 3970
     'description' => 'Sets internal encoding and output encoding for ob_iconv_handler()',
3971 3971
   ),
3972 3972
   'iconv_get_encoding' => 
3973
-  array (
3973
+  array(
3974 3974
     'return' => 'mixed',
3975 3975
     'params' => '[string type]',
3976 3976
     'description' => 'Get internal encoding and output encoding for ob_iconv_handler()',
3977 3977
   ),
3978 3978
   'ctype_alnum' => 
3979
-  array (
3979
+  array(
3980 3980
     'return' => 'bool',
3981 3981
     'params' => 'mixed c',
3982 3982
     'description' => 'Checks for alphanumeric character(s)',
3983 3983
   ),
3984 3984
   'ctype_alpha' => 
3985
-  array (
3985
+  array(
3986 3986
     'return' => 'bool',
3987 3987
     'params' => 'mixed c',
3988 3988
     'description' => 'Checks for alphabetic character(s)',
3989 3989
   ),
3990 3990
   'ctype_cntrl' => 
3991
-  array (
3991
+  array(
3992 3992
     'return' => 'bool',
3993 3993
     'params' => 'mixed c',
3994 3994
     'description' => 'Checks for control character(s)',
3995 3995
   ),
3996 3996
   'ctype_digit' => 
3997
-  array (
3997
+  array(
3998 3998
     'return' => 'bool',
3999 3999
     'params' => 'mixed c',
4000 4000
     'description' => 'Checks for numeric character(s)',
4001 4001
   ),
4002 4002
   'ctype_lower' => 
4003
-  array (
4003
+  array(
4004 4004
     'return' => 'bool',
4005 4005
     'params' => 'mixed c',
4006 4006
     'description' => 'Checks for lowercase character(s)',
4007 4007
   ),
4008 4008
   'ctype_graph' => 
4009
-  array (
4009
+  array(
4010 4010
     'return' => 'bool',
4011 4011
     'params' => 'mixed c',
4012 4012
     'description' => 'Checks for any printable character(s) except space',
4013 4013
   ),
4014 4014
   'ctype_print' => 
4015
-  array (
4015
+  array(
4016 4016
     'return' => 'bool',
4017 4017
     'params' => 'mixed c',
4018 4018
     'description' => 'Checks for printable character(s)',
4019 4019
   ),
4020 4020
   'ctype_punct' => 
4021
-  array (
4021
+  array(
4022 4022
     'return' => 'bool',
4023 4023
     'params' => 'mixed c',
4024 4024
     'description' => 'Checks for any printable character which is not whitespace or an alphanumeric character',
4025 4025
   ),
4026 4026
   'ctype_space' => 
4027
-  array (
4027
+  array(
4028 4028
     'return' => 'bool',
4029 4029
     'params' => 'mixed c',
4030 4030
     'description' => 'Checks for whitespace character(s)',
4031 4031
   ),
4032 4032
   'ctype_upper' => 
4033
-  array (
4033
+  array(
4034 4034
     'return' => 'bool',
4035 4035
     'params' => 'mixed c',
4036 4036
     'description' => 'Checks for uppercase character(s)',
4037 4037
   ),
4038 4038
   'ctype_xdigit' => 
4039
-  array (
4039
+  array(
4040 4040
     'return' => 'bool',
4041 4041
     'params' => 'mixed c',
4042 4042
     'description' => 'Checks for character(s) representing a hexadecimal digit',
4043 4043
   ),
4044 4044
   'bcadd' => 
4045
-  array (
4045
+  array(
4046 4046
     'return' => 'string',
4047 4047
     'params' => 'string left_operand, string right_operand [, int scale]',
4048 4048
     'description' => 'Returns the sum of two arbitrary precision numbers',
4049 4049
   ),
4050 4050
   'bcsub' => 
4051
-  array (
4051
+  array(
4052 4052
     'return' => 'string',
4053 4053
     'params' => 'string left_operand, string right_operand [, int scale]',
4054 4054
     'description' => 'Returns the difference between two arbitrary precision numbers',
4055 4055
   ),
4056 4056
   'bcmul' => 
4057
-  array (
4057
+  array(
4058 4058
     'return' => 'string',
4059 4059
     'params' => 'string left_operand, string right_operand [, int scale]',
4060 4060
     'description' => 'Returns the multiplication of two arbitrary precision numbers',
4061 4061
   ),
4062 4062
   'bcdiv' => 
4063
-  array (
4063
+  array(
4064 4064
     'return' => 'string',
4065 4065
     'params' => 'string left_operand, string right_operand [, int scale]',
4066 4066
     'description' => 'Returns the quotient of two arbitrary precision numbers (division)',
4067 4067
   ),
4068 4068
   'bcmod' => 
4069
-  array (
4069
+  array(
4070 4070
     'return' => 'string',
4071 4071
     'params' => 'string left_operand, string right_operand',
4072 4072
     'description' => 'Returns the modulus of the two arbitrary precision operands',
4073 4073
   ),
4074 4074
   'bcpowmod' => 
4075
-  array (
4075
+  array(
4076 4076
     'return' => 'string',
4077 4077
     'params' => 'string x, string y, string mod [, int scale]',
4078 4078
     'description' => 'Returns the value of an arbitrary precision number raised to the power of another reduced by a modulous',
4079 4079
   ),
4080 4080
   'bcpow' => 
4081
-  array (
4081
+  array(
4082 4082
     'return' => 'string',
4083 4083
     'params' => 'string x, string y [, int scale]',
4084 4084
     'description' => 'Returns the value of an arbitrary precision number raised to the power of another',
4085 4085
   ),
4086 4086
   'bcsqrt' => 
4087
-  array (
4087
+  array(
4088 4088
     'return' => 'string',
4089 4089
     'params' => 'string operand [, int scale]',
4090 4090
     'description' => 'Returns the square root of an arbitray precision number',
4091 4091
   ),
4092 4092
   'bccomp' => 
4093
-  array (
4093
+  array(
4094 4094
     'return' => 'int',
4095 4095
     'params' => 'string left_operand, string right_operand [, int scale]',
4096 4096
     'description' => 'Compares two arbitrary precision numbers',
4097 4097
   ),
4098 4098
   'bcscale' => 
4099
-  array (
4099
+  array(
4100 4100
     'return' => 'bool',
4101 4101
     'params' => 'int scale',
4102 4102
     'description' => 'Sets default scale parameter for all bc math functions',
4103 4103
   ),
4104 4104
   'ldap_connect' => 
4105
-  array (
4105
+  array(
4106 4106
     'return' => 'resource',
4107 4107
     'params' => '[string host [, int port]]',
4108 4108
     'description' => 'Connect to an LDAP server',
4109 4109
   ),
4110 4110
   'ldap_bind' => 
4111
-  array (
4111
+  array(
4112 4112
     'return' => 'bool',
4113 4113
     'params' => 'resource link [, string dn, string password]',
4114 4114
     'description' => 'Bind to LDAP directory',
4115 4115
   ),
4116 4116
   'ldap_sasl_bind' => 
4117
-  array (
4117
+  array(
4118 4118
     'return' => 'bool',
4119 4119
     'params' => 'resource link [, string binddn, string password, string sasl_mech, string sasl_realm, string sasl_authz_id, string props]',
4120 4120
     'description' => 'Bind to LDAP directory using SASL',
4121 4121
   ),
4122 4122
   'ldap_unbind' => 
4123
-  array (
4123
+  array(
4124 4124
     'return' => 'bool',
4125 4125
     'params' => 'resource link',
4126 4126
     'description' => 'Unbind from LDAP directory',
4127 4127
   ),
4128 4128
   'ldap_read' => 
4129
-  array (
4129
+  array(
4130 4130
     'return' => 'resource',
4131 4131
     'params' => 'resource link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]]',
4132 4132
     'description' => 'Read an entry',
4133 4133
   ),
4134 4134
   'ldap_list' => 
4135
-  array (
4135
+  array(
4136 4136
     'return' => 'resource',
4137 4137
     'params' => 'resource link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]]',
4138 4138
     'description' => 'Single-level search',
4139 4139
   ),
4140 4140
   'ldap_search' => 
4141
-  array (
4141
+  array(
4142 4142
     'return' => 'resource',
4143 4143
     'params' => 'resource link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]]',
4144 4144
     'description' => 'Search LDAP tree under base_dn',
4145 4145
   ),
4146 4146
   'ldap_free_result' => 
4147
-  array (
4147
+  array(
4148 4148
     'return' => 'bool',
4149 4149
     'params' => 'resource result',
4150 4150
     'description' => 'Free result memory',
4151 4151
   ),
4152 4152
   'ldap_count_entries' => 
4153
-  array (
4153
+  array(
4154 4154
     'return' => 'int',
4155 4155
     'params' => 'resource link, resource result',
4156 4156
     'description' => 'Count the number of entries in a search result',
4157 4157
   ),
4158 4158
   'ldap_first_entry' => 
4159
-  array (
4159
+  array(
4160 4160
     'return' => 'resource',
4161 4161
     'params' => 'resource link, resource result',
4162 4162
     'description' => 'Return first result id',
4163 4163
   ),
4164 4164
   'ldap_next_entry' => 
4165
-  array (
4165
+  array(
4166 4166
     'return' => 'resource',
4167 4167
     'params' => 'resource link, resource result_entry',
4168 4168
     'description' => 'Get next result entry',
4169 4169
   ),
4170 4170
   'ldap_get_entries' => 
4171
-  array (
4171
+  array(
4172 4172
     'return' => 'array',
4173 4173
     'params' => 'resource link, resource result',
4174 4174
     'description' => 'Get all result entries',
4175 4175
   ),
4176 4176
   'ldap_first_attribute' => 
4177
-  array (
4177
+  array(
4178 4178
     'return' => 'string',
4179 4179
     'params' => 'resource link, resource result_entry, int ber',
4180 4180
     'description' => 'Return first attribute',
4181 4181
   ),
4182 4182
   'ldap_next_attribute' => 
4183
-  array (
4183
+  array(
4184 4184
     'return' => 'string',
4185 4185
     'params' => 'resource link, resource result_entry, resource ber',
4186 4186
     'description' => 'Get the next attribute in result',
4187 4187
   ),
4188 4188
   'ldap_get_attributes' => 
4189
-  array (
4189
+  array(
4190 4190
     'return' => 'array',
4191 4191
     'params' => 'resource link, resource result_entry',
4192 4192
     'description' => 'Get attributes from a search result entry',
4193 4193
   ),
4194 4194
   'ldap_get_values' => 
4195
-  array (
4195
+  array(
4196 4196
     'return' => 'array',
4197 4197
     'params' => 'resource link, resource result_entry, string attribute',
4198 4198
     'description' => 'Get all values from a result entry',
4199 4199
   ),
4200 4200
   'ldap_get_values_len' => 
4201
-  array (
4201
+  array(
4202 4202
     'return' => 'array',
4203 4203
     'params' => 'resource link, resource result_entry, string attribute',
4204 4204
     'description' => 'Get all values with lengths from a result entry',
4205 4205
   ),
4206 4206
   'ldap_get_dn' => 
4207
-  array (
4207
+  array(
4208 4208
     'return' => 'string',
4209 4209
     'params' => 'resource link, resource result_entry',
4210 4210
     'description' => 'Get the DN of a result entry',
4211 4211
   ),
4212 4212
   'ldap_explode_dn' => 
4213
-  array (
4213
+  array(
4214 4214
     'return' => 'array',
4215 4215
     'params' => 'string dn, int with_attrib',
4216 4216
     'description' => 'Splits DN into its component parts',
4217 4217
   ),
4218 4218
   'ldap_dn2ufn' => 
4219
-  array (
4219
+  array(
4220 4220
     'return' => 'string',
4221 4221
     'params' => 'string dn',
4222 4222
     'description' => 'Convert DN to User Friendly Naming format',
4223 4223
   ),
4224 4224
   'ldap_add' => 
4225
-  array (
4225
+  array(
4226 4226
     'return' => 'bool',
4227 4227
     'params' => 'resource link, string dn, array entry',
4228 4228
     'description' => 'Add entries to LDAP directory',
4229 4229
   ),
4230 4230
   'ldap_mod_replace' => 
4231
-  array (
4231
+  array(
4232 4232
     'return' => 'bool',
4233 4233
     'params' => 'resource link, string dn, array entry',
4234 4234
     'description' => 'Replace attribute values with new ones',
4235 4235
   ),
4236 4236
   'ldap_mod_add' => 
4237
-  array (
4237
+  array(
4238 4238
     'return' => 'bool',
4239 4239
     'params' => 'resource link, string dn, array entry',
4240 4240
     'description' => 'Add attribute values to current',
4241 4241
   ),
4242 4242
   'ldap_mod_del' => 
4243
-  array (
4243
+  array(
4244 4244
     'return' => 'bool',
4245 4245
     'params' => 'resource link, string dn, array entry',
4246 4246
     'description' => 'Delete attribute values',
4247 4247
   ),
4248 4248
   'ldap_delete' => 
4249
-  array (
4249
+  array(
4250 4250
     'return' => 'bool',
4251 4251
     'params' => 'resource link, string dn',
4252 4252
     'description' => 'Delete an entry from a directory',
4253 4253
   ),
4254 4254
   'ldap_errno' => 
4255
-  array (
4255
+  array(
4256 4256
     'return' => 'int',
4257 4257
     'params' => 'resource link',
4258 4258
     'description' => 'Get the current ldap error number',
4259 4259
   ),
4260 4260
   'ldap_err2str' => 
4261
-  array (
4261
+  array(
4262 4262
     'return' => 'string',
4263 4263
     'params' => 'int errno',
4264 4264
     'description' => 'Convert error number to error string',
4265 4265
   ),
4266 4266
   'ldap_error' => 
4267
-  array (
4267
+  array(
4268 4268
     'return' => 'string',
4269 4269
     'params' => 'resource link',
4270 4270
     'description' => 'Get the current ldap error string',
4271 4271
   ),
4272 4272
   'ldap_compare' => 
4273
-  array (
4273
+  array(
4274 4274
     'return' => 'bool',
4275 4275
     'params' => 'resource link, string dn, string attr, string value',
4276 4276
     'description' => 'Determine if an entry has a specific value for one of its attributes',
4277 4277
   ),
4278 4278
   'ldap_sort' => 
4279
-  array (
4279
+  array(
4280 4280
     'return' => 'bool',
4281 4281
     'params' => 'resource link, resource result, string sortfilter',
4282 4282
     'description' => 'Sort LDAP result entries',
4283 4283
   ),
4284 4284
   'ldap_get_option' => 
4285
-  array (
4285
+  array(
4286 4286
     'return' => 'bool',
4287 4287
     'params' => 'resource link, int option, mixed retval',
4288 4288
     'description' => 'Get the current value of various session-wide parameters',
4289 4289
   ),
4290 4290
   'ldap_set_option' => 
4291
-  array (
4291
+  array(
4292 4292
     'return' => 'bool',
4293 4293
     'params' => 'resource link, int option, mixed newval',
4294 4294
     'description' => 'Set the value of various session-wide parameters',
4295 4295
   ),
4296 4296
   'ldap_parse_result' => 
4297
-  array (
4297
+  array(
4298 4298
     'return' => 'bool',
4299 4299
     'params' => 'resource link, resource result, int errcode, string matcheddn, string errmsg, array referrals',
4300 4300
     'description' => 'Extract information from result',
4301 4301
   ),
4302 4302
   'ldap_first_reference' => 
4303
-  array (
4303
+  array(
4304 4304
     'return' => 'resource',
4305 4305
     'params' => 'resource link, resource result',
4306 4306
     'description' => 'Return first reference',
4307 4307
   ),
4308 4308
   'ldap_next_reference' => 
4309
-  array (
4309
+  array(
4310 4310
     'return' => 'resource',
4311 4311
     'params' => 'resource link, resource reference_entry',
4312 4312
     'description' => 'Get next reference',
4313 4313
   ),
4314 4314
   'ldap_parse_reference' => 
4315
-  array (
4315
+  array(
4316 4316
     'return' => 'bool',
4317 4317
     'params' => 'resource link, resource reference_entry, array referrals',
4318 4318
     'description' => 'Extract information from reference entry',
4319 4319
   ),
4320 4320
   'ldap_rename' => 
4321
-  array (
4321
+  array(
4322 4322
     'return' => 'bool',
4323 4323
     'params' => 'resource link, string dn, string newrdn, string newparent, bool deleteoldrdn',
4324 4324
     'description' => 'Modify the name of an entry',
4325 4325
   ),
4326 4326
   'ldap_start_tls' => 
4327
-  array (
4327
+  array(
4328 4328
     'return' => 'bool',
4329 4329
     'params' => 'resource link',
4330 4330
     'description' => 'Start TLS',
4331 4331
   ),
4332 4332
   'ldap_set_rebind_proc' => 
4333
-  array (
4333
+  array(
4334 4334
     'return' => 'bool',
4335 4335
     'params' => 'resource link, string callback',
4336 4336
     'description' => 'Set a callback function to do re-binds on referral chasing.',
4337 4337
   ),
4338 4338
   'ldap_t61_to_8859' => 
4339
-  array (
4339
+  array(
4340 4340
     'return' => 'string',
4341 4341
     'params' => 'string value',
4342 4342
     'description' => 'Translate t61 characters to 8859 characters',
4343 4343
   ),
4344 4344
   'ldap_8859_to_t61' => 
4345
-  array (
4345
+  array(
4346 4346
     'return' => 'string',
4347 4347
     'params' => 'string value',
4348 4348
     'description' => 'Translate 8859 characters to t61 characters',
4349 4349
   ),
4350 4350
   'SoapServer::setClass' => 
4351
-  array (
4351
+  array(
4352 4352
     'return' => 'void',
4353 4353
     'params' => 'string class_name [, mixed args]',
4354 4354
     'description' => 'Sets class which will handle SOAP requests',
4355 4355
   ),
4356 4356
   'SoapServer::getFunctions' => 
4357
-  array (
4357
+  array(
4358 4358
     'return' => 'array',
4359 4359
     'params' => 'void',
4360 4360
     'description' => 'Returns list of defined functions',
4361 4361
   ),
4362 4362
   'SoapServer::addFunction' => 
4363
-  array (
4363
+  array(
4364 4364
     'return' => 'void',
4365 4365
     'params' => 'mixed functions',
4366 4366
     'description' => 'Adds one or several functions those will handle SOAP requests',
4367 4367
   ),
4368 4368
   'SoapClient::__getLastRequestHeaders' => 
4369
-  array (
4369
+  array(
4370 4370
     'return' => 'string',
4371 4371
     'params' => 'void',
4372 4372
     'description' => 'Returns last SOAP request headers',
4373 4373
   ),
4374 4374
   'SoapClient::__getLastResponseHeaders' => 
4375
-  array (
4375
+  array(
4376 4376
     'return' => 'string',
4377 4377
     'params' => 'void',
4378 4378
     'description' => 'Returns last SOAP response headers',
4379 4379
   ),
4380 4380
   'SoapClient::__doRequest' => 
4381
-  array (
4381
+  array(
4382 4382
     'return' => 'string',
4383 4383
     'params' => '',
4384 4384
     'description' => 'SoapClient::__doRequest()',
4385 4385
   ),
4386 4386
   'SoapClient::__setCookie' => 
4387
-  array (
4387
+  array(
4388 4388
     'return' => 'void',
4389 4389
     'params' => 'string name [, strung value]',
4390 4390
     'description' => 'Sets cookie thet will sent with SOAP request.The call to this function will effect all folowing calls of SOAP methods.If value is not specified cookie is removed.',
4391 4391
   ),
4392 4392
   'SoapClient::__setSoapHeaders' => 
4393
-  array (
4393
+  array(
4394 4394
     'return' => 'void',
4395 4395
     'params' => 'array SoapHeaders',
4396 4396
     'description' => 'Sets SOAP headers for subsequent calls (replaces any previousvalues).If no value is specified, all of the headers are removed.',
4397 4397
   ),
4398 4398
   'SoapClient::__setLocation' => 
4399
-  array (
4399
+  array(
4400 4400
     'return' => 'string',
4401 4401
     'params' => '[string new_location]',
4402 4402
     'description' => 'Sets the location option (the endpoint URL that will be touched by thefollowing SOAP requests).If new_location is not specified or null then SoapClient will use endpointfrom WSDL file.The function returns old value of location options.',
4403 4403
   ),
4404 4404
   'fbsql_connect' => 
4405
-  array (
4405
+  array(
4406 4406
     'return' => 'resource',
4407 4407
     'params' => '[string hostname [, string username [, string password]]]',
4408 4408
     'description' => 'Create a connection to a database server',
4409 4409
   ),
4410 4410
   'fbsql_pconnect' => 
4411
-  array (
4411
+  array(
4412 4412
     'return' => 'resource',
4413 4413
     'params' => '[string hostname [, string username [, string password]]]',
4414 4414
     'description' => 'Create a persistant connection to a database server',
4415 4415
   ),
4416 4416
   'fbsql_close' => 
4417
-  array (
4417
+  array(
4418 4418
     'return' => 'bool',
4419 4419
     'params' => '[resource link_identifier]',
4420 4420
     'description' => 'Close a connection to a database server',
4421 4421
   ),
4422 4422
   'fbsql_set_transaction' => 
4423
-  array (
4423
+  array(
4424 4424
     'return' => 'void',
4425 4425
     'params' => 'resource link_identifier, int locking, int isolation',
4426 4426
     'description' => 'Sets the transaction locking and isolation',
4427 4427
   ),
4428 4428
   'fbsql_autocommit' => 
4429
-  array (
4429
+  array(
4430 4430
     'return' => 'bool',
4431 4431
     'params' => 'resource link_identifier [, bool OnOff]',
4432 4432
     'description' => 'Turns on auto-commit',
4433 4433
   ),
4434 4434
   'fbsql_commit' => 
4435
-  array (
4435
+  array(
4436 4436
     'return' => 'bool',
4437 4437
     'params' => '[resource link_identifier]',
4438 4438
     'description' => 'Commit the transaction',
4439 4439
   ),
4440 4440
   'fbsql_rollback' => 
4441
-  array (
4441
+  array(
4442 4442
     'return' => 'bool',
4443 4443
     'params' => '[resource link_identifier]',
4444 4444
     'description' => 'Rollback all statments since last commit',
4445 4445
   ),
4446 4446
   'fbsql_create_blob' => 
4447
-  array (
4447
+  array(
4448 4448
     'return' => 'string',
4449 4449
     'params' => 'string blob_data [, resource link_identifier]',
4450 4450
     'description' => 'Create a BLOB in the database for use with an insert or update statement',
4451 4451
   ),
4452 4452
   'fbsql_create_clob' => 
4453
-  array (
4453
+  array(
4454 4454
     'return' => 'string',
4455 4455
     'params' => 'string clob_data [, resource link_identifier]',
4456 4456
     'description' => 'Create a CLOB in the database for use with an insert or update statement',
4457 4457
   ),
4458 4458
   'fbsql_set_lob_mode' => 
4459
-  array (
4459
+  array(
4460 4460
     'return' => 'bool',
4461 4461
     'params' => 'resource result, int lob_mode',
4462 4462
     'description' => 'Sets the mode for how LOB data re retreived (actual data or a handle)',
4463 4463
   ),
4464 4464
   'fbsql_read_blob' => 
4465
-  array (
4465
+  array(
4466 4466
     'return' => 'string',
4467 4467
     'params' => 'string blob_handle [, resource link_identifier]',
4468 4468
     'description' => 'Read the BLOB data identified by blob_handle',
4469 4469
   ),
4470 4470
   'fbsql_read_clob' => 
4471
-  array (
4471
+  array(
4472 4472
     'return' => 'string',
4473 4473
     'params' => 'string clob_handle [, resource link_identifier]',
4474 4474
     'description' => 'Read the CLOB data identified by clob_handle',
4475 4475
   ),
4476 4476
   'fbsql_blob_size' => 
4477
-  array (
4477
+  array(
4478 4478
     'return' => 'int',
4479 4479
     'params' => 'string blob_handle [, resource link_identifier]',
4480 4480
     'description' => 'Get the size of a BLOB identified by blob_handle',
4481 4481
   ),
4482 4482
   'fbsql_clob_size' => 
4483
-  array (
4483
+  array(
4484 4484
     'return' => 'int',
4485 4485
     'params' => 'string clob_handle [, resource link_identifier]',
4486 4486
     'description' => 'Get the size of a CLOB identified by clob_handle',
4487 4487
   ),
4488 4488
   'fbsql_hostname' => 
4489
-  array (
4489
+  array(
4490 4490
     'return' => 'string',
4491 4491
     'params' => 'resource link_identifier [, string host_name]',
4492 4492
     'description' => 'Get or set the host name used with a connection',
4493 4493
   ),
4494 4494
   'fbsql_database' => 
4495
-  array (
4495
+  array(
4496 4496
     'return' => 'string',
4497 4497
     'params' => 'resource link_identifier [, string database]',
4498 4498
     'description' => 'Get or set the database name used with a connection',
4499 4499
   ),
4500 4500
   'fbsql_database_password' => 
4501
-  array (
4501
+  array(
4502 4502
     'return' => 'string',
4503 4503
     'params' => 'resource link_identifier [, string database_password]',
4504 4504
     'description' => 'Get or set the databsae password used with a connection',
4505 4505
   ),
4506 4506
   'fbsql_username' => 
4507
-  array (
4507
+  array(
4508 4508
     'return' => 'string',
4509 4509
     'params' => 'resource link_identifier [, string username]',
4510 4510
     'description' => 'Get or set the host user used with a connection',
4511 4511
   ),
4512 4512
   'fbsql_password' => 
4513
-  array (
4513
+  array(
4514 4514
     'return' => 'string',
4515 4515
     'params' => 'resource link_identifier [, string password]',
4516 4516
     'description' => 'Get or set the user password used with a connection',
4517 4517
   ),
4518 4518
   'fbsql_set_password' => 
4519
-  array (
4519
+  array(
4520 4520
     'return' => 'bool',
4521 4521
     'params' => 'resource link_identifier, string user, string password, string old_password',
4522 4522
     'description' => 'Change the password for a given user',
4523 4523
   ),
4524 4524
   'fbsql_select_db' => 
4525
-  array (
4525
+  array(
4526 4526
     'return' => 'bool',
4527 4527
     'params' => '[string database_name [, resource link_identifier]]',
4528 4528
     'description' => 'Select the database to open',
4529 4529
   ),
4530 4530
   'fbsql_set_characterset' => 
4531
-  array (
4531
+  array(
4532 4532
     'return' => 'void',
4533 4533
     'params' => 'resource link_identifier, long charcterset [, long in_out_both]]',
4534 4534
     'description' => 'Change input/output character set',
4535 4535
   ),
4536 4536
   'fbsql_change_user' => 
4537
-  array (
4537
+  array(
4538 4538
     'return' => 'int',
4539 4539
     'params' => 'string user, string password [, string database [, resource link_identifier]]',
4540 4540
     'description' => 'Change the user for a session',
4541 4541
   ),
4542 4542
   'fbsql_create_db' => 
4543
-  array (
4543
+  array(
4544 4544
     'return' => 'bool',
4545 4545
     'params' => 'string database_name [, resource link_identifier]',
4546 4546
     'description' => 'Create a new database on the server',
4547 4547
   ),
4548 4548
   'fbsql_drop_db' => 
4549
-  array (
4549
+  array(
4550 4550
     'return' => 'int',
4551 4551
     'params' => 'string database_name [, resource link_identifier]',
4552 4552
     'description' => 'Drop a database on the server',
4553 4553
   ),
4554 4554
   'fbsql_start_db' => 
4555
-  array (
4555
+  array(
4556 4556
     'return' => 'bool',
4557 4557
     'params' => 'string database_name [, resource link_identifier [, string database_options]]',
4558 4558
     'description' => 'Start a database on the server',
4559 4559
   ),
4560 4560
   'fbsql_stop_db' => 
4561
-  array (
4561
+  array(
4562 4562
     'return' => 'bool',
4563 4563
     'params' => 'string database_name [, resource link_identifier]',
4564 4564
     'description' => 'Stop a database on the server',
4565 4565
   ),
4566 4566
   'fbsql_db_status' => 
4567
-  array (
4567
+  array(
4568 4568
     'return' => 'int',
4569 4569
     'params' => 'string database_name [, resource link_identifier]',
4570 4570
     'description' => 'Gets the status (Stopped, Starting, Running, Stopping) for a given database',
4571 4571
   ),
4572 4572
   'fbsql_query' => 
4573
-  array (
4573
+  array(
4574 4574
     'return' => 'resource',
4575 4575
     'params' => 'string query [, resource link_identifier [, long batch_size]]',
4576 4576
     'description' => 'Send one or more SQL statements to the server and execute them',
4577 4577
   ),
4578 4578
   'fbsql_db_query' => 
4579
-  array (
4579
+  array(
4580 4580
     'return' => 'resource',
4581 4581
     'params' => 'string database_name, string query [, resource link_identifier]',
4582 4582
     'description' => 'Send one or more SQL statements to a specified database on the server',
4583 4583
   ),
4584 4584
   'fbsql_list_dbs' => 
4585
-  array (
4585
+  array(
4586 4586
     'return' => 'resource',
4587 4587
     'params' => '[resource link_identifier]',
4588 4588
     'description' => 'Retreive a list of all databases on the server',
4589 4589
   ),
4590 4590
   'fbsql_list_tables' => 
4591
-  array (
4591
+  array(
4592 4592
     'return' => 'resource',
4593 4593
     'params' => 'string database [, int link_identifier]',
4594 4594
     'description' => 'Retreive a list of all tables from the specifoied database',
4595 4595
   ),
4596 4596
   'fbsql_list_fields' => 
4597
-  array (
4597
+  array(
4598 4598
     'return' => 'resource',
4599 4599
     'params' => 'string database_name, string table_name [, resource link_identifier]',
4600 4600
     'description' => 'Retrieve a list of all fields for the specified database.table',
4601 4601
   ),
4602 4602
   'fbsql_error' => 
4603
-  array (
4603
+  array(
4604 4604
     'return' => 'string',
4605 4605
     'params' => '[resource link_identifier]',
4606 4606
     'description' => 'Returns the last error string',
4607 4607
   ),
4608 4608
   'fbsql_errno' => 
4609
-  array (
4609
+  array(
4610 4610
     'return' => 'int',
4611 4611
     'params' => '[resource link_identifier]',
4612 4612
     'description' => 'Returns the last error code',
4613 4613
   ),
4614 4614
   'fbsql_warnings' => 
4615
-  array (
4615
+  array(
4616 4616
     'return' => 'bool',
4617 4617
     'params' => '[int flag]',
4618 4618
     'description' => 'Enable or disable FrontBase warnings',
4619 4619
   ),
4620 4620
   'fbsql_affected_rows' => 
4621
-  array (
4621
+  array(
4622 4622
     'return' => 'int',
4623 4623
     'params' => '[resource link_identifier]',
4624 4624
     'description' => 'Get the number of rows affected by the last statement',
4625 4625
   ),
4626 4626
   'fbsql_insert_id' => 
4627
-  array (
4627
+  array(
4628 4628
     'return' => 'int',
4629 4629
     'params' => '[resource link_identifier]',
4630 4630
     'description' => 'Get the internal index for the last insert statement',
4631 4631
   ),
4632 4632
   'fbsql_result' => 
4633
-  array (
4633
+  array(
4634 4634
     'return' => 'mixed',
4635 4635
     'params' => 'int result [, int row [, mixed field]]',
4636 4636
     'description' => '???',
4637 4637
   ),
4638 4638
   'fbsql_next_result' => 
4639
-  array (
4639
+  array(
4640 4640
     'return' => 'bool',
4641 4641
     'params' => 'int result',
4642 4642
     'description' => 'Switch to the next result if multiple results are available',
4643 4643
   ),
4644 4644
   'fbsql_num_rows' => 
4645
-  array (
4645
+  array(
4646 4646
     'return' => 'int',
4647 4647
     'params' => 'int result',
4648 4648
     'description' => 'Get number of rows',
4649 4649
   ),
4650 4650
   'fbsql_num_fields' => 
4651
-  array (
4651
+  array(
4652 4652
     'return' => 'int',
4653 4653
     'params' => 'int result',
4654 4654
     'description' => 'Get number of fields in the result set',
4655 4655
   ),
4656 4656
   'fbsql_fetch_row' => 
4657
-  array (
4657
+  array(
4658 4658
     'return' => 'array',
4659 4659
     'params' => 'resource result',
4660 4660
     'description' => 'Fetch a row of data. Returns an indexed array',
4661 4661
   ),
4662 4662
   'fbsql_fetch_assoc' => 
4663
-  array (
4663
+  array(
4664 4664
     'return' => 'object',
4665 4665
     'params' => 'resource result',
4666 4666
     'description' => 'Detch a row of data. Returns an assoc array',
4667 4667
   ),
4668 4668
   'fbsql_fetch_object' => 
4669
-  array (
4669
+  array(
4670 4670
     'return' => 'object',
4671 4671
     'params' => 'resource result [, int result_type]',
4672 4672
     'description' => 'Fetch a row of data. Returns an object',
4673 4673
   ),
4674 4674
   'fbsql_fetch_array' => 
4675
-  array (
4675
+  array(
4676 4676
     'return' => 'array',
4677 4677
     'params' => 'resource result [, int result_type]',
4678 4678
     'description' => 'Fetches a result row as an array (associative, numeric or both)',
4679 4679
   ),
4680 4680
   'fbsql_data_seek' => 
4681
-  array (
4681
+  array(
4682 4682
     'return' => 'bool',
4683 4683
     'params' => 'int result, int row_number',
4684 4684
     'description' => 'Move the internal row counter to the specified row_number',
4685 4685
   ),
4686 4686
   'fbsql_fetch_lengths' => 
4687
-  array (
4687
+  array(
4688 4688
     'return' => 'array',
4689 4689
     'params' => 'int result',
4690 4690
     'description' => 'Returns an array of the lengths of each column in the result set',
4691 4691
   ),
4692 4692
   'fbsql_fetch_field' => 
4693
-  array (
4693
+  array(
4694 4694
     'return' => 'object',
4695 4695
     'params' => 'int result [, int field_index]',
4696 4696
     'description' => 'Get the field properties for a specified field_index',
4697 4697
   ),
4698 4698
   'fbsql_field_seek' => 
4699
-  array (
4699
+  array(
4700 4700
     'return' => 'bool',
4701 4701
     'params' => 'int result [, int field_index]',
4702 4702
     'description' => '???',
4703 4703
   ),
4704 4704
   'fbsql_field_name' => 
4705
-  array (
4705
+  array(
4706 4706
     'return' => 'string',
4707 4707
     'params' => 'int result [, int field_index]',
4708 4708
     'description' => 'Get the column name for a specified field_index',
4709 4709
   ),
4710 4710
   'fbsql_field_table' => 
4711
-  array (
4711
+  array(
4712 4712
     'return' => 'string',
4713 4713
     'params' => 'int result [, int field_index]',
4714 4714
     'description' => 'Get the table name for a specified field_index',
4715 4715
   ),
4716 4716
   'fbsql_field_len' => 
4717
-  array (
4717
+  array(
4718 4718
     'return' => 'mixed',
4719 4719
     'params' => 'int result [, int field_index]',
4720 4720
     'description' => 'Get the column length for a specified field_index',
4721 4721
   ),
4722 4722
   'fbsql_field_type' => 
4723
-  array (
4723
+  array(
4724 4724
     'return' => 'string',
4725 4725
     'params' => 'int result [, int field_index]',
4726 4726
     'description' => 'Get the field type for a specified field_index',
4727 4727
   ),
4728 4728
   'fbsql_field_flags' => 
4729
-  array (
4729
+  array(
4730 4730
     'return' => 'string',
4731 4731
     'params' => 'int result [, int field_index]',
4732 4732
     'description' => '???',
4733 4733
   ),
4734 4734
   'fbsql_table_name' => 
4735
-  array (
4735
+  array(
4736 4736
     'return' => 'string',
4737 4737
     'params' => 'resource result, int index',
4738 4738
     'description' => 'Retreive the table name for index after a call to fbsql_list_tables()',
4739 4739
   ),
4740 4740
   'fbsql_free_result' => 
4741
-  array (
4741
+  array(
4742 4742
     'return' => 'bool',
4743 4743
     'params' => 'resource result',
4744 4744
     'description' => 'free the memory used to store a result',
4745 4745
   ),
4746 4746
   'fbsql_get_autostart_info' => 
4747
-  array (
4747
+  array(
4748 4748
     'return' => 'array',
4749 4749
     'params' => '[resource link_identifier]',
4750 4750
     'description' => '???',
4751 4751
   ),
4752 4752
   'sem_get' => 
4753
-  array (
4753
+  array(
4754 4754
     'return' => 'resource',
4755 4755
     'params' => 'int key [, int max_acquire [, int perm [, int auto_release]]',
4756 4756
     'description' => 'Return an id for the semaphore with the given key, and allow max_acquire (default 1) processes to acquire it simultaneously',
4757 4757
   ),
4758 4758
   'sem_acquire' => 
4759
-  array (
4759
+  array(
4760 4760
     'return' => 'bool',
4761 4761
     'params' => 'resource id',
4762 4762
     'description' => 'Acquires the semaphore with the given id, blocking if necessary',
4763 4763
   ),
4764 4764
   'sem_release' => 
4765
-  array (
4765
+  array(
4766 4766
     'return' => 'bool',
4767 4767
     'params' => 'resource id',
4768 4768
     'description' => 'Releases the semaphore with the given id',
4769 4769
   ),
4770 4770
   'sem_remove' => 
4771
-  array (
4771
+  array(
4772 4772
     'return' => 'bool',
4773 4773
     'params' => 'resource id',
4774 4774
     'description' => 'Removes semaphore from Unix systems',
4775 4775
   ),
4776 4776
   'token_get_all' => 
4777
-  array (
4777
+  array(
4778 4778
     'return' => 'array',
4779 4779
     'params' => 'string source',
4780 4780
     'description' => '',
4781 4781
   ),
4782 4782
   'token_name' => 
4783
-  array (
4783
+  array(
4784 4784
     'return' => 'string',
4785 4785
     'params' => 'int type',
4786 4786
     'description' => '',
4787 4787
   ),
4788 4788
   'gzfile' => 
4789
-  array (
4789
+  array(
4790 4790
     'return' => 'array',
4791 4791
     'params' => 'string filename [, int use_include_path]',
4792 4792
     'description' => 'Read und uncompress entire .gz-file into an array',
4793 4793
   ),
4794 4794
   'gzopen' => 
4795
-  array (
4795
+  array(
4796 4796
     'return' => 'resource',
4797 4797
     'params' => 'string filename, string mode [, int use_include_path]',
4798 4798
     'description' => 'Open a .gz-file and return a .gz-file pointer',
4799 4799
   ),
4800 4800
   'readgzfile' => 
4801
-  array (
4801
+  array(
4802 4802
     'return' => 'int',
4803 4803
     'params' => 'string filename [, int use_include_path]',
4804 4804
     'description' => 'Output a .gz-file',
4805 4805
   ),
4806 4806
   'gzcompress' => 
4807
-  array (
4807
+  array(
4808 4808
     'return' => 'string',
4809 4809
     'params' => 'string data [, int level]',
4810 4810
     'description' => 'Gzip-compress a string',
4811 4811
   ),
4812 4812
   'gzuncompress' => 
4813
-  array (
4813
+  array(
4814 4814
     'return' => 'string',
4815 4815
     'params' => 'string data [, int length]',
4816 4816
     'description' => 'Unzip a gzip-compressed string',
4817 4817
   ),
4818 4818
   'gzdeflate' => 
4819
-  array (
4819
+  array(
4820 4820
     'return' => 'string',
4821 4821
     'params' => 'string data [, int level]',
4822 4822
     'description' => 'Gzip-compress a string',
4823 4823
   ),
4824 4824
   'gzinflate' => 
4825
-  array (
4825
+  array(
4826 4826
     'return' => 'string',
4827 4827
     'params' => 'string data [, int length]',
4828 4828
     'description' => 'Unzip a gzip-compressed string',
4829 4829
   ),
4830 4830
   'zlib_get_coding_type' => 
4831
-  array (
4831
+  array(
4832 4832
     'return' => 'string',
4833 4833
     'params' => 'void',
4834 4834
     'description' => 'Returns the coding type used for output compression',
4835 4835
   ),
4836 4836
   'gzencode' => 
4837
-  array (
4837
+  array(
4838 4838
     'return' => 'string',
4839 4839
     'params' => 'string data [, int level [, int encoding_mode]]',
4840 4840
     'description' => 'GZ encode a string',
4841 4841
   ),
4842 4842
   'ob_gzhandler' => 
4843
-  array (
4843
+  array(
4844 4844
     'return' => 'string',
4845 4845
     'params' => 'string str, int mode',
4846 4846
     'description' => 'Encode str based on accept-encoding setting - designed to be called from ob_start()',
4847 4847
   ),
4848 4848
   'msql_connect' => 
4849
-  array (
4849
+  array(
4850 4850
     'return' => 'int',
4851 4851
     'params' => '[string hostname[:port]] [, string username] [, string password]',
4852 4852
     'description' => 'Open a connection to an mSQL Server',
4853 4853
   ),
4854 4854
   'msql_pconnect' => 
4855
-  array (
4855
+  array(
4856 4856
     'return' => 'int',
4857 4857
     'params' => '[string hostname[:port]] [, string username] [, string password]',
4858 4858
     'description' => 'Open a persistent connection to an mSQL Server',
4859 4859
   ),
4860 4860
   'msql_close' => 
4861
-  array (
4861
+  array(
4862 4862
     'return' => 'bool',
4863 4863
     'params' => '[resource link_identifier]',
4864 4864
     'description' => 'Close an mSQL connection',
4865 4865
   ),
4866 4866
   'msql_select_db' => 
4867
-  array (
4867
+  array(
4868 4868
     'return' => 'bool',
4869 4869
     'params' => 'string database_name [, resource link_identifier]',
4870 4870
     'description' => 'Select an mSQL database',
4871 4871
   ),
4872 4872
   'msql_create_db' => 
4873
-  array (
4873
+  array(
4874 4874
     'return' => 'bool',
4875 4875
     'params' => 'string database_name [, resource link_identifier]',
4876 4876
     'description' => 'Create an mSQL database',
4877 4877
   ),
4878 4878
   'msql_drop_db' => 
4879
-  array (
4879
+  array(
4880 4880
     'return' => 'bool',
4881 4881
     'params' => 'string database_name [, resource link_identifier]',
4882 4882
     'description' => 'Drop (delete) an mSQL database',
4883 4883
   ),
4884 4884
   'msql_query' => 
4885
-  array (
4885
+  array(
4886 4886
     'return' => 'resource',
4887 4887
     'params' => 'string query [, resource link_identifier]',
4888 4888
     'description' => 'Send an SQL query to mSQL',
4889 4889
   ),
4890 4890
   'msql_db_query' => 
4891
-  array (
4891
+  array(
4892 4892
     'return' => 'resource',
4893 4893
     'params' => 'string database_name, string query [, resource link_identifier]',
4894 4894
     'description' => 'Send an SQL query to mSQL',
4895 4895
   ),
4896 4896
   'msql_list_dbs' => 
4897
-  array (
4897
+  array(
4898 4898
     'return' => 'resource',
4899 4899
     'params' => '[resource link_identifier]',
4900 4900
     'description' => 'List databases available on an mSQL server',
4901 4901
   ),
4902 4902
   'msql_list_tables' => 
4903
-  array (
4903
+  array(
4904 4904
     'return' => 'resource',
4905 4905
     'params' => 'string database_name [, resource link_identifier]',
4906 4906
     'description' => 'List tables in an mSQL database',
4907 4907
   ),
4908 4908
   'msql_list_fields' => 
4909
-  array (
4909
+  array(
4910 4910
     'return' => 'resource',
4911 4911
     'params' => 'string database_name, string table_name [, resource link_identifier]',
4912 4912
     'description' => 'List mSQL result fields',
4913 4913
   ),
4914 4914
   'msql_error' => 
4915
-  array (
4915
+  array(
4916 4916
     'return' => 'string',
4917 4917
     'params' => 'void',
4918 4918
     'description' => 'Returns the text of the error message from previous mSQL operation',
4919 4919
   ),
4920 4920
   'msql_result' => 
4921
-  array (
4921
+  array(
4922 4922
     'return' => 'string',
4923 4923
     'params' => 'int query, int row [, mixed field]',
4924 4924
     'description' => 'Get result data',
4925 4925
   ),
4926 4926
   'msql_num_rows' => 
4927
-  array (
4927
+  array(
4928 4928
     'return' => 'int',
4929 4929
     'params' => 'resource query',
4930 4930
     'description' => 'Get number of rows in a result',
4931 4931
   ),
4932 4932
   'msql_num_fields' => 
4933
-  array (
4933
+  array(
4934 4934
     'return' => 'int',
4935 4935
     'params' => 'resource query',
4936 4936
     'description' => 'Get number of fields in a result',
4937 4937
   ),
4938 4938
   'msql_fetch_row' => 
4939
-  array (
4939
+  array(
4940 4940
     'return' => 'array',
4941 4941
     'params' => 'resource query',
4942 4942
     'description' => 'Get a result row as an enumerated array',
4943 4943
   ),
4944 4944
   'msql_fetch_object' => 
4945
-  array (
4945
+  array(
4946 4946
     'return' => 'object',
4947 4947
     'params' => 'resource query [, resource result_type]',
4948 4948
     'description' => 'Fetch a result row as an object',
4949 4949
   ),
4950 4950
   'msql_fetch_array' => 
4951
-  array (
4951
+  array(
4952 4952
     'return' => 'array',
4953 4953
     'params' => 'resource query [, int result_type]',
4954 4954
     'description' => 'Fetch a result row as an associative array',
4955 4955
   ),
4956 4956
   'msql_data_seek' => 
4957
-  array (
4957
+  array(
4958 4958
     'return' => 'bool',
4959 4959
     'params' => 'resource query, int row_number',
4960 4960
     'description' => 'Move internal result pointer',
4961 4961
   ),
4962 4962
   'msql_fetch_field' => 
4963
-  array (
4963
+  array(
4964 4964
     'return' => 'object',
4965 4965
     'params' => 'resource query [, int field_offset]',
4966 4966
     'description' => 'Get column information from a result and return as an object',
4967 4967
   ),
4968 4968
   'msql_field_seek' => 
4969
-  array (
4969
+  array(
4970 4970
     'return' => 'bool',
4971 4971
     'params' => 'resource query, int field_offset',
4972 4972
     'description' => 'Set result pointer to a specific field offset',
4973 4973
   ),
4974 4974
   'msql_field_name' => 
4975
-  array (
4975
+  array(
4976 4976
     'return' => 'string',
4977 4977
     'params' => 'resource query, int field_index',
4978 4978
     'description' => 'Get the name of the specified field in a result',
4979 4979
   ),
4980 4980
   'msql_field_table' => 
4981
-  array (
4981
+  array(
4982 4982
     'return' => 'string',
4983 4983
     'params' => 'resource query, int field_offset',
4984 4984
     'description' => 'Get name of the table the specified field is in',
4985 4985
   ),
4986 4986
   'msql_field_len' => 
4987
-  array (
4987
+  array(
4988 4988
     'return' => 'int',
4989 4989
     'params' => 'int query, int field_offet',
4990 4990
     'description' => 'Returns the length of the specified field',
4991 4991
   ),
4992 4992
   'msql_field_type' => 
4993
-  array (
4993
+  array(
4994 4994
     'return' => 'string',
4995 4995
     'params' => 'resource query, int field_offset',
4996 4996
     'description' => 'Get the type of the specified field in a result',
4997 4997
   ),
4998 4998
   'msql_field_flags' => 
4999
-  array (
4999
+  array(
5000 5000
     'return' => 'string',
5001 5001
     'params' => 'resource query, int field_offset',
5002 5002
     'description' => 'Get the flags associated with the specified field in a result',
5003 5003
   ),
5004 5004
   'msql_free_result' => 
5005
-  array (
5005
+  array(
5006 5006
     'return' => 'bool',
5007 5007
     'params' => 'resource query',
5008 5008
     'description' => 'Free result memory',
5009 5009
   ),
5010 5010
   'msql_affected_rows' => 
5011
-  array (
5011
+  array(
5012 5012
     'return' => 'int',
5013 5013
     'params' => 'resource query',
5014 5014
     'description' => 'Return number of affected rows',
5015 5015
   ),
5016 5016
   'PDO::__construct' => 
5017
-  array (
5017
+  array(
5018 5018
     'return' => 'void',
5019 5019
     'params' => 'string dsn, string username, string passwd [, array options]',
5020 5020
     'description' => '',
5021 5021
   ),
5022 5022
   'PDO::prepare' => 
5023
-  array (
5023
+  array(
5024 5024
     'return' => 'object',
5025 5025
     'params' => 'string statment [, array options]',
5026 5026
     'description' => 'Prepares a statement for execution and returns a statement object',
5027 5027
   ),
5028 5028
   'PDO::beginTransaction' => 
5029
-  array (
5029
+  array(
5030 5030
     'return' => 'bool',
5031 5031
     'params' => '',
5032 5032
     'description' => 'Initiates a transaction',
5033 5033
   ),
5034 5034
   'PDO::commit' => 
5035
-  array (
5035
+  array(
5036 5036
     'return' => 'bool',
5037 5037
     'params' => '',
5038 5038
     'description' => 'Commit a transaction',
5039 5039
   ),
5040 5040
   'PDO::rollBack' => 
5041
-  array (
5041
+  array(
5042 5042
     'return' => 'bool',
5043 5043
     'params' => '',
5044 5044
     'description' => 'roll back a transaction',
5045 5045
   ),
5046 5046
   'PDO::setAttribute' => 
5047
-  array (
5047
+  array(
5048 5048
     'return' => 'bool',
5049 5049
     'params' => 'long attribute, mixed value',
5050 5050
     'description' => 'Set an attribute',
5051 5051
   ),
5052 5052
   'PDO::getAttribute' => 
5053
-  array (
5053
+  array(
5054 5054
     'return' => 'mixed',
5055 5055
     'params' => 'long attribute',
5056 5056
     'description' => 'Get an attribute',
5057 5057
   ),
5058 5058
   'PDO::exec' => 
5059
-  array (
5059
+  array(
5060 5060
     'return' => 'long',
5061 5061
     'params' => 'string query',
5062 5062
     'description' => 'Execute a query that does not return a row set, returning the number of affected rows',
5063 5063
   ),
5064 5064
   'PDO::lastInsertId' => 
5065
-  array (
5065
+  array(
5066 5066
     'return' => 'string',
5067 5067
     'params' => '[string seqname]',
5068 5068
     'description' => 'Returns the id of the last row that we affected on this connection.  Some databases require a sequence or table name to be passed in.  Not always meaningful.',
5069 5069
   ),
5070 5070
   'PDO::errorCode' => 
5071
-  array (
5071
+  array(
5072 5072
     'return' => 'string',
5073 5073
     'params' => '',
5074 5074
     'description' => 'Fetch the error code associated with the last operation on the database handle',
5075 5075
   ),
5076 5076
   'PDO::errorInfo' => 
5077
-  array (
5077
+  array(
5078 5078
     'return' => 'int',
5079 5079
     'params' => '',
5080 5080
     'description' => 'Fetch extended error information associated with the last operation on the database handle',
5081 5081
   ),
5082 5082
   'PDO::query' => 
5083
-  array (
5083
+  array(
5084 5084
     'return' => 'object',
5085 5085
     'params' => 'string sql [, PDOStatement::setFetchMode() args]',
5086 5086
     'description' => 'Prepare and execute $sql; returns the statement object for iteration',
5087 5087
   ),
5088 5088
   'PDO::quote' => 
5089
-  array (
5089
+  array(
5090 5090
     'return' => 'string',
5091 5091
     'params' => 'string string [, int paramtype]',
5092 5092
     'description' => 'quotes string for use in a query.  The optional paramtype acts as a hint for drivers that have alternate quoting styles.  The default value is PDO_PARAM_STR',
5093 5093
   ),
5094 5094
   'PDO::__wakeup' => 
5095
-  array (
5095
+  array(
5096 5096
     'return' => 'int',
5097 5097
     'params' => '',
5098 5098
     'description' => 'Prevents use of a PDO instance that has been unserialized',
5099 5099
   ),
5100 5100
   'PDO::__sleep' => 
5101
-  array (
5101
+  array(
5102 5102
     'return' => 'int',
5103 5103
     'params' => '',
5104 5104
     'description' => 'Prevents serialization of a PDO instance',
5105 5105
   ),
5106 5106
   'pdo_drivers' => 
5107
-  array (
5107
+  array(
5108 5108
     'return' => 'array',
5109 5109
     'params' => '',
5110 5110
     'description' => 'Return array of available PDO drivers',
5111 5111
   ),
5112 5112
   'PDOStatement::execute' => 
5113
-  array (
5113
+  array(
5114 5114
     'return' => 'bool',
5115 5115
     'params' => '[array $bound_input_params]',
5116 5116
     'description' => 'Execute a prepared statement, optionally binding parameters',
5117 5117
   ),
5118 5118
   'PDOStatement::fetch' => 
5119
-  array (
5119
+  array(
5120 5120
     'return' => 'mixed',
5121 5121
     'params' => '[int $how = PDO_FETCH_BOTH [, int $orientation [, int $offset]]]',
5122 5122
     'description' => 'Fetches the next row and returns it, or false if there are no more rows',
5123 5123
   ),
5124 5124
   'PDOStatement::fetchObject' => 
5125
-  array (
5125
+  array(
5126 5126
     'return' => 'mixed',
5127 5127
     'params' => 'string class_name [, NULL|array ctor_args]',
5128 5128
     'description' => 'Fetches the next row and returns it as an object.',
5129 5129
   ),
5130 5130
   'PDOStatement::fetchColumn' => 
5131
-  array (
5131
+  array(
5132 5132
     'return' => 'string',
5133 5133
     'params' => '[int column_number]',
5134 5134
     'description' => 'Returns a data of the specified column in the result set.',
5135 5135
   ),
5136 5136
   'PDOStatement::fetchAll' => 
5137
-  array (
5137
+  array(
5138 5138
     'return' => 'array',
5139 5139
     'params' => '[int $how = PDO_FETCH_BOTH [, string class_name [, NULL|array ctor_args]]]',
5140 5140
     'description' => 'Returns an array of all of the results.',
5141 5141
   ),
5142 5142
   'PDOStatement::bindValue' => 
5143
-  array (
5143
+  array(
5144 5144
     'return' => 'bool',
5145 5145
     'params' => 'mixed $paramno, mixed $param [, int $type ]',
5146 5146
     'description' => 'bind an input parameter to the value of a PHP variable.  $paramno is the 1-based position of the placeholder in the SQL statement (but can be the parameter name for drivers that support named placeholders).  It should be called prior to execute().',
5147 5147
   ),
5148 5148
   'PDOStatement::bindParam' => 
5149
-  array (
5149
+  array(
5150 5150
     'return' => 'bool',
5151 5151
     'params' => 'mixed $paramno, mixed &$param [, int $type [, int $maxlen [, mixed $driverdata]]]',
5152 5152
     'description' => 'bind a parameter to a PHP variable.  $paramno is the 1-based position of the placeholder in the SQL statement (but can be the parameter name for drivers that support named placeholders).  This isn\'t supported by all drivers.  It should be called prior to execute().',
5153 5153
   ),
5154 5154
   'PDOStatement::bindColumn' => 
5155
-  array (
5155
+  array(
5156 5156
     'return' => 'bool',
5157 5157
     'params' => 'mixed $column, mixed &$param [, int $type [, int $maxlen [, mixed $driverdata]]]',
5158 5158
     'description' => 'bind a column to a PHP variable.  On each row fetch $param will contain the value of the corresponding column.  $column is the 1-based offset of the column, or the column name.  For portability, don\'t call this before execute().',
5159 5159
   ),
5160 5160
   'PDOStatement::rowCount' => 
5161
-  array (
5161
+  array(
5162 5162
     'return' => 'int',
5163 5163
     'params' => '',
5164 5164
     'description' => 'Returns the number of rows in a result set, or the number of rows affected by the last execute().  It is not always meaningful.',
5165 5165
   ),
5166 5166
   'PDOStatement::errorCode' => 
5167
-  array (
5167
+  array(
5168 5168
     'return' => 'string',
5169 5169
     'params' => '',
5170 5170
     'description' => 'Fetch the error code associated with the last operation on the statement handle',
5171 5171
   ),
5172 5172
   'PDOStatement::errorInfo' => 
5173
-  array (
5173
+  array(
5174 5174
     'return' => 'array',
5175 5175
     'params' => '',
5176 5176
     'description' => 'Fetch extended error information associated with the last operation on the statement handle',
5177 5177
   ),
5178 5178
   'PDOStatement::setAttribute' => 
5179
-  array (
5179
+  array(
5180 5180
     'return' => 'bool',
5181 5181
     'params' => 'long attribute, mixed value',
5182 5182
     'description' => 'Set an attribute',
5183 5183
   ),
5184 5184
   'PDOStatement::getAttribute' => 
5185
-  array (
5185
+  array(
5186 5186
     'return' => 'mixed',
5187 5187
     'params' => 'long attribute',
5188 5188
     'description' => 'Get an attribute',
5189 5189
   ),
5190 5190
   'PDOStatement::columnCount' => 
5191
-  array (
5191
+  array(
5192 5192
     'return' => 'int',
5193 5193
     'params' => '',
5194 5194
     'description' => 'Returns the number of columns in the result set',
5195 5195
   ),
5196 5196
   'PDOStatement::getColumnMeta' => 
5197
-  array (
5197
+  array(
5198 5198
     'return' => 'array',
5199 5199
     'params' => 'int $column',
5200 5200
     'description' => 'Returns meta data for a numbered column',
5201 5201
   ),
5202 5202
   'PDOStatement::setFetchMode' => 
5203
-  array (
5203
+  array(
5204 5204
     'return' => 'bool',
5205 5205
     'params' => 'int mode [mixed* params]',
5206 5206
     'description' => 'Changes the default fetch mode for subsequent fetches (params have different meaning for different fetch modes)',
5207 5207
   ),
5208 5208
   'PDOStatement::nextRowset' => 
5209
-  array (
5209
+  array(
5210 5210
     'return' => 'bool',
5211 5211
     'params' => '',
5212 5212
     'description' => 'Advances to the next rowset in a multi-rowset statement handle. Returns true if it succeded, false otherwise',
5213 5213
   ),
5214 5214
   'PDOStatement::closeCursor' => 
5215
-  array (
5215
+  array(
5216 5216
     'return' => 'bool',
5217 5217
     'params' => '',
5218 5218
     'description' => 'Closes the cursor, leaving the statement ready for re-execution.',
5219 5219
   ),
5220 5220
   'PDOStatement::debugDumpParams' => 
5221
-  array (
5221
+  array(
5222 5222
     'return' => 'void',
5223 5223
     'params' => '',
5224 5224
     'description' => 'A utility for internals hackers to debug parameter internals',
5225 5225
   ),
5226 5226
   'PDOStatement::__wakeup' => 
5227
-  array (
5227
+  array(
5228 5228
     'return' => 'int',
5229 5229
     'params' => '',
5230 5230
     'description' => 'Prevents use of a PDOStatement instance that has been unserialized',
5231 5231
   ),
5232 5232
   'PDOStatement::__sleep' => 
5233
-  array (
5233
+  array(
5234 5234
     'return' => 'int',
5235 5235
     'params' => '',
5236 5236
     'description' => 'Prevents serialization of a PDOStatement instance',
5237 5237
   ),
5238 5238
   'xsl_xsltprocessor_import_stylesheet' => 
5239
-  array (
5239
+  array(
5240 5240
     'return' => 'void',
5241 5241
     'params' => 'domdocument doc',
5242 5242
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Since:',
5243 5243
   ),
5244 5244
   'xsl_xsltprocessor_transform_to_doc' => 
5245
-  array (
5245
+  array(
5246 5246
     'return' => 'domdocument',
5247 5247
     'params' => 'domnode doc',
5248 5248
     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Since:',
5249 5249
   ),
5250 5250
   'xsl_xsltprocessor_transform_to_uri' => 
5251
-  array (
5251
+  array(
5252 5252
     'return' => 'int',
5253 5253
     'params' => 'domdocument doc, string uri',
5254 5254
     'description' => '',
5255 5255
   ),
5256 5256
   'xsl_xsltprocessor_transform_to_xml' => 
5257
-  array (
5257
+  array(
5258 5258
     'return' => 'string',
5259 5259
     'params' => 'domdocument doc',
5260 5260
     'description' => '',
5261 5261
   ),
5262 5262
   'xsl_xsltprocessor_set_parameter' => 
5263
-  array (
5263
+  array(
5264 5264
     'return' => 'bool',
5265 5265
     'params' => 'string namespace, mixed name [, string value]',
5266 5266
     'description' => '',
5267 5267
   ),
5268 5268
   'xsl_xsltprocessor_get_parameter' => 
5269
-  array (
5269
+  array(
5270 5270
     'return' => 'string',
5271 5271
     'params' => 'string namespace, string name',
5272 5272
     'description' => '',
5273 5273
   ),
5274 5274
   'xsl_xsltprocessor_remove_parameter' => 
5275
-  array (
5275
+  array(
5276 5276
     'return' => 'bool',
5277 5277
     'params' => 'string namespace, string name',
5278 5278
     'description' => '',
5279 5279
   ),
5280 5280
   'xsl_xsltprocessor_register_php_functions' => 
5281
-  array (
5281
+  array(
5282 5282
     'return' => 'void',
5283 5283
     'params' => '',
5284 5284
     'description' => '',
5285 5285
   ),
5286 5286
   'xsl_xsltprocessor_has_exslt_support' => 
5287
-  array (
5287
+  array(
5288 5288
     'return' => 'bool',
5289 5289
     'params' => '',
5290 5290
     'description' => '',
5291 5291
   ),
5292 5292
   'libxml_set_streams_context' => 
5293
-  array (
5293
+  array(
5294 5294
     'return' => 'void',
5295 5295
     'params' => 'resource streams_context',
5296 5296
     'description' => 'Set the streams context for the next libxml document load or write',
5297 5297
   ),
5298 5298
   'libxml_use_internal_errors' => 
5299
-  array (
5299
+  array(
5300 5300
     'return' => 'void',
5301 5301
     'params' => 'boolean use_errors',
5302 5302
     'description' => 'Disable libxml errors and allow user to fetch error information as needed',
5303 5303
   ),
5304 5304
   'libxml_get_last_error' => 
5305
-  array (
5305
+  array(
5306 5306
     'return' => 'object',
5307 5307
     'params' => '',
5308 5308
     'description' => 'Retrieve last error from libxml',
5309 5309
   ),
5310 5310
   'libxml_get_errors' => 
5311
-  array (
5311
+  array(
5312 5312
     'return' => 'object',
5313 5313
     'params' => '',
5314 5314
     'description' => 'Retrieve array of errors',
5315 5315
   ),
5316 5316
   'libxml_clear_errors' => 
5317
-  array (
5317
+  array(
5318 5318
     'return' => 'void',
5319 5319
     'params' => '',
5320 5320
     'description' => 'Clear last error from libxml',
5321 5321
   ),
5322 5322
   'mssql_connect' => 
5323
-  array (
5323
+  array(
5324 5324
     'return' => 'int',
5325 5325
     'params' => '[string servername [, string username [, string password [, bool new_link]]]',
5326 5326
     'description' => 'Establishes a connection to a MS-SQL server',
5327 5327
   ),
5328 5328
   'mssql_pconnect' => 
5329
-  array (
5329
+  array(
5330 5330
     'return' => 'int',
5331 5331
     'params' => '[string servername [, string username [, string password [, bool new_link]]]]',
5332 5332
     'description' => 'Establishes a persistent connection to a MS-SQL server',
5333 5333
   ),
5334 5334
   'mssql_close' => 
5335
-  array (
5335
+  array(
5336 5336
     'return' => 'bool',
5337 5337
     'params' => '[resource conn_id]',
5338 5338
     'description' => 'Closes a connection to a MS-SQL server',
5339 5339
   ),
5340 5340
   'mssql_select_db' => 
5341
-  array (
5341
+  array(
5342 5342
     'return' => 'bool',
5343 5343
     'params' => 'string database_name [, resource conn_id]',
5344 5344
     'description' => 'Select a MS-SQL database',
5345 5345
   ),
5346 5346
   'mssql_fetch_batch' => 
5347
-  array (
5347
+  array(
5348 5348
     'return' => 'int',
5349 5349
     'params' => 'resource result_index',
5350 5350
     'description' => 'Returns the next batch of records',
5351 5351
   ),
5352 5352
   'mssql_query' => 
5353
-  array (
5353
+  array(
5354 5354
     'return' => 'resource',
5355 5355
     'params' => 'string query [, resource conn_id [, int batch_size]]',
5356 5356
     'description' => 'Perform an SQL query on a MS-SQL server database',
5357 5357
   ),
5358 5358
   'mssql_rows_affected' => 
5359
-  array (
5359
+  array(
5360 5360
     'return' => 'int',
5361 5361
     'params' => 'resource conn_id',
5362 5362
     'description' => 'Returns the number of records affected by the query',
5363 5363
   ),
5364 5364
   'mssql_free_result' => 
5365
-  array (
5365
+  array(
5366 5366
     'return' => 'bool',
5367 5367
     'params' => 'resource result_index',
5368 5368
     'description' => 'Free a MS-SQL result index',
5369 5369
   ),
5370 5370
   'mssql_get_last_message' => 
5371
-  array (
5371
+  array(
5372 5372
     'return' => 'string',
5373 5373
     'params' => 'void',
5374 5374
     'description' => 'Gets the last message from the MS-SQL server',
5375 5375
   ),
5376 5376
   'mssql_num_rows' => 
5377
-  array (
5377
+  array(
5378 5378
     'return' => 'int',
5379 5379
     'params' => 'resource mssql_result_index',
5380 5380
     'description' => 'Returns the number of rows fetched in from the result id specified',
5381 5381
   ),
5382 5382
   'mssql_num_fields' => 
5383
-  array (
5383
+  array(
5384 5384
     'return' => 'int',
5385 5385
     'params' => 'resource mssql_result_index',
5386 5386
     'description' => 'Returns the number of fields fetched in from the result id specified',
5387 5387
   ),
5388 5388
   'mssql_fetch_row' => 
5389
-  array (
5389
+  array(
5390 5390
     'return' => 'array',
5391 5391
     'params' => 'resource result_id',
5392 5392
     'description' => 'Returns an array of the current row in the result set specified by result_id',
5393 5393
   ),
5394 5394
   'mssql_fetch_object' => 
5395
-  array (
5395
+  array(
5396 5396
     'return' => 'object',
5397 5397
     'params' => 'resource result_id [, int result_type]',
5398 5398
     'description' => 'Returns a psuedo-object of the current row in the result set specified by result_id',
5399 5399
   ),
5400 5400
   'mssql_fetch_array' => 
5401
-  array (
5401
+  array(
5402 5402
     'return' => 'array',
5403 5403
     'params' => 'resource result_id [, int result_type]',
5404 5404
     'description' => 'Returns an associative array of the current row in the result set specified by result_id',
5405 5405
   ),
5406 5406
   'mssql_fetch_assoc' => 
5407
-  array (
5407
+  array(
5408 5408
     'return' => 'array',
5409 5409
     'params' => 'resource result_id',
5410 5410
     'description' => 'Returns an associative array of the current row in the result set specified by result_id',
5411 5411
   ),
5412 5412
   'mssql_data_seek' => 
5413
-  array (
5413
+  array(
5414 5414
     'return' => 'bool',
5415 5415
     'params' => 'resource result_id, int offset',
5416 5416
     'description' => 'Moves the internal row pointer of the MS-SQL result associated with the specified result identifier to pointer to the specified row number',
5417 5417
   ),
5418 5418
   'mssql_fetch_field' => 
5419
-  array (
5419
+  array(
5420 5420
     'return' => 'object',
5421 5421
     'params' => 'resource result_id [, int offset]',
5422 5422
     'description' => 'Gets information about certain fields in a query result',
5423 5423
   ),
5424 5424
   'mssql_field_length' => 
5425
-  array (
5425
+  array(
5426 5426
     'return' => 'int',
5427 5427
     'params' => 'resource result_id [, int offset]',
5428 5428
     'description' => 'Get the length of a MS-SQL field',
5429 5429
   ),
5430 5430
   'mssql_field_name' => 
5431
-  array (
5431
+  array(
5432 5432
     'return' => 'string',
5433 5433
     'params' => 'resource result_id [, int offset]',
5434 5434
     'description' => 'Returns the name of the field given by offset in the result set given by result_id',
5435 5435
   ),
5436 5436
   'mssql_field_type' => 
5437
-  array (
5437
+  array(
5438 5438
     'return' => 'string',
5439 5439
     'params' => 'resource result_id [, int offset]',
5440 5440
     'description' => 'Returns the type of a field',
5441 5441
   ),
5442 5442
   'mssql_field_seek' => 
5443
-  array (
5443
+  array(
5444 5444
     'return' => 'bool',
5445 5445
     'params' => 'int result_id, int offset',
5446 5446
     'description' => 'Seeks to the specified field offset',
5447 5447
   ),
5448 5448
   'mssql_result' => 
5449
-  array (
5449
+  array(
5450 5450
     'return' => 'string',
5451 5451
     'params' => 'resource result_id, int row, mixed field',
5452 5452
     'description' => 'Returns the contents of one cell from a MS-SQL result set',
5453 5453
   ),
5454 5454
   'mssql_next_result' => 
5455
-  array (
5455
+  array(
5456 5456
     'return' => 'bool',
5457 5457
     'params' => 'resource result_id',
5458 5458
     'description' => 'Move the internal result pointer to the next result',
5459 5459
   ),
5460 5460
   'mssql_min_error_severity' => 
5461
-  array (
5461
+  array(
5462 5462
     'return' => 'void',
5463 5463
     'params' => 'int severity',
5464 5464
     'description' => 'Sets the lower error severity',
5465 5465
   ),
5466 5466
   'mssql_min_message_severity' => 
5467
-  array (
5467
+  array(
5468 5468
     'return' => 'void',
5469 5469
     'params' => 'int severity',
5470 5470
     'description' => 'Sets the lower message severity',
5471 5471
   ),
5472 5472
   'mssql_init' => 
5473
-  array (
5473
+  array(
5474 5474
     'return' => 'int',
5475 5475
     'params' => 'string sp_name [, resource conn_id]',
5476 5476
     'description' => 'Initializes a stored procedure or a remote stored procedure',
5477 5477
   ),
5478 5478
   'mssql_bind' => 
5479
-  array (
5479
+  array(
5480 5480
     'return' => 'bool',
5481 5481
     'params' => 'resource stmt, string param_name, mixed var, int type [, int is_output [, int is_null [, int maxlen]]]',
5482 5482
     'description' => 'Adds a parameter to a stored procedure or a remote stored procedure',
5483 5483
   ),
5484 5484
   'mssql_execute' => 
5485
-  array (
5485
+  array(
5486 5486
     'return' => 'mixed',
5487 5487
     'params' => 'resource stmt [, bool skip_results = false]',
5488 5488
     'description' => 'Executes a stored procedure on a MS-SQL server database',
5489 5489
   ),
5490 5490
   'mssql_free_statement' => 
5491
-  array (
5491
+  array(
5492 5492
     'return' => 'bool',
5493 5493
     'params' => 'resource result_index',
5494 5494
     'description' => 'Free a MS-SQL statement index',
5495 5495
   ),
5496 5496
   'mssql_guid_string' => 
5497
-  array (
5497
+  array(
5498 5498
     'return' => 'string',
5499 5499
     'params' => 'string binary [,int short_format]',
5500 5500
     'description' => 'Converts a 16 byte binary GUID to a string',
5501 5501
   ),
5502 5502
   'oci_define_by_name' => 
5503
-  array (
5503
+  array(
5504 5504
     'return' => 'bool',
5505 5505
     'params' => 'resource stmt, string name, mixed &var [, int type]',
5506 5506
     'description' => 'Define a PHP variable to an Oracle column by name',
5507 5507
   ),
5508 5508
   'oci_bind_by_name' => 
5509
-  array (
5509
+  array(
5510 5510
     'return' => 'bool',
5511 5511
     'params' => 'resource stmt, string name, mixed &var, [, int maxlength [, int type]]',
5512 5512
     'description' => 'Bind a PHP variable to an Oracle placeholder by name',
5513 5513
   ),
5514 5514
   'oci_bind_array_by_name' => 
5515
-  array (
5515
+  array(
5516 5516
     'return' => 'bool',
5517 5517
     'params' => 'resource stmt, string name, array &var, int max_table_length [, int max_item_length [, int type ]]',
5518 5518
     'description' => 'Bind a PHP array to an Oracle PL/SQL type by name',
5519 5519
   ),
5520 5520
   'oci_free_descriptor' => 
5521
-  array (
5521
+  array(
5522 5522
     'return' => 'bool',
5523 5523
     'params' => '',
5524 5524
     'description' => 'Deletes large object description',
5525 5525
   ),
5526 5526
   'oci_lob_save' => 
5527
-  array (
5527
+  array(
5528 5528
     'return' => 'bool',
5529 5529
     'params' => ' string data [, int offset ]',
5530 5530
     'description' => 'Saves a large object',
5531 5531
   ),
5532 5532
   'oci_lob_import' => 
5533
-  array (
5533
+  array(
5534 5534
     'return' => 'bool',
5535 5535
     'params' => ' string filename ',
5536 5536
     'description' => 'Loads file into a LOB',
5537 5537
   ),
5538 5538
   'oci_lob_load' => 
5539
-  array (
5539
+  array(
5540 5540
     'return' => 'string',
5541 5541
     'params' => '',
5542 5542
     'description' => 'Loads a large object',
5543 5543
   ),
5544 5544
   'oci_lob_read' => 
5545
-  array (
5545
+  array(
5546 5546
     'return' => 'string',
5547 5547
     'params' => ' int length ',
5548 5548
     'description' => 'Reads particular part of a large object',
5549 5549
   ),
5550 5550
   'oci_lob_eof' => 
5551
-  array (
5551
+  array(
5552 5552
     'return' => 'bool',
5553 5553
     'params' => '',
5554 5554
     'description' => 'Checks if EOF is reached',
5555 5555
   ),
5556 5556
   'oci_lob_tell' => 
5557
-  array (
5557
+  array(
5558 5558
     'return' => 'int',
5559 5559
     'params' => '',
5560 5560
     'description' => 'Tells LOB pointer position',
5561 5561
   ),
5562 5562
   'oci_lob_rewind' => 
5563
-  array (
5563
+  array(
5564 5564
     'return' => 'bool',
5565 5565
     'params' => '',
5566 5566
     'description' => 'Rewind pointer of a LOB',
5567 5567
   ),
5568 5568
   'oci_lob_seek' => 
5569
-  array (
5569
+  array(
5570 5570
     'return' => 'bool',
5571 5571
     'params' => ' int offset [, int whence ]',
5572 5572
     'description' => 'Moves the pointer of a LOB',
5573 5573
   ),
5574 5574
   'oci_lob_size' => 
5575
-  array (
5575
+  array(
5576 5576
     'return' => 'int',
5577 5577
     'params' => '',
5578 5578
     'description' => 'Returns size of a large object',
5579 5579
   ),
5580 5580
   'oci_lob_write' => 
5581
-  array (
5581
+  array(
5582 5582
     'return' => 'int',
5583 5583
     'params' => ' string string [, int length ]',
5584 5584
     'description' => 'Writes data to current position of a LOB',
5585 5585
   ),
5586 5586
   'oci_lob_append' => 
5587
-  array (
5587
+  array(
5588 5588
     'return' => 'bool',
5589 5589
     'params' => ' object lob ',
5590 5590
     'description' => 'Appends data from a LOB to another LOB',
5591 5591
   ),
5592 5592
   'oci_lob_truncate' => 
5593
-  array (
5593
+  array(
5594 5594
     'return' => 'bool',
5595 5595
     'params' => ' [ int length ]',
5596 5596
     'description' => 'Truncates a LOB',
5597 5597
   ),
5598 5598
   'oci_lob_erase' => 
5599
-  array (
5599
+  array(
5600 5600
     'return' => 'int',
5601 5601
     'params' => ' [ int offset [, int length ] ] ',
5602 5602
     'description' => 'Erases a specified portion of the internal LOB, starting at a specified offset',
5603 5603
   ),
5604 5604
   'oci_lob_flush' => 
5605
-  array (
5605
+  array(
5606 5606
     'return' => 'bool',
5607 5607
     'params' => ' [ int flag ] ',
5608 5608
     'description' => 'Flushes the LOB buffer',
5609 5609
   ),
5610 5610
   'ocisetbufferinglob' => 
5611
-  array (
5611
+  array(
5612 5612
     'return' => 'bool',
5613 5613
     'params' => ' boolean flag ',
5614 5614
     'description' => 'Enables/disables buffering for a LOB',
5615 5615
   ),
5616 5616
   'ocigetbufferinglob' => 
5617
-  array (
5617
+  array(
5618 5618
     'return' => 'bool',
5619 5619
     'params' => '',
5620 5620
     'description' => 'Returns current state of buffering for a LOB',
5621 5621
   ),
5622 5622
   'oci_lob_copy' => 
5623
-  array (
5623
+  array(
5624 5624
     'return' => 'bool',
5625 5625
     'params' => ' object lob_to, object lob_from [, int length ] ',
5626 5626
     'description' => 'Copies data from a LOB to another LOB',
5627 5627
   ),
5628 5628
   'oci_lob_is_equal' => 
5629
-  array (
5629
+  array(
5630 5630
     'return' => 'bool',
5631 5631
     'params' => ' object lob1, object lob2 ',
5632 5632
     'description' => 'Tests to see if two LOB/FILE locators are equal',
5633 5633
   ),
5634 5634
   'oci_lob_export' => 
5635
-  array (
5635
+  array(
5636 5636
     'return' => 'bool',
5637 5637
     'params' => '[string filename [, int start [, int length]]]',
5638 5638
     'description' => 'Writes a large object into a file',
5639 5639
   ),
5640 5640
   'oci_lob_write_temporary' => 
5641
-  array (
5641
+  array(
5642 5642
     'return' => 'bool',
5643 5643
     'params' => 'string var [, int lob_type]',
5644 5644
     'description' => 'Writes temporary blob',
5645 5645
   ),
5646 5646
   'oci_lob_close' => 
5647
-  array (
5647
+  array(
5648 5648
     'return' => 'bool',
5649 5649
     'params' => '',
5650 5650
     'description' => 'Closes lob descriptor',
5651 5651
   ),
5652 5652
   'oci_new_descriptor' => 
5653
-  array (
5653
+  array(
5654 5654
     'return' => 'object',
5655 5655
     'params' => 'resource connection [, int type]',
5656 5656
     'description' => 'Initialize a new empty descriptor LOB/FILE (LOB is default)',
5657 5657
   ),
5658 5658
   'oci_rollback' => 
5659
-  array (
5659
+  array(
5660 5660
     'return' => 'bool',
5661 5661
     'params' => 'resource connection',
5662 5662
     'description' => 'Rollback the current context',
5663 5663
   ),
5664 5664
   'oci_commit' => 
5665
-  array (
5665
+  array(
5666 5666
     'return' => 'bool',
5667 5667
     'params' => 'resource connection',
5668 5668
     'description' => 'Commit the current context',
5669 5669
   ),
5670 5670
   'oci_field_name' => 
5671
-  array (
5671
+  array(
5672 5672
     'return' => 'string',
5673 5673
     'params' => 'resource stmt, int col',
5674 5674
     'description' => 'Tell the name of a column',
5675 5675
   ),
5676 5676
   'oci_field_size' => 
5677
-  array (
5677
+  array(
5678 5678
     'return' => 'int',
5679 5679
     'params' => 'resource stmt, int col',
5680 5680
     'description' => 'Tell the maximum data size of a column',
5681 5681
   ),
5682 5682
   'oci_field_scale' => 
5683
-  array (
5683
+  array(
5684 5684
     'return' => 'int',
5685 5685
     'params' => 'resource stmt, int col',
5686 5686
     'description' => 'Tell the scale of a column',
5687 5687
   ),
5688 5688
   'oci_field_precision' => 
5689
-  array (
5689
+  array(
5690 5690
     'return' => 'int',
5691 5691
     'params' => 'resource stmt, int col',
5692 5692
     'description' => 'Tell the precision of a column',
5693 5693
   ),
5694 5694
   'oci_field_type' => 
5695
-  array (
5695
+  array(
5696 5696
     'return' => 'mixed',
5697 5697
     'params' => 'resource stmt, int col',
5698 5698
     'description' => 'Tell the data type of a column',
5699 5699
   ),
5700 5700
   'oci_field_type_raw' => 
5701
-  array (
5701
+  array(
5702 5702
     'return' => 'int',
5703 5703
     'params' => 'resource stmt, int col',
5704 5704
     'description' => 'Tell the raw oracle data type of a column',
5705 5705
   ),
5706 5706
   'oci_field_is_null' => 
5707
-  array (
5707
+  array(
5708 5708
     'return' => 'bool',
5709 5709
     'params' => 'resource stmt, int col',
5710 5710
     'description' => 'Tell whether a column is NULL',
5711 5711
   ),
5712 5712
   'oci_internal_debug' => 
5713
-  array (
5713
+  array(
5714 5714
     'return' => 'void',
5715 5715
     'params' => 'int onoff',
5716 5716
     'description' => 'Toggle internal debugging output for the OCI extension',
5717 5717
   ),
5718 5718
   'oci_execute' => 
5719
-  array (
5719
+  array(
5720 5720
     'return' => 'bool',
5721 5721
     'params' => 'resource stmt [, int mode]',
5722 5722
     'description' => 'Execute a parsed statement',
5723 5723
   ),
5724 5724
   'oci_cancel' => 
5725
-  array (
5725
+  array(
5726 5726
     'return' => 'bool',
5727 5727
     'params' => 'resource stmt',
5728 5728
     'description' => 'Cancel reading from a cursor',
5729 5729
   ),
5730 5730
   'oci_fetch' => 
5731
-  array (
5731
+  array(
5732 5732
     'return' => 'bool',
5733 5733
     'params' => 'resource stmt',
5734 5734
     'description' => 'Prepare a new row of data for reading',
5735 5735
   ),
5736 5736
   'ocifetchinto' => 
5737
-  array (
5737
+  array(
5738 5738
     'return' => 'int',
5739 5739
     'params' => 'resource stmt, array &output [, int mode]',
5740 5740
     'description' => 'Fetch a row of result data into an array',
5741 5741
   ),
5742 5742
   'oci_fetch_all' => 
5743
-  array (
5743
+  array(
5744 5744
     'return' => 'int',
5745 5745
     'params' => 'resource stmt, array &output[, int skip[, int maxrows[, int flags]]]',
5746 5746
     'description' => 'Fetch all rows of result data into an array',
5747 5747
   ),
5748 5748
   'oci_fetch_object' => 
5749
-  array (
5749
+  array(
5750 5750
     'return' => 'object',
5751 5751
     'params' => ' resource stmt ',
5752 5752
     'description' => 'Fetch a result row as an object',
5753 5753
   ),
5754 5754
   'oci_fetch_row' => 
5755
-  array (
5755
+  array(
5756 5756
     'return' => 'array',
5757 5757
     'params' => ' resource stmt ',
5758 5758
     'description' => 'Fetch a result row as an enumerated array',
5759 5759
   ),
5760 5760
   'oci_fetch_assoc' => 
5761
-  array (
5761
+  array(
5762 5762
     'return' => 'array',
5763 5763
     'params' => ' resource stmt ',
5764 5764
     'description' => 'Fetch a result row as an associative array',
5765 5765
   ),
5766 5766
   'oci_fetch_array' => 
5767
-  array (
5767
+  array(
5768 5768
     'return' => 'array',
5769 5769
     'params' => ' resource stmt [, int mode ]',
5770 5770
     'description' => 'Fetch a result row as an array',
5771 5771
   ),
5772 5772
   'oci_free_statement' => 
5773
-  array (
5773
+  array(
5774 5774
     'return' => 'bool',
5775 5775
     'params' => 'resource stmt',
5776 5776
     'description' => 'Free all resources associated with a statement',
5777 5777
   ),
5778 5778
   'oci_close' => 
5779
-  array (
5779
+  array(
5780 5780
     'return' => 'bool',
5781 5781
     'params' => 'resource connection',
5782 5782
     'description' => 'Disconnect from database',
5783 5783
   ),
5784 5784
   'oci_new_connect' => 
5785
-  array (
5785
+  array(
5786 5786
     'return' => 'resource',
5787 5787
     'params' => 'string user, string pass [, string db]',
5788 5788
     'description' => 'Connect to an Oracle database and log on. Returns a new session.',
5789 5789
   ),
5790 5790
   'oci_connect' => 
5791
-  array (
5791
+  array(
5792 5792
     'return' => 'resource',
5793 5793
     'params' => 'string user, string pass [, string db [, string charset [, int session_mode ]]',
5794 5794
     'description' => 'Connect to an Oracle database and log on. Returns a new session.',
5795 5795
   ),
5796 5796
   'oci_pconnect' => 
5797
-  array (
5797
+  array(
5798 5798
     'return' => 'resource',
5799 5799
     'params' => 'string user, string pass [, string db [, string charset ]]',
5800 5800
     'description' => 'Connect to an Oracle database using a persistent connection and log on. Returns a new session.',
5801 5801
   ),
5802 5802
   'oci_error' => 
5803
-  array (
5803
+  array(
5804 5804
     'return' => 'array',
5805 5805
     'params' => '[resource stmt|connection|global]',
5806 5806
     'description' => 'Return the last error of stmt|connection|global. If no error happened returns false.',
5807 5807
   ),
5808 5808
   'oci_num_fields' => 
5809
-  array (
5809
+  array(
5810 5810
     'return' => 'int',
5811 5811
     'params' => 'resource stmt',
5812 5812
     'description' => 'Return the number of result columns in a statement',
5813 5813
   ),
5814 5814
   'oci_parse' => 
5815
-  array (
5815
+  array(
5816 5816
     'return' => 'resource',
5817 5817
     'params' => 'resource connection, string query',
5818 5818
     'description' => 'Parse a query and return a statement',
5819 5819
   ),
5820 5820
   'oci_set_prefetch' => 
5821
-  array (
5821
+  array(
5822 5822
     'return' => 'bool',
5823 5823
     'params' => 'resource stmt, int prefetch_rows',
5824 5824
     'description' => 'Sets the number of rows to be prefetched on execute to prefetch_rows for stmt',
5825 5825
   ),
5826 5826
   'oci_password_change' => 
5827
-  array (
5827
+  array(
5828 5828
     'return' => 'bool',
5829 5829
     'params' => 'resource connection, string username, string old_password, string new_password',
5830 5830
     'description' => 'Changes the password of an account',
5831 5831
   ),
5832 5832
   'oci_new_cursor' => 
5833
-  array (
5833
+  array(
5834 5834
     'return' => 'resource',
5835 5835
     'params' => 'resource connection',
5836 5836
     'description' => 'Return a new cursor (Statement-Handle) - use this to bind ref-cursors!',
5837 5837
   ),
5838 5838
   'oci_result' => 
5839
-  array (
5839
+  array(
5840 5840
     'return' => 'string',
5841 5841
     'params' => 'resource stmt, mixed column',
5842 5842
     'description' => 'Return a single column of result data',
5843 5843
   ),
5844 5844
   'oci_server_version' => 
5845
-  array (
5845
+  array(
5846 5846
     'return' => 'string',
5847 5847
     'params' => 'resource connection',
5848 5848
     'description' => 'Return a string containing server version information',
5849 5849
   ),
5850 5850
   'oci_statement_type' => 
5851
-  array (
5851
+  array(
5852 5852
     'return' => 'string',
5853 5853
     'params' => 'resource stmt',
5854 5854
     'description' => 'Return the query type of an OCI statement',
5855 5855
   ),
5856 5856
   'oci_num_rows' => 
5857
-  array (
5857
+  array(
5858 5858
     'return' => 'int',
5859 5859
     'params' => 'resource stmt',
5860 5860
     'description' => 'Return the row count of an OCI statement',
5861 5861
   ),
5862 5862
   'oci_free_collection' => 
5863
-  array (
5863
+  array(
5864 5864
     'return' => 'bool',
5865 5865
     'params' => '',
5866 5866
     'description' => 'Deletes collection object',
5867 5867
   ),
5868 5868
   'oci_collection_append' => 
5869
-  array (
5869
+  array(
5870 5870
     'return' => 'bool',
5871 5871
     'params' => 'string value',
5872 5872
     'description' => 'Append an object to the collection',
5873 5873
   ),
5874 5874
   'oci_collection_element_get' => 
5875
-  array (
5875
+  array(
5876 5876
     'return' => 'string',
5877 5877
     'params' => 'int ndx',
5878 5878
     'description' => 'Retrieve the value at collection index ndx',
5879 5879
   ),
5880 5880
   'oci_collection_assign' => 
5881
-  array (
5881
+  array(
5882 5882
     'return' => 'bool',
5883 5883
     'params' => 'object from',
5884 5884
     'description' => 'Assign a collection from another existing collection',
5885 5885
   ),
5886 5886
   'oci_collection_element_assign' => 
5887
-  array (
5887
+  array(
5888 5888
     'return' => 'bool',
5889 5889
     'params' => 'int index, string val',
5890 5890
     'description' => 'Assign element val to collection at index ndx',
5891 5891
   ),
5892 5892
   'oci_collection_size' => 
5893
-  array (
5893
+  array(
5894 5894
     'return' => 'int',
5895 5895
     'params' => '',
5896 5896
     'description' => 'Return the size of a collection',
5897 5897
   ),
5898 5898
   'oci_collection_max' => 
5899
-  array (
5899
+  array(
5900 5900
     'return' => 'int',
5901 5901
     'params' => '',
5902 5902
     'description' => 'Return the max value of a collection. For a varray this is the maximum length of the array',
5903 5903
   ),
5904 5904
   'oci_collection_trim' => 
5905
-  array (
5905
+  array(
5906 5906
     'return' => 'bool',
5907 5907
     'params' => 'int num',
5908 5908
     'description' => 'Trim num elements from the end of a collection',
5909 5909
   ),
5910 5910
   'oci_new_collection' => 
5911
-  array (
5911
+  array(
5912 5912
     'return' => 'object',
5913 5913
     'params' => 'resource connection, string tdo [, string schema]',
5914 5914
     'description' => 'Initialize a new collection',
5915 5915
   ),
5916 5916
   'mb_language' => 
5917
-  array (
5917
+  array(
5918 5918
     'return' => 'string',
5919 5919
     'params' => '[string language]',
5920 5920
     'description' => 'Sets the current language or Returns the current language as a string',
5921 5921
   ),
5922 5922
   'mb_internal_encoding' => 
5923
-  array (
5923
+  array(
5924 5924
     'return' => 'string',
5925 5925
     'params' => '[string encoding]',
5926 5926
     'description' => 'Sets the current internal encoding or Returns the current internal encoding as a string',
5927 5927
   ),
5928 5928
   'mb_http_input' => 
5929
-  array (
5929
+  array(
5930 5930
     'return' => 'mixed',
5931 5931
     'params' => '[string type]',
5932 5932
     'description' => 'Returns the input encoding',
5933 5933
   ),
5934 5934
   'mb_http_output' => 
5935
-  array (
5935
+  array(
5936 5936
     'return' => 'string',
5937 5937
     'params' => '[string encoding]',
5938 5938
     'description' => 'Sets the current output_encoding or returns the current output_encoding as a string',
5939 5939
   ),
5940 5940
   'mb_detect_order' => 
5941
-  array (
5941
+  array(
5942 5942
     'return' => 'bool|array',
5943 5943
     'params' => '[mixed encoding-list]',
5944 5944
     'description' => 'Sets the current detect_order or Return the current detect_order as a array',
5945 5945
   ),
5946 5946
   'mb_substitute_character' => 
5947
-  array (
5947
+  array(
5948 5948
     'return' => 'mixed',
5949 5949
     'params' => '[mixed substchar]',
5950 5950
     'description' => 'Sets the current substitute_character or returns the current substitute_character',
5951 5951
   ),
5952 5952
   'mb_preferred_mime_name' => 
5953
-  array (
5953
+  array(
5954 5954
     'return' => 'string',
5955 5955
     'params' => 'string encoding',
5956 5956
     'description' => 'Return the preferred MIME name (charset) as a string',
5957 5957
   ),
5958 5958
   'mb_parse_str' => 
5959
-  array (
5959
+  array(
5960 5960
     'return' => 'bool',
5961 5961
     'params' => 'string encoded_string [, array result]',
5962 5962
     'description' => 'Parses GET/POST/COOKIE data and sets global variables',
5963 5963
   ),
5964 5964
   'mb_output_handler' => 
5965
-  array (
5965
+  array(
5966 5966
     'return' => 'string',
5967 5967
     'params' => 'string contents, int status',
5968 5968
     'description' => 'Returns string in output buffer converted to the http_output encoding',
5969 5969
   ),
5970 5970
   'mb_strlen' => 
5971
-  array (
5971
+  array(
5972 5972
     'return' => 'int',
5973 5973
     'params' => 'string str [, string encoding]',
5974 5974
     'description' => 'Get character numbers of a string',
5975 5975
   ),
5976 5976
   'mb_strpos' => 
5977
-  array (
5977
+  array(
5978 5978
     'return' => 'int',
5979 5979
     'params' => 'string haystack, string needle [, int offset [, string encoding]]',
5980 5980
     'description' => 'Find position of first occurrence of a string within another',
5981 5981
   ),
5982 5982
   'mb_strrpos' => 
5983
-  array (
5983
+  array(
5984 5984
     'return' => 'int',
5985 5985
     'params' => 'string haystack, string needle [, string encoding]',
5986 5986
     'description' => 'Find the last occurrence of a character in a string within another',
5987 5987
   ),
5988 5988
   'mb_substr_count' => 
5989
-  array (
5989
+  array(
5990 5990
     'return' => 'int',
5991 5991
     'params' => 'string haystack, string needle [, string encoding]',
5992 5992
     'description' => 'Count the number of substring occurrences',
5993 5993
   ),
5994 5994
   'mb_substr' => 
5995
-  array (
5995
+  array(
5996 5996
     'return' => 'string',
5997 5997
     'params' => 'string str, int start [, int length [, string encoding]]',
5998 5998
     'description' => 'Returns part of a string',
5999 5999
   ),
6000 6000
   'mb_strcut' => 
6001
-  array (
6001
+  array(
6002 6002
     'return' => 'string',
6003 6003
     'params' => 'string str, int start [, int length [, string encoding]]',
6004 6004
     'description' => 'Returns part of a string',
6005 6005
   ),
6006 6006
   'mb_strwidth' => 
6007
-  array (
6007
+  array(
6008 6008
     'return' => 'int',
6009 6009
     'params' => 'string str [, string encoding]',
6010 6010
     'description' => 'Gets terminal width of a string',
6011 6011
   ),
6012 6012
   'mb_strimwidth' => 
6013
-  array (
6013
+  array(
6014 6014
     'return' => 'string',
6015 6015
     'params' => 'string str, int start, int width [, string trimmarker [, string encoding]]',
6016 6016
     'description' => 'Trim the string in terminal width',
6017 6017
   ),
6018 6018
   'mb_convert_encoding' => 
6019
-  array (
6019
+  array(
6020 6020
     'return' => 'string',
6021 6021
     'params' => 'string str, string to-encoding [, mixed from-encoding]',
6022 6022
     'description' => 'Returns converted string in desired encoding',
6023 6023
   ),
6024 6024
   'mb_convert_case' => 
6025
-  array (
6025
+  array(
6026 6026
     'return' => 'string',
6027 6027
     'params' => 'string sourcestring, int mode [, string encoding]',
6028 6028
     'description' => 'Returns a case-folded version of sourcestring',
6029 6029
   ),
6030 6030
   'mb_strtoupper' => 
6031
-  array (
6031
+  array(
6032 6032
     'return' => 'string',
6033 6033
     'params' => 'string sourcestring [, string encoding]',
6034 6034
     'description' => '*  Returns a uppercased version of sourcestring',
6035 6035
   ),
6036 6036
   'mb_strtolower' => 
6037
-  array (
6037
+  array(
6038 6038
     'return' => 'string',
6039 6039
     'params' => 'string sourcestring [, string encoding]',
6040 6040
     'description' => '*  Returns a lowercased version of sourcestring',
6041 6041
   ),
6042 6042
   'mb_detect_encoding' => 
6043
-  array (
6043
+  array(
6044 6044
     'return' => 'string',
6045 6045
     'params' => 'string str [, mixed encoding_list [, bool strict]]',
6046 6046
     'description' => 'Encodings of the given string is returned (as a string)',
6047 6047
   ),
6048 6048
   'mb_list_encodings' => 
6049
-  array (
6049
+  array(
6050 6050
     'return' => 'array',
6051 6051
     'params' => '',
6052 6052
     'description' => 'Returns an array of all supported encodings',
6053 6053
   ),
6054 6054
   'mb_encode_mimeheader' => 
6055
-  array (
6055
+  array(
6056 6056
     'return' => 'string',
6057 6057
     'params' => 'string str [, string charset [, string transfer-encoding [, string linefeed [, int indent]]]]',
6058 6058
     'description' => 'Converts the string to MIME "encoded-word" in the format of =?charset?(B|Q)?encoded_string?=',
6059 6059
   ),
6060 6060
   'mb_decode_mimeheader' => 
6061
-  array (
6061
+  array(
6062 6062
     'return' => 'string',
6063 6063
     'params' => 'string string',
6064 6064
     'description' => 'Decodes the MIME "encoded-word" in the string',
6065 6065
   ),
6066 6066
   'mb_convert_kana' => 
6067
-  array (
6067
+  array(
6068 6068
     'return' => 'string',
6069 6069
     'params' => 'string str [, string option] [, string encoding]',
6070 6070
     'description' => 'Conversion between full-width character and half-width character (Japanese)',
6071 6071
   ),
6072 6072
   'mb_convert_variables' => 
6073
-  array (
6073
+  array(
6074 6074
     'return' => 'string',
6075 6075
     'params' => 'string to-encoding, mixed from-encoding [, mixed ...]',
6076 6076
     'description' => 'Converts the string resource in variables to desired encoding',
6077 6077
   ),
6078 6078
   'mb_encode_numericentity' => 
6079
-  array (
6079
+  array(
6080 6080
     'return' => 'string',
6081 6081
     'params' => 'string string, array convmap [, string encoding]',
6082 6082
     'description' => 'Converts specified characters to HTML numeric entities',
6083 6083
   ),
6084 6084
   'mb_decode_numericentity' => 
6085
-  array (
6085
+  array(
6086 6086
     'return' => 'string',
6087 6087
     'params' => 'string string, array convmap [, string encoding]',
6088 6088
     'description' => 'Converts HTML numeric entities to character code',
6089 6089
   ),
6090 6090
   'mb_send_mail' => 
6091
-  array (
6091
+  array(
6092 6092
     'return' => 'int',
6093 6093
     'params' => 'string to, string subject, string message [, string additional_headers [, string additional_parameters]]',
6094 6094
     'description' => '*  Sends an email message with MIME scheme',
6095 6095
   ),
6096 6096
   'mb_get_info' => 
6097
-  array (
6097
+  array(
6098 6098
     'return' => 'mixed',
6099 6099
     'params' => '[string type]',
6100 6100
     'description' => 'Returns the current settings of mbstring',
6101 6101
   ),
6102 6102
   'mb_check_encoding' => 
6103
-  array (
6103
+  array(
6104 6104
     'return' => 'bool',
6105 6105
     'params' => '[string var[, string encoding]]',
6106 6106
     'description' => 'Check if the string is valid for the specified encoding',
6107 6107
   ),
6108 6108
   'mb_regex_encoding' => 
6109
-  array (
6109
+  array(
6110 6110
     'return' => 'string',
6111 6111
     'params' => '[string encoding]',
6112 6112
     'description' => 'Returns the current encoding for regex as a string.',
6113 6113
   ),
6114 6114
   'mb_ereg' => 
6115
-  array (
6115
+  array(
6116 6116
     'return' => 'int',
6117 6117
     'params' => 'string pattern, string string [, array registers]',
6118 6118
     'description' => 'Regular expression match for multibyte string',
6119 6119
   ),
6120 6120
   'mb_eregi' => 
6121
-  array (
6121
+  array(
6122 6122
     'return' => 'int',
6123 6123
     'params' => 'string pattern, string string [, array registers]',
6124 6124
     'description' => 'Case-insensitive regular expression match for multibyte string',
6125 6125
   ),
6126 6126
   'mb_ereg_replace' => 
6127
-  array (
6127
+  array(
6128 6128
     'return' => 'string',
6129 6129
     'params' => 'string pattern, string replacement, string string [, string option]',
6130 6130
     'description' => 'Replace regular expression for multibyte string',
6131 6131
   ),
6132 6132
   'mb_eregi_replace' => 
6133
-  array (
6133
+  array(
6134 6134
     'return' => 'string',
6135 6135
     'params' => 'string pattern, string replacement, string string',
6136 6136
     'description' => 'Case insensitive replace regular expression for multibyte string',
6137 6137
   ),
6138 6138
   'mb_split' => 
6139
-  array (
6139
+  array(
6140 6140
     'return' => 'array',
6141 6141
     'params' => 'string pattern, string string [, int limit]',
6142 6142
     'description' => 'split multibyte string into array by regular expression',
6143 6143
   ),
6144 6144
   'mb_ereg_match' => 
6145
-  array (
6145
+  array(
6146 6146
     'return' => 'bool',
6147 6147
     'params' => 'string pattern, string string [,string option]',
6148 6148
     'description' => 'Regular expression match for multibyte string',
6149 6149
   ),
6150 6150
   'mb_ereg_search' => 
6151
-  array (
6151
+  array(
6152 6152
     'return' => 'bool',
6153 6153
     'params' => '[string pattern[, string option]]',
6154 6154
     'description' => 'Regular expression search for multibyte string',
6155 6155
   ),
6156 6156
   'mb_ereg_search_pos' => 
6157
-  array (
6157
+  array(
6158 6158
     'return' => 'array',
6159 6159
     'params' => '[string pattern[, string option]]',
6160 6160
     'description' => 'Regular expression search for multibyte string',
6161 6161
   ),
6162 6162
   'mb_ereg_search_regs' => 
6163
-  array (
6163
+  array(
6164 6164
     'return' => 'array',
6165 6165
     'params' => '[string pattern[, string option]]',
6166 6166
     'description' => 'Regular expression search for multibyte string',
6167 6167
   ),
6168 6168
   'mb_ereg_search_init' => 
6169
-  array (
6169
+  array(
6170 6170
     'return' => 'bool',
6171 6171
     'params' => 'string string [, string pattern[, string option]]',
6172 6172
     'description' => 'Initialize string and regular expression for search.',
6173 6173
   ),
6174 6174
   'mb_ereg_search_getregs' => 
6175
-  array (
6175
+  array(
6176 6176
     'return' => 'array',
6177 6177
     'params' => 'void',
6178 6178
     'description' => 'Get matched substring of the last time',
6179 6179
   ),
6180 6180
   'mb_ereg_search_getpos' => 
6181
-  array (
6181
+  array(
6182 6182
     'return' => 'int',
6183 6183
     'params' => 'void',
6184 6184
     'description' => 'Get search start position',
6185 6185
   ),
6186 6186
   'mb_ereg_search_setpos' => 
6187
-  array (
6187
+  array(
6188 6188
     'return' => 'bool',
6189 6189
     'params' => 'int position',
6190 6190
     'description' => 'Set search start position',
6191 6191
   ),
6192 6192
   'mb_regex_set_options' => 
6193
-  array (
6193
+  array(
6194 6194
     'return' => 'string',
6195 6195
     'params' => '[string options]',
6196 6196
     'description' => 'Set or get the default options for mbregex functions',
6197 6197
   ),
6198 6198
   'preg_match' => 
6199
-  array (
6199
+  array(
6200 6200
     'return' => 'int',
6201 6201
     'params' => 'string pattern, string subject [, array subpatterns [, int flags [, int offset]]]',
6202 6202
     'description' => 'Perform a Perl-style regular expression match',
6203 6203
   ),
6204 6204
   'preg_match_all' => 
6205
-  array (
6205
+  array(
6206 6206
     'return' => 'int',
6207 6207
     'params' => 'string pattern, string subject, array subpatterns [, int flags [, int offset]]',
6208 6208
     'description' => 'Perform a Perl-style global regular expression match',
6209 6209
   ),
6210 6210
   'preg_replace' => 
6211
-  array (
6211
+  array(
6212 6212
     'return' => 'string',
6213 6213
     'params' => 'mixed regex, mixed replace, mixed subject [, int limit [, count]]',
6214 6214
     'description' => 'Perform Perl-style regular expression replacement.',
6215 6215
   ),
6216 6216
   'preg_replace_callback' => 
6217
-  array (
6217
+  array(
6218 6218
     'return' => 'string',
6219 6219
     'params' => 'mixed regex, mixed callback, mixed subject [, int limit [, count]]',
6220 6220
     'description' => 'Perform Perl-style regular expression replacement using replacement callback.',
6221 6221
   ),
6222 6222
   'preg_split' => 
6223
-  array (
6223
+  array(
6224 6224
     'return' => 'array',
6225 6225
     'params' => 'string pattern, string subject [, int limit [, int flags]]',
6226 6226
     'description' => 'Split string into an array using a perl-style regular expression as a delimiter',
6227 6227
   ),
6228 6228
   'preg_quote' => 
6229
-  array (
6229
+  array(
6230 6230
     'return' => 'string',
6231 6231
     'params' => 'string str, string delim_char',
6232 6232
     'description' => 'Quote regular expression characters plus an optional character',
6233 6233
   ),
6234 6234
   'preg_grep' => 
6235
-  array (
6235
+  array(
6236 6236
     'return' => 'array',
6237 6237
     'params' => 'string regex, array input',
6238 6238
     'description' => 'Searches array and returns entries which match regex',
6239 6239
   ),
6240 6240
   'pcntl_fork' => 
6241
-  array (
6241
+  array(
6242 6242
     'return' => 'int',
6243 6243
     'params' => 'void',
6244 6244
     'description' => 'Forks the currently running process following the same behavior as the UNIX fork() system call',
6245 6245
   ),
6246 6246
   'pcntl_alarm' => 
6247
-  array (
6247
+  array(
6248 6248
     'return' => 'int',
6249 6249
     'params' => 'int seconds',
6250 6250
     'description' => 'Set an alarm clock for delivery of a signal',
6251 6251
   ),
6252 6252
   'pcntl_waitpid' => 
6253
-  array (
6253
+  array(
6254 6254
     'return' => 'int',
6255 6255
     'params' => 'int pid, int &status, int options',
6256 6256
     'description' => 'Waits on or returns the status of a forked child as defined by the waitpid() system call',
6257 6257
   ),
6258 6258
   'pcntl_wait' => 
6259
-  array (
6259
+  array(
6260 6260
     'return' => 'int',
6261 6261
     'params' => 'int &status',
6262 6262
     'description' => 'Waits on or returns the status of a forked child as defined by the waitpid() system call',
6263 6263
   ),
6264 6264
   'pcntl_wifexited' => 
6265
-  array (
6265
+  array(
6266 6266
     'return' => 'bool',
6267 6267
     'params' => 'int status',
6268 6268
     'description' => 'Returns true if the child status code represents a successful exit',
6269 6269
   ),
6270 6270
   'pcntl_wifstopped' => 
6271
-  array (
6271
+  array(
6272 6272
     'return' => 'bool',
6273 6273
     'params' => 'int status',
6274 6274
     'description' => 'Returns true if the child status code represents a stopped process (WUNTRACED must have been used with waitpid)',
6275 6275
   ),
6276 6276
   'pcntl_wifsignaled' => 
6277
-  array (
6277
+  array(
6278 6278
     'return' => 'bool',
6279 6279
     'params' => 'int status',
6280 6280
     'description' => 'Returns true if the child status code represents a process that was terminated due to a signal',
6281 6281
   ),
6282 6282
   'pcntl_wexitstatus' => 
6283
-  array (
6283
+  array(
6284 6284
     'return' => 'int',
6285 6285
     'params' => 'int status',
6286 6286
     'description' => 'Returns the status code of a child\'s exit',
6287 6287
   ),
6288 6288
   'pcntl_wtermsig' => 
6289
-  array (
6289
+  array(
6290 6290
     'return' => 'int',
6291 6291
     'params' => 'int status',
6292 6292
     'description' => 'Returns the number of the signal that terminated the process who\'s status code is passed',
6293 6293
   ),
6294 6294
   'pcntl_wstopsig' => 
6295
-  array (
6295
+  array(
6296 6296
     'return' => 'int',
6297 6297
     'params' => 'int status',
6298 6298
     'description' => 'Returns the number of the signal that caused the process to stop who\'s status code is passed',
6299 6299
   ),
6300 6300
   'pcntl_exec' => 
6301
-  array (
6301
+  array(
6302 6302
     'return' => 'bool',
6303 6303
     'params' => 'string path [, array args [, array envs]]',
6304 6304
     'description' => 'Executes specified program in current process space as defined by exec(2)',
6305 6305
   ),
6306 6306
   'pcntl_signal' => 
6307
-  array (
6307
+  array(
6308 6308
     'return' => 'bool',
6309 6309
     'params' => 'int signo, callback handle [, bool restart_syscalls]',
6310 6310
     'description' => 'Assigns a system signal handler to a PHP function',
6311 6311
   ),
6312 6312
   'pcntl_getpriority' => 
6313
-  array (
6313
+  array(
6314 6314
     'return' => 'int',
6315 6315
     'params' => '[int pid [, int process_identifier]]',
6316 6316
     'description' => 'Get the priority of any process',
6317 6317
   ),
6318 6318
   'pcntl_setpriority' => 
6319
-  array (
6319
+  array(
6320 6320
     'return' => 'bool',
6321 6321
     'params' => 'int priority [, int pid [, int process_identifier]]',
6322 6322
     'description' => 'Change the priority of any process',
6323 6323
   ),
6324 6324
   'mcrypt_module_open' => 
6325
-  array (
6325
+  array(
6326 6326
     'return' => 'resource',
6327 6327
     'params' => 'string cipher, string cipher_directory, string mode, string mode_directory',
6328 6328
     'description' => 'Opens the module of the algorithm and the mode to be used',
6329 6329
   ),
6330 6330
   'mcrypt_generic_init' => 
6331
-  array (
6331
+  array(
6332 6332
     'return' => 'int',
6333 6333
     'params' => 'resource td, string key, string iv',
6334 6334
     'description' => 'This function initializes all buffers for the specific module',
6335 6335
   ),
6336 6336
   'mcrypt_generic' => 
6337
-  array (
6337
+  array(
6338 6338
     'return' => 'string',
6339 6339
     'params' => 'resource td, string data',
6340 6340
     'description' => 'This function encrypts the plaintext',
6341 6341
   ),
6342 6342
   'mdecrypt_generic' => 
6343
-  array (
6343
+  array(
6344 6344
     'return' => 'string',
6345 6345
     'params' => 'resource td, string data',
6346 6346
     'description' => 'This function decrypts the plaintext',
6347 6347
   ),
6348 6348
   'mcrypt_enc_get_supported_key_sizes' => 
6349
-  array (
6349
+  array(
6350 6350
     'return' => 'array',
6351 6351
     'params' => 'resource td',
6352 6352
     'description' => 'This function decrypts the crypttext',
6353 6353
   ),
6354 6354
   'mcrypt_enc_self_test' => 
6355
-  array (
6355
+  array(
6356 6356
     'return' => 'int',
6357 6357
     'params' => 'resource td',
6358 6358
     'description' => 'This function runs the self test on the algorithm specified by the descriptor td',
6359 6359
   ),
6360 6360
   'mcrypt_module_close' => 
6361
-  array (
6361
+  array(
6362 6362
     'return' => 'bool',
6363 6363
     'params' => 'resource td',
6364 6364
     'description' => 'Free the descriptor td',
6365 6365
   ),
6366 6366
   'mcrypt_generic_end' => 
6367
-  array (
6367
+  array(
6368 6368
     'return' => 'bool',
6369 6369
     'params' => 'resource td',
6370 6370
     'description' => 'This function terminates encrypt specified by the descriptor td',
6371 6371
   ),
6372 6372
   'mcrypt_generic_deinit' => 
6373
-  array (
6373
+  array(
6374 6374
     'return' => 'bool',
6375 6375
     'params' => 'resource td',
6376 6376
     'description' => 'This function terminates encrypt specified by the descriptor td',
6377 6377
   ),
6378 6378
   'mcrypt_enc_is_block_algorithm_mode' => 
6379
-  array (
6379
+  array(
6380 6380
     'return' => 'bool',
6381 6381
     'params' => 'resource td',
6382 6382
     'description' => 'Returns TRUE if the mode is for use with block algorithms',
6383 6383
   ),
6384 6384
   'mcrypt_enc_is_block_algorithm' => 
6385
-  array (
6385
+  array(
6386 6386
     'return' => 'bool',
6387 6387
     'params' => 'resource td',
6388 6388
     'description' => 'Returns TRUE if the alrogithm is a block algorithms',
6389 6389
   ),
6390 6390
   'mcrypt_enc_is_block_mode' => 
6391
-  array (
6391
+  array(
6392 6392
     'return' => 'bool',
6393 6393
     'params' => 'resource td',
6394 6394
     'description' => 'Returns TRUE if the mode outputs blocks',
6395 6395
   ),
6396 6396
   'mcrypt_enc_get_block_size' => 
6397
-  array (
6397
+  array(
6398 6398
     'return' => 'int',
6399 6399
     'params' => 'resource td',
6400 6400
     'description' => 'Returns the block size of the cipher specified by the descriptor td',
6401 6401
   ),
6402 6402
   'mcrypt_enc_get_key_size' => 
6403
-  array (
6403
+  array(
6404 6404
     'return' => 'int',
6405 6405
     'params' => 'resource td',
6406 6406
     'description' => 'Returns the maximum supported key size in bytes of the algorithm specified by the descriptor td',
6407 6407
   ),
6408 6408
   'mcrypt_enc_get_iv_size' => 
6409
-  array (
6409
+  array(
6410 6410
     'return' => 'int',
6411 6411
     'params' => 'resource td',
6412 6412
     'description' => 'Returns the size of the IV in bytes of the algorithm specified by the descriptor td',
6413 6413
   ),
6414 6414
   'mcrypt_enc_get_algorithms_name' => 
6415
-  array (
6415
+  array(
6416 6416
     'return' => 'string',
6417 6417
     'params' => 'resource td',
6418 6418
     'description' => 'Returns the name of the algorithm specified by the descriptor td',
6419 6419
   ),
6420 6420
   'mcrypt_enc_get_modes_name' => 
6421
-  array (
6421
+  array(
6422 6422
     'return' => 'string',
6423 6423
     'params' => 'resource td',
6424 6424
     'description' => 'Returns the name of the mode specified by the descriptor td',
6425 6425
   ),
6426 6426
   'mcrypt_module_self_test' => 
6427
-  array (
6427
+  array(
6428 6428
     'return' => 'bool',
6429 6429
     'params' => 'string algorithm [, string lib_dir]',
6430 6430
     'description' => 'Does a self test of the module "module"',
6431 6431
   ),
6432 6432
   'mcrypt_module_is_block_algorithm_mode' => 
6433
-  array (
6433
+  array(
6434 6434
     'return' => 'bool',
6435 6435
     'params' => 'string mode [, string lib_dir]',
6436 6436
     'description' => 'Returns TRUE if the mode is for use with block algorithms',
6437 6437
   ),
6438 6438
   'mcrypt_module_is_block_algorithm' => 
6439
-  array (
6439
+  array(
6440 6440
     'return' => 'bool',
6441 6441
     'params' => 'string algorithm [, string lib_dir]',
6442 6442
     'description' => 'Returns TRUE if the algorithm is a block algorithm',
6443 6443
   ),
6444 6444
   'mcrypt_module_is_block_mode' => 
6445
-  array (
6445
+  array(
6446 6446
     'return' => 'bool',
6447 6447
     'params' => 'string mode [, string lib_dir]',
6448 6448
     'description' => 'Returns TRUE if the mode outputs blocks of bytes',
6449 6449
   ),
6450 6450
   'mcrypt_module_get_algo_block_size' => 
6451
-  array (
6451
+  array(
6452 6452
     'return' => 'int',
6453 6453
     'params' => 'string algorithm [, string lib_dir]',
6454 6454
     'description' => 'Returns the block size of the algorithm',
6455 6455
   ),
6456 6456
   'mcrypt_module_get_algo_key_size' => 
6457
-  array (
6457
+  array(
6458 6458
     'return' => 'int',
6459 6459
     'params' => 'string algorithm [, string lib_dir]',
6460 6460
     'description' => 'Returns the maximum supported key size of the algorithm',
6461 6461
   ),
6462 6462
   'mcrypt_module_get_supported_key_sizes' => 
6463
-  array (
6463
+  array(
6464 6464
     'return' => 'array',
6465 6465
     'params' => 'string algorithm [, string lib_dir]',
6466 6466
     'description' => 'This function decrypts the crypttext',
6467 6467
   ),
6468 6468
   'mcrypt_list_algorithms' => 
6469
-  array (
6469
+  array(
6470 6470
     'return' => 'array',
6471 6471
     'params' => '[string lib_dir]',
6472 6472
     'description' => 'List all algorithms in "module_dir"',
6473 6473
   ),
6474 6474
   'mcrypt_list_modes' => 
6475
-  array (
6475
+  array(
6476 6476
     'return' => 'array',
6477 6477
     'params' => '[string lib_dir]',
6478 6478
     'description' => 'List all modes "module_dir"',
6479 6479
   ),
6480 6480
   'mcrypt_get_key_size' => 
6481
-  array (
6481
+  array(
6482 6482
     'return' => 'int',
6483 6483
     'params' => 'string cipher, string module',
6484 6484
     'description' => 'Get the key size of cipher',
6485 6485
   ),
6486 6486
   'mcrypt_get_block_size' => 
6487
-  array (
6487
+  array(
6488 6488
     'return' => 'int',
6489 6489
     'params' => 'string cipher, string module',
6490 6490
     'description' => 'Get the key size of cipher',
6491 6491
   ),
6492 6492
   'mcrypt_get_iv_size' => 
6493
-  array (
6493
+  array(
6494 6494
     'return' => 'int',
6495 6495
     'params' => 'string cipher, string module',
6496 6496
     'description' => 'Get the IV size of cipher (Usually the same as the blocksize)',
6497 6497
   ),
6498 6498
   'mcrypt_get_cipher_name' => 
6499
-  array (
6499
+  array(
6500 6500
     'return' => 'string',
6501 6501
     'params' => 'string cipher',
6502 6502
     'description' => 'Get the key size of cipher',
6503 6503
   ),
6504 6504
   'mcrypt_encrypt' => 
6505
-  array (
6505
+  array(
6506 6506
     'return' => 'string',
6507 6507
     'params' => 'string cipher, string key, string data, string mode, string iv',
6508 6508
     'description' => 'OFB crypt/decrypt data using key key with cipher cipher starting with iv',
6509 6509
   ),
6510 6510
   'mcrypt_decrypt' => 
6511
-  array (
6511
+  array(
6512 6512
     'return' => 'string',
6513 6513
     'params' => 'string cipher, string key, string data, string mode, string iv',
6514 6514
     'description' => 'OFB crypt/decrypt data using key key with cipher cipher starting with iv',
6515 6515
   ),
6516 6516
   'mcrypt_ecb' => 
6517
-  array (
6517
+  array(
6518 6518
     'return' => 'string',
6519 6519
     'params' => 'int cipher, string key, string data, int mode, string iv',
6520 6520
     'description' => 'ECB crypt/decrypt data using key key with cipher cipher starting with iv',
6521 6521
   ),
6522 6522
   'mcrypt_cbc' => 
6523
-  array (
6523
+  array(
6524 6524
     'return' => 'string',
6525 6525
     'params' => 'int cipher, string key, string data, int mode, string iv',
6526 6526
     'description' => 'CBC crypt/decrypt data using key key with cipher cipher starting with iv',
6527 6527
   ),
6528 6528
   'mcrypt_cfb' => 
6529
-  array (
6529
+  array(
6530 6530
     'return' => 'string',
6531 6531
     'params' => 'int cipher, string key, string data, int mode, string iv',
6532 6532
     'description' => 'CFB crypt/decrypt data using key key with cipher cipher starting with iv',
6533 6533
   ),
6534 6534
   'mcrypt_ofb' => 
6535
-  array (
6535
+  array(
6536 6536
     'return' => 'string',
6537 6537
     'params' => 'int cipher, string key, string data, int mode, string iv',
6538 6538
     'description' => 'OFB crypt/decrypt data using key key with cipher cipher starting with iv',
6539 6539
   ),
6540 6540
   'mcrypt_create_iv' => 
6541
-  array (
6541
+  array(
6542 6542
     'return' => 'string',
6543 6543
     'params' => 'int size, int source',
6544 6544
     'description' => 'Create an initialization vector (IV)',
6545 6545
   ),
6546 6546
   'readline' => 
6547
-  array (
6547
+  array(
6548 6548
     'return' => 'string',
6549 6549
     'params' => '[string prompt]',
6550 6550
     'description' => 'Reads a line',
6551 6551
   ),
6552 6552
   'readline_info' => 
6553
-  array (
6553
+  array(
6554 6554
     'return' => 'mixed',
6555 6555
     'params' => '[string varname] [, string newvalue]',
6556 6556
     'description' => 'Gets/sets various internal readline variables.',
6557 6557
   ),
6558 6558
   'readline_add_history' => 
6559
-  array (
6559
+  array(
6560 6560
     'return' => 'bool',
6561 6561
     'params' => '[string prompt]',
6562 6562
     'description' => 'Adds a line to the history',
6563 6563
   ),
6564 6564
   'readline_clear_history' => 
6565
-  array (
6565
+  array(
6566 6566
     'return' => 'bool',
6567 6567
     'params' => 'void',
6568 6568
     'description' => 'Clears the history',
6569 6569
   ),
6570 6570
   'readline_list_history' => 
6571
-  array (
6571
+  array(
6572 6572
     'return' => 'array',
6573 6573
     'params' => 'void',
6574 6574
     'description' => 'Lists the history',
6575 6575
   ),
6576 6576
   'readline_read_history' => 
6577
-  array (
6577
+  array(
6578 6578
     'return' => 'bool',
6579 6579
     'params' => '[string filename] [, int from] [,int to]',
6580 6580
     'description' => 'Reads the history',
6581 6581
   ),
6582 6582
   'readline_write_history' => 
6583
-  array (
6583
+  array(
6584 6584
     'return' => 'bool',
6585 6585
     'params' => '[string filename]',
6586 6586
     'description' => 'Writes the history',
6587 6587
   ),
6588 6588
   'readline_completion_function' => 
6589
-  array (
6589
+  array(
6590 6590
     'return' => 'bool',
6591 6591
     'params' => 'string funcname',
6592 6592
     'description' => 'Readline completion function?',
6593 6593
   ),
6594 6594
   'readline_callback_handler_install' => 
6595
-  array (
6595
+  array(
6596 6596
     'return' => 'void',
6597 6597
     'params' => 'string prompt, mixed callback',
6598 6598
     'description' => 'Initializes the readline callback interface and terminal, prints the prompt and returns immediately',
6599 6599
   ),
6600 6600
   'readline_callback_read_char' => 
6601
-  array (
6601
+  array(
6602 6602
     'return' => 'void',
6603 6603
     'params' => '',
6604 6604
     'description' => 'Informs the readline callback interface that a character is ready for input',
6605 6605
   ),
6606 6606
   'readline_callback_handler_remove' => 
6607
-  array (
6607
+  array(
6608 6608
     'return' => 'bool',
6609 6609
     'params' => '',
6610 6610
     'description' => 'Removes a previously installed callback handler and restores terminal settings',
6611 6611
   ),
6612 6612
   'readline_redisplay' => 
6613
-  array (
6613
+  array(
6614 6614
     'return' => 'void',
6615 6615
     'params' => 'void',
6616 6616
     'description' => 'Ask readline to redraw the display',
6617 6617
   ),
6618 6618
   'readline_on_new_line' => 
6619
-  array (
6619
+  array(
6620 6620
     'return' => 'void',
6621 6621
     'params' => 'void',
6622 6622
     'description' => 'Inform readline that the cursor has moved to a new line',
6623 6623
   ),
6624 6624
   'dbase_open' => 
6625
-  array (
6625
+  array(
6626 6626
     'return' => 'int',
6627 6627
     'params' => 'string name, int mode',
6628 6628
     'description' => 'Opens a dBase-format database file',
6629 6629
   ),
6630 6630
   'dbase_close' => 
6631
-  array (
6631
+  array(
6632 6632
     'return' => 'bool',
6633 6633
     'params' => 'int identifier',
6634 6634
     'description' => 'Closes an open dBase-format database file',
6635 6635
   ),
6636 6636
   'dbase_numrecords' => 
6637
-  array (
6637
+  array(
6638 6638
     'return' => 'int',
6639 6639
     'params' => 'int identifier',
6640 6640
     'description' => 'Returns the number of records in the database',
6641 6641
   ),
6642 6642
   'dbase_numfields' => 
6643
-  array (
6643
+  array(
6644 6644
     'return' => 'int',
6645 6645
     'params' => 'int identifier',
6646 6646
     'description' => 'Returns the number of fields (columns) in the database',
6647 6647
   ),
6648 6648
   'dbase_pack' => 
6649
-  array (
6649
+  array(
6650 6650
     'return' => 'bool',
6651 6651
     'params' => 'int identifier',
6652 6652
     'description' => 'Packs the database (deletes records marked for deletion)',
6653 6653
   ),
6654 6654
   'dbase_add_record' => 
6655
-  array (
6655
+  array(
6656 6656
     'return' => 'bool',
6657 6657
     'params' => 'int identifier, array data',
6658 6658
     'description' => 'Adds a record to the database',
6659 6659
   ),
6660 6660
   'dbase_replace_record' => 
6661
-  array (
6661
+  array(
6662 6662
     'return' => 'bool',
6663 6663
     'params' => 'int identifier, array data, int recnum',
6664 6664
     'description' => 'Replaces a record to the database',
6665 6665
   ),
6666 6666
   'dbase_delete_record' => 
6667
-  array (
6667
+  array(
6668 6668
     'return' => 'bool',
6669 6669
     'params' => 'int identifier, int record',
6670 6670
     'description' => 'Marks a record to be deleted',
6671 6671
   ),
6672 6672
   'dbase_get_record' => 
6673
-  array (
6673
+  array(
6674 6674
     'return' => 'array',
6675 6675
     'params' => 'int identifier, int record',
6676 6676
     'description' => 'Returns an array representing a record from the database',
6677 6677
   ),
6678 6678
   'dbase_get_record_with_names' => 
6679
-  array (
6679
+  array(
6680 6680
     'return' => 'array',
6681 6681
     'params' => 'int identifier, int record',
6682 6682
     'description' => 'Returns an associative array representing a record from the database',
6683 6683
   ),
6684 6684
   'dbase_create' => 
6685
-  array (
6685
+  array(
6686 6686
     'return' => 'bool',
6687 6687
     'params' => 'string filename, array fields',
6688 6688
     'description' => 'Creates a new dBase-format database file',
6689 6689
   ),
6690 6690
   'dbase_get_header_info' => 
6691
-  array (
6691
+  array(
6692 6692
     'return' => 'array',
6693 6693
     'params' => 'int database_handle',
6694 6694
     'description' => '',
6695 6695
   ),
6696 6696
   'ibase_add_user' => 
6697
-  array (
6697
+  array(
6698 6698
     'return' => 'bool',
6699 6699
     'params' => 'resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]]',
6700 6700
     'description' => 'Add a user to security database',
6701 6701
   ),
6702 6702
   'ibase_modify_user' => 
6703
-  array (
6703
+  array(
6704 6704
     'return' => 'bool',
6705 6705
     'params' => 'resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]]',
6706 6706
     'description' => 'Modify a user in security database',
6707 6707
   ),
6708 6708
   'ibase_delete_user' => 
6709
-  array (
6709
+  array(
6710 6710
     'return' => 'bool',
6711 6711
     'params' => 'resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]]',
6712 6712
     'description' => 'Delete a user from security database',
6713 6713
   ),
6714 6714
   'ibase_service_attach' => 
6715
-  array (
6715
+  array(
6716 6716
     'return' => 'resource',
6717 6717
     'params' => 'string host, string dba_username, string dba_password',
6718 6718
     'description' => 'Connect to the service manager',
6719 6719
   ),
6720 6720
   'ibase_service_detach' => 
6721
-  array (
6721
+  array(
6722 6722
     'return' => 'bool',
6723 6723
     'params' => 'resource service_handle',
6724 6724
     'description' => 'Disconnect from the service manager',
6725 6725
   ),
6726 6726
   'ibase_backup' => 
6727
-  array (
6727
+  array(
6728 6728
     'return' => 'mixed',
6729 6729
     'params' => 'resource service_handle, string source_db, string dest_file [, int options [, bool verbose]]',
6730 6730
     'description' => 'Initiates a backup task in the service manager and returns immediately',
6731 6731
   ),
6732 6732
   'ibase_restore' => 
6733
-  array (
6733
+  array(
6734 6734
     'return' => 'mixed',
6735 6735
     'params' => 'resource service_handle, string source_file, string dest_db [, int options [, bool verbose]]',
6736 6736
     'description' => 'Initiates a restore task in the service manager and returns immediately',
6737 6737
   ),
6738 6738
   'ibase_maintain_db' => 
6739
-  array (
6739
+  array(
6740 6740
     'return' => 'bool',
6741 6741
     'params' => 'resource service_handle, string db, int action [, int argument]',
6742 6742
     'description' => 'Execute a maintenance command on the database server',
6743 6743
   ),
6744 6744
   'ibase_db_info' => 
6745
-  array (
6745
+  array(
6746 6746
     'return' => 'string',
6747 6747
     'params' => 'resource service_handle, string db, int action [, int argument]',
6748 6748
     'description' => 'Request statistics about a database',
6749 6749
   ),
6750 6750
   'ibase_server_info' => 
6751
-  array (
6751
+  array(
6752 6752
     'return' => 'string',
6753 6753
     'params' => 'resource service_handle, int action',
6754 6754
     'description' => 'Request information about a database server',
6755 6755
   ),
6756 6756
   'ibase_errmsg' => 
6757
-  array (
6757
+  array(
6758 6758
     'return' => 'string',
6759 6759
     'params' => 'void',
6760 6760
     'description' => 'Return error message',
6761 6761
   ),
6762 6762
   'ibase_errcode' => 
6763
-  array (
6763
+  array(
6764 6764
     'return' => 'int',
6765 6765
     'params' => 'void',
6766 6766
     'description' => 'Return error code',
6767 6767
   ),
6768 6768
   'ibase_connect' => 
6769
-  array (
6769
+  array(
6770 6770
     'return' => 'resource',
6771 6771
     'params' => 'string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]]',
6772 6772
     'description' => 'Open a connection to an InterBase database',
6773 6773
   ),
6774 6774
   'ibase_pconnect' => 
6775
-  array (
6775
+  array(
6776 6776
     'return' => 'resource',
6777 6777
     'params' => 'string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]]',
6778 6778
     'description' => 'Open a persistent connection to an InterBase database',
6779 6779
   ),
6780 6780
   'ibase_close' => 
6781
-  array (
6781
+  array(
6782 6782
     'return' => 'bool',
6783 6783
     'params' => '[resource link_identifier]',
6784 6784
     'description' => 'Close an InterBase connection',
6785 6785
   ),
6786 6786
   'ibase_drop_db' => 
6787
-  array (
6787
+  array(
6788 6788
     'return' => 'bool',
6789 6789
     'params' => '[resource link_identifier]',
6790 6790
     'description' => 'Drop an InterBase database',
6791 6791
   ),
6792 6792
   'ibase_trans' => 
6793
-  array (
6793
+  array(
6794 6794
     'return' => 'resource',
6795 6795
     'params' => '[int trans_args [, resource link_identifier [, ... ], int trans_args [, resource link_identifier [, ... ]] [, ...]]]',
6796 6796
     'description' => 'Start a transaction over one or several databases',
6797 6797
   ),
6798 6798
   'ibase_commit' => 
6799
-  array (
6799
+  array(
6800 6800
     'return' => 'bool',
6801 6801
     'params' => ' resource link_identifier ',
6802 6802
     'description' => 'Commit transaction',
6803 6803
   ),
6804 6804
   'ibase_rollback' => 
6805
-  array (
6805
+  array(
6806 6806
     'return' => 'bool',
6807 6807
     'params' => ' resource link_identifier ',
6808 6808
     'description' => 'Rollback transaction',
6809 6809
   ),
6810 6810
   'ibase_commit_ret' => 
6811
-  array (
6811
+  array(
6812 6812
     'return' => 'bool',
6813 6813
     'params' => ' resource link_identifier ',
6814 6814
     'description' => 'Commit transaction and retain the transaction context',
6815 6815
   ),
6816 6816
   'ibase_rollback_ret' => 
6817
-  array (
6817
+  array(
6818 6818
     'return' => 'bool',
6819 6819
     'params' => ' resource link_identifier ',
6820 6820
     'description' => 'Rollback transaction and retain the transaction context',
6821 6821
   ),
6822 6822
   'ibase_gen_id' => 
6823
-  array (
6823
+  array(
6824 6824
     'return' => 'int',
6825 6825
     'params' => 'string generator [, int increment [, resource link_identifier ]]',
6826 6826
     'description' => 'Increments the named generator and returns its new value',
6827 6827
   ),
6828 6828
   'ibase_blob_create' => 
6829
-  array (
6829
+  array(
6830 6830
     'return' => 'resource',
6831 6831
     'params' => '[resource link_identifier]',
6832 6832
     'description' => 'Create blob for adding data',
6833 6833
   ),
6834 6834
   'ibase_blob_open' => 
6835
-  array (
6835
+  array(
6836 6836
     'return' => 'resource',
6837 6837
     'params' => '[ resource link_identifier, ] string blob_id',
6838 6838
     'description' => 'Open blob for retrieving data parts',
6839 6839
   ),
6840 6840
   'ibase_blob_add' => 
6841
-  array (
6841
+  array(
6842 6842
     'return' => 'bool',
6843 6843
     'params' => 'resource blob_handle, string data',
6844 6844
     'description' => 'Add data into created blob',
6845 6845
   ),
6846 6846
   'ibase_blob_get' => 
6847
-  array (
6847
+  array(
6848 6848
     'return' => 'string',
6849 6849
     'params' => 'resource blob_handle, int len',
6850 6850
     'description' => 'Get len bytes data from open blob',
6851 6851
   ),
6852 6852
   'ibase_blob_close' => 
6853
-  array (
6853
+  array(
6854 6854
     'return' => 'string',
6855 6855
     'params' => 'resource blob_handle',
6856 6856
     'description' => 'Close blob',
6857 6857
   ),
6858 6858
   'ibase_blob_cancel' => 
6859
-  array (
6859
+  array(
6860 6860
     'return' => 'bool',
6861 6861
     'params' => 'resource blob_handle',
6862 6862
     'description' => 'Cancel creating blob',
6863 6863
   ),
6864 6864
   'ibase_blob_info' => 
6865
-  array (
6865
+  array(
6866 6866
     'return' => 'array',
6867 6867
     'params' => '[ resource link_identifier, ] string blob_id',
6868 6868
     'description' => 'Return blob length and other useful info',
6869 6869
   ),
6870 6870
   'ibase_blob_echo' => 
6871
-  array (
6871
+  array(
6872 6872
     'return' => 'bool',
6873 6873
     'params' => '[ resource link_identifier, ] string blob_id',
6874 6874
     'description' => 'Output blob contents to browser',
6875 6875
   ),
6876 6876
   'ibase_blob_import' => 
6877
-  array (
6877
+  array(
6878 6878
     'return' => 'string',
6879 6879
     'params' => '[ resource link_identifier, ] resource file',
6880 6880
     'description' => 'Create blob, copy file in it, and close it',
6881 6881
   ),
6882 6882
   'ibase_query' => 
6883
-  array (
6883
+  array(
6884 6884
     'return' => 'mixed',
6885 6885
     'params' => '[resource link_identifier, [ resource link_identifier, ]] string query [, mixed bind_arg [, mixed bind_arg [, ...]]]',
6886 6886
     'description' => 'Execute a query',
6887 6887
   ),
6888 6888
   'ibase_affected_rows' => 
6889
-  array (
6889
+  array(
6890 6890
     'return' => 'int',
6891 6891
     'params' => ' [ resource link_identifier ] ',
6892 6892
     'description' => 'Returns the number of rows affected by the previous INSERT, UPDATE or DELETE statement',
6893 6893
   ),
6894 6894
   'ibase_num_rows' => 
6895
-  array (
6895
+  array(
6896 6896
     'return' => 'int',
6897 6897
     'params' => ' resource result_identifier ',
6898 6898
     'description' => 'Return the number of rows that are available in a result',
6899 6899
   ),
6900 6900
   'ibase_fetch_row' => 
6901
-  array (
6901
+  array(
6902 6902
     'return' => 'array',
6903 6903
     'params' => 'resource result [, int fetch_flags]',
6904 6904
     'description' => 'Fetch a row  from the results of a query',
6905 6905
   ),
6906 6906
   'ibase_fetch_assoc' => 
6907
-  array (
6907
+  array(
6908 6908
     'return' => 'array',
6909 6909
     'params' => 'resource result [, int fetch_flags]',
6910 6910
     'description' => 'Fetch a row  from the results of a query',
6911 6911
   ),
6912 6912
   'ibase_fetch_object' => 
6913
-  array (
6913
+  array(
6914 6914
     'return' => 'object',
6915 6915
     'params' => 'resource result [, int fetch_flags]',
6916 6916
     'description' => 'Fetch a object from the results of a query',
6917 6917
   ),
6918 6918
   'ibase_name_result' => 
6919
-  array (
6919
+  array(
6920 6920
     'return' => 'bool',
6921 6921
     'params' => 'resource result, string name',
6922 6922
     'description' => 'Assign a name to a result for use with ... WHERE CURRENT OF <name> statements',
6923 6923
   ),
6924 6924
   'ibase_free_result' => 
6925
-  array (
6925
+  array(
6926 6926
     'return' => 'bool',
6927 6927
     'params' => 'resource result',
6928 6928
     'description' => 'Free the memory used by a result',
6929 6929
   ),
6930 6930
   'ibase_prepare' => 
6931
-  array (
6931
+  array(
6932 6932
     'return' => 'resource',
6933 6933
     'params' => '[resource link_identifier, ] string query',
6934 6934
     'description' => 'Prepare a query for later execution',
6935 6935
   ),
6936 6936
   'ibase_execute' => 
6937
-  array (
6937
+  array(
6938 6938
     'return' => 'mixed',
6939 6939
     'params' => 'resource query [, mixed bind_arg [, mixed bind_arg [, ...]]]',
6940 6940
     'description' => 'Execute a previously prepared query',
6941 6941
   ),
6942 6942
   'ibase_free_query' => 
6943
-  array (
6943
+  array(
6944 6944
     'return' => 'bool',
6945 6945
     'params' => 'resource query',
6946 6946
     'description' => 'Free memory used by a query',
6947 6947
   ),
6948 6948
   'ibase_num_fields' => 
6949
-  array (
6949
+  array(
6950 6950
     'return' => 'int',
6951 6951
     'params' => 'resource query_result',
6952 6952
     'description' => 'Get the number of fields in result',
6953 6953
   ),
6954 6954
   'ibase_field_info' => 
6955
-  array (
6955
+  array(
6956 6956
     'return' => 'array',
6957 6957
     'params' => 'resource query_result, int field_number',
6958 6958
     'description' => 'Get information about a field',
6959 6959
   ),
6960 6960
   'ibase_num_params' => 
6961
-  array (
6961
+  array(
6962 6962
     'return' => 'int',
6963 6963
     'params' => 'resource query',
6964 6964
     'description' => 'Get the number of params in a prepared query',
6965 6965
   ),
6966 6966
   'ibase_param_info' => 
6967
-  array (
6967
+  array(
6968 6968
     'return' => 'array',
6969 6969
     'params' => 'resource query, int field_number',
6970 6970
     'description' => 'Get information about a parameter',
6971 6971
   ),
6972 6972
   'ibase_wait_event' => 
6973
-  array (
6973
+  array(
6974 6974
     'return' => 'string',
6975 6975
     'params' => '[resource link_identifier,] string event [, string event [, ...]]',
6976 6976
     'description' => 'Waits for any one of the passed Interbase events to be posted by the database, and returns its name',
6977 6977
   ),
6978 6978
   'ibase_set_event_handler' => 
6979
-  array (
6979
+  array(
6980 6980
     'return' => 'resource',
6981 6981
     'params' => '[resource link_identifier,] callback handler, string event [, string event [, ...]]',
6982 6982
     'description' => 'Register the callback for handling each of the named events',
6983 6983
   ),
6984 6984
   'ibase_free_event_handler' => 
6985
-  array (
6985
+  array(
6986 6986
     'return' => 'bool',
6987 6987
     'params' => 'resource event',
6988 6988
     'description' => 'Frees the event handler set by ibase_set_event_handler()',
6989 6989
   ),
6990 6990
   'openssl_x509_export_to_file' => 
6991
-  array (
6991
+  array(
6992 6992
     'return' => 'bool',
6993 6993
     'params' => 'mixed x509, string outfilename [, bool notext = true]',
6994 6994
     'description' => 'Exports a CERT to file or a var',
6995 6995
   ),
6996 6996
   'openssl_x509_export' => 
6997
-  array (
6997
+  array(
6998 6998
     'return' => 'bool',
6999 6999
     'params' => 'mixed x509, string &out [, bool notext = true]',
7000 7000
     'description' => 'Exports a CERT to file or a var',
7001 7001
   ),
7002 7002
   'openssl_x509_check_private_key' => 
7003
-  array (
7003
+  array(
7004 7004
     'return' => 'bool',
7005 7005
     'params' => 'mixed cert, mixed key',
7006 7006
     'description' => 'Checks if a private key corresponds to a CERT',
7007 7007
   ),
7008 7008
   'openssl_x509_parse' => 
7009
-  array (
7009
+  array(
7010 7010
     'return' => 'array',
7011 7011
     'params' => 'mixed x509 [, bool shortnames=true]',
7012 7012
     'description' => 'Returns an array of the fields/values of the CERT',
7013 7013
   ),
7014 7014
   'openssl_x509_checkpurpose' => 
7015
-  array (
7015
+  array(
7016 7016
     'return' => 'int',
7017 7017
     'params' => 'mixed x509cert, int purpose, array cainfo [, string untrustedfile]',
7018 7018
     'description' => 'Checks the CERT to see if it can be used for the purpose in purpose. cainfo holds information about trusted CAs',
7019 7019
   ),
7020 7020
   'openssl_x509_read' => 
7021
-  array (
7021
+  array(
7022 7022
     'return' => 'resource',
7023 7023
     'params' => 'mixed cert',
7024 7024
     'description' => 'Reads X.509 certificates',
7025 7025
   ),
7026 7026
   'openssl_x509_free' => 
7027
-  array (
7027
+  array(
7028 7028
     'return' => 'void',
7029 7029
     'params' => 'resource x509',
7030 7030
     'description' => 'Frees X.509 certificates',
7031 7031
   ),
7032 7032
   'openssl_csr_export_to_file' => 
7033
-  array (
7033
+  array(
7034 7034
     'return' => 'bool',
7035 7035
     'params' => 'resource csr, string outfilename [, bool notext=true]',
7036 7036
     'description' => 'Exports a CSR to file',
7037 7037
   ),
7038 7038
   'openssl_csr_export' => 
7039
-  array (
7039
+  array(
7040 7040
     'return' => 'bool',
7041 7041
     'params' => 'resource csr, string &out [, bool notext=true]',
7042 7042
     'description' => 'Exports a CSR to file or a var',
7043 7043
   ),
7044 7044
   'openssl_csr_sign' => 
7045
-  array (
7045
+  array(
7046 7046
     'return' => 'resource',
7047 7047
     'params' => 'mixed csr, mixed x509, mixed priv_key, long days [, array config_args [, long serial]]',
7048 7048
     'description' => 'Signs a cert with another CERT',
7049 7049
   ),
7050 7050
   'openssl_csr_new' => 
7051
-  array (
7051
+  array(
7052 7052
     'return' => 'bool',
7053 7053
     'params' => 'array dn, resource &privkey [, array configargs, array extraattribs]',
7054 7054
     'description' => 'Generates a privkey and CSR',
7055 7055
   ),
7056 7056
   'openssl_pkey_new' => 
7057
-  array (
7057
+  array(
7058 7058
     'return' => 'resource',
7059 7059
     'params' => '[array configargs]',
7060 7060
     'description' => 'Generates a new private key',
7061 7061
   ),
7062 7062
   'openssl_pkey_export_to_file' => 
7063
-  array (
7063
+  array(
7064 7064
     'return' => 'bool',
7065 7065
     'params' => 'mixed key, string outfilename [, string passphrase, array config_args',
7066 7066
     'description' => 'Gets an exportable representation of a key into a file',
7067 7067
   ),
7068 7068
   'openssl_pkey_export' => 
7069
-  array (
7069
+  array(
7070 7070
     'return' => 'bool',
7071 7071
     'params' => 'mixed key, &mixed out [, string passphrase [, array config_args]]',
7072 7072
     'description' => 'Gets an exportable representation of a key into a string or file',
7073 7073
   ),
7074 7074
   'openssl_pkey_get_public' => 
7075
-  array (
7075
+  array(
7076 7076
     'return' => 'int',
7077 7077
     'params' => 'mixed cert',
7078 7078
     'description' => 'Gets public key from X.509 certificate',
7079 7079
   ),
7080 7080
   'openssl_pkey_free' => 
7081
-  array (
7081
+  array(
7082 7082
     'return' => 'void',
7083 7083
     'params' => 'int key',
7084 7084
     'description' => 'Frees a key',
7085 7085
   ),
7086 7086
   'openssl_pkey_get_private' => 
7087
-  array (
7087
+  array(
7088 7088
     'return' => 'int',
7089 7089
     'params' => 'string key [, string passphrase]',
7090 7090
     'description' => 'Gets private keys',
7091 7091
   ),
7092 7092
   'openssl_pkcs7_verify' => 
7093
-  array (
7093
+  array(
7094 7094
     'return' => 'bool',
7095 7095
     'params' => 'string filename, long flags [, string signerscerts [, array cainfo [, string extracerts [, string content]]]]',
7096 7096
     'description' => 'Verifys that the data block is intact, the signer is who they say they are, and returns the CERTs of the signers',
7097 7097
   ),
7098 7098
   'openssl_pkcs7_encrypt' => 
7099
-  array (
7099
+  array(
7100 7100
     'return' => 'bool',
7101 7101
     'params' => 'string infile, string outfile, mixed recipcerts, array headers [, long flags [, long cipher]]',
7102 7102
     'description' => 'Encrypts the message in the file named infile with the certificates in recipcerts and output the result to the file named outfile',
7103 7103
   ),
7104 7104
   'openssl_pkcs7_sign' => 
7105
-  array (
7105
+  array(
7106 7106
     'return' => 'bool',
7107 7107
     'params' => 'string infile, string outfile, mixed signcert, mixed signkey, array headers [, long flags [, string extracertsfilename]]',
7108 7108
     'description' => 'Signs the MIME message in the file named infile with signcert/signkey and output the result to file name outfile. headers lists plain text headers to exclude from the signed portion of the message, and should include to, from and subject as a minimum',
7109 7109
   ),
7110 7110
   'openssl_pkcs7_decrypt' => 
7111
-  array (
7111
+  array(
7112 7112
     'return' => 'bool',
7113 7113
     'params' => 'string infilename, string outfilename, mixed recipcert [, mixed recipkey]',
7114 7114
     'description' => 'Decrypts the S/MIME message in the file name infilename and output the results to the file name outfilename.  recipcert is a CERT for one of the recipients. recipkey specifies the private key matching recipcert, if recipcert does not include the key',
7115 7115
   ),
7116 7116
   'openssl_private_encrypt' => 
7117
-  array (
7117
+  array(
7118 7118
     'return' => 'bool',
7119 7119
     'params' => 'string data, string crypted, mixed key [, int padding]',
7120 7120
     'description' => 'Encrypts data with private key',
7121 7121
   ),
7122 7122
   'openssl_private_decrypt' => 
7123
-  array (
7123
+  array(
7124 7124
     'return' => 'bool',
7125 7125
     'params' => 'string data, string decrypted, mixed key [, int padding]',
7126 7126
     'description' => 'Decrypts data with private key',
7127 7127
   ),
7128 7128
   'openssl_public_encrypt' => 
7129
-  array (
7129
+  array(
7130 7130
     'return' => 'bool',
7131 7131
     'params' => 'string data, string crypted, mixed key [, int padding]',
7132 7132
     'description' => 'Encrypts data with public key',
7133 7133
   ),
7134 7134
   'openssl_public_decrypt' => 
7135
-  array (
7135
+  array(
7136 7136
     'return' => 'bool',
7137 7137
     'params' => 'string data, string crypted, resource key [, int padding]',
7138 7138
     'description' => 'Decrypts data with public key',
7139 7139
   ),
7140 7140
   'openssl_error_string' => 
7141
-  array (
7141
+  array(
7142 7142
     'return' => 'mixed',
7143 7143
     'params' => 'void',
7144 7144
     'description' => 'Returns a description of the last error, and alters the index of the error messages. Returns false when the are no more messages',
7145 7145
   ),
7146 7146
   'openssl_sign' => 
7147
-  array (
7147
+  array(
7148 7148
     'return' => 'bool',
7149 7149
     'params' => 'string data, &string signature, mixed key',
7150 7150
     'description' => 'Signs data',
7151 7151
   ),
7152 7152
   'openssl_verify' => 
7153
-  array (
7153
+  array(
7154 7154
     'return' => 'int',
7155 7155
     'params' => 'string data, string signature, mixed key',
7156 7156
     'description' => 'Verifys data',
7157 7157
   ),
7158 7158
   'openssl_seal' => 
7159
-  array (
7159
+  array(
7160 7160
     'return' => 'int',
7161 7161
     'params' => 'string data, &string sealdata, &array ekeys, array pubkeys',
7162 7162
     'description' => 'Seals data',
7163 7163
   ),
7164 7164
   'openssl_open' => 
7165
-  array (
7165
+  array(
7166 7166
     'return' => 'bool',
7167 7167
     'params' => 'string data, &string opendata, string ekey, mixed privkey',
7168 7168
     'description' => 'Opens data',
7169 7169
   ),
7170 7170
   'date' => 
7171
-  array (
7171
+  array(
7172 7172
     'return' => 'string',
7173 7173
     'params' => 'string format [, long timestamp]',
7174 7174
     'description' => 'Format a local date/time',
7175 7175
   ),
7176 7176
   'gmdate' => 
7177
-  array (
7177
+  array(
7178 7178
     'return' => 'string',
7179 7179
     'params' => 'string format [, long timestamp]',
7180 7180
     'description' => 'Format a GMT date/time',
7181 7181
   ),
7182 7182
   'idate' => 
7183
-  array (
7183
+  array(
7184 7184
     'return' => 'int',
7185 7185
     'params' => 'string format [, int timestamp]',
7186 7186
     'description' => 'Format a local time/date as integer',
7187 7187
   ),
7188 7188
   'strtotime' => 
7189
-  array (
7189
+  array(
7190 7190
     'return' => 'int',
7191 7191
     'params' => 'string time [, int now ]',
7192 7192
     'description' => 'Convert string representation of date and time to a timestamp',
7193 7193
   ),
7194 7194
   'mktime' => 
7195
-  array (
7195
+  array(
7196 7196
     'return' => 'int',
7197 7197
     'params' => 'int hour, int min, int sec, int mon, int day, int year',
7198 7198
     'description' => 'Get UNIX timestamp for a date',
7199 7199
   ),
7200 7200
   'gmmktime' => 
7201
-  array (
7201
+  array(
7202 7202
     'return' => 'int',
7203 7203
     'params' => 'int hour, int min, int sec, int mon, int day, int year',
7204 7204
     'description' => 'Get UNIX timestamp for a GMT date',
7205 7205
   ),
7206 7206
   'checkdate' => 
7207
-  array (
7207
+  array(
7208 7208
     'return' => 'bool',
7209 7209
     'params' => 'int month, int day, int year',
7210 7210
     'description' => 'Returns true(1) if it is a valid date in gregorian calendar',
7211 7211
   ),
7212 7212
   'strftime' => 
7213
-  array (
7213
+  array(
7214 7214
     'return' => 'string',
7215 7215
     'params' => 'string format [, int timestamp]',
7216 7216
     'description' => 'Format a local time/date according to locale settings',
7217 7217
   ),
7218 7218
   'gmstrftime' => 
7219
-  array (
7219
+  array(
7220 7220
     'return' => 'string',
7221 7221
     'params' => 'string format [, int timestamp]',
7222 7222
     'description' => 'Format a GMT/UCT time/date according to locale settings',
7223 7223
   ),
7224 7224
   'time' => 
7225
-  array (
7225
+  array(
7226 7226
     'return' => 'int',
7227 7227
     'params' => 'void',
7228 7228
     'description' => 'Return current UNIX timestamp',
7229 7229
   ),
7230 7230
   'localtime' => 
7231
-  array (
7231
+  array(
7232 7232
     'return' => 'array',
7233 7233
     'params' => '[int timestamp [, bool associative_array]]',
7234 7234
     'description' => 'Returns the results of the C system call localtime as an associative array if the associative_array argument is set to 1 other wise it is a regular array',
7235 7235
   ),
7236 7236
   'getdate' => 
7237
-  array (
7237
+  array(
7238 7238
     'return' => 'array',
7239 7239
     'params' => '[int timestamp]',
7240 7240
     'description' => 'Get date/time information',
7241 7241
   ),
7242 7242
   'date_default_timezone_set' => 
7243
-  array (
7243
+  array(
7244 7244
     'return' => 'bool',
7245 7245
     'params' => 'string timezone_identifier',
7246 7246
     'description' => 'Sets the default timezone used by all date/time functions in a script',
7247 7247
   ),
7248 7248
   'date_default_timezone_get' => 
7249
-  array (
7249
+  array(
7250 7250
     'return' => 'string',
7251 7251
     'params' => '',
7252 7252
     'description' => 'Gets the default timezone used by all date/time functions in a script',
7253 7253
   ),
7254 7254
   'date_sunrise' => 
7255
-  array (
7255
+  array(
7256 7256
     'return' => 'mixed',
7257 7257
     'params' => 'mixed time [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]]',
7258 7258
     'description' => 'Returns time of sunrise for a given day and location',
7259 7259
   ),
7260 7260
   'date_sunset' => 
7261
-  array (
7261
+  array(
7262 7262
     'return' => 'mixed',
7263 7263
     'params' => 'mixed time [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]]',
7264 7264
     'description' => 'Returns time of sunset for a given day and location',
7265 7265
   ),
7266 7266
   'date_sun_info' => 
7267
-  array (
7267
+  array(
7268 7268
     'return' => 'array',
7269 7269
     'params' => 'long time, float latitude, float longitude',
7270 7270
     'description' => 'Returns an array with information about sun set/rise and twilight begin/end',
7271 7271
   ),
7272 7272
   'wddx_serialize_value' => 
7273
-  array (
7273
+  array(
7274 7274
     'return' => 'string',
7275 7275
     'params' => 'mixed var [, string comment]',
7276 7276
     'description' => 'Creates a new packet and serializes the given value',
7277 7277
   ),
7278 7278
   'wddx_serialize_vars' => 
7279
-  array (
7279
+  array(
7280 7280
     'return' => 'string',
7281 7281
     'params' => 'mixed var_name [, mixed ...]',
7282 7282
     'description' => 'Creates a new packet and serializes given variables into a struct',
7283 7283
   ),
7284 7284
   'wddx_packet_start' => 
7285
-  array (
7285
+  array(
7286 7286
     'return' => 'int',
7287 7287
     'params' => '[string comment]',
7288 7288
     'description' => 'Starts a WDDX packet with optional comment and returns the packet id',
7289 7289
   ),
7290 7290
   'wddx_packet_end' => 
7291
-  array (
7291
+  array(
7292 7292
     'return' => 'string',
7293 7293
     'params' => 'int packet_id',
7294 7294
     'description' => 'Ends specified WDDX packet and returns the string containing the packet',
7295 7295
   ),
7296 7296
   'wddx_add_vars' => 
7297
-  array (
7297
+  array(
7298 7298
     'return' => 'int',
7299 7299
     'params' => 'int packet_id,  mixed var_names [, mixed ...]',
7300 7300
     'description' => 'Serializes given variables and adds them to packet given by packet_id',
7301 7301
   ),
7302 7302
   'wddx_deserialize' => 
7303
-  array (
7303
+  array(
7304 7304
     'return' => 'mixed',
7305 7305
     'params' => 'mixed packet',
7306 7306
     'description' => 'Deserializes given packet and returns a PHP value',
7307 7307
   ),
7308 7308
   'gmp_init' => 
7309
-  array (
7309
+  array(
7310 7310
     'return' => 'resource',
7311 7311
     'params' => 'mixed number [, int base]',
7312 7312
     'description' => 'Initializes GMP number',
7313 7313
   ),
7314 7314
   'gmp_intval' => 
7315
-  array (
7315
+  array(
7316 7316
     'return' => 'int',
7317 7317
     'params' => 'resource gmpnumber',
7318 7318
     'description' => 'Gets signed long value of GMP number',
7319 7319
   ),
7320 7320
   'gmp_strval' => 
7321
-  array (
7321
+  array(
7322 7322
     'return' => 'string',
7323 7323
     'params' => 'resource gmpnumber [, int base]',
7324 7324
     'description' => 'Gets string representation of GMP number',
7325 7325
   ),
7326 7326
   'gmp_add' => 
7327
-  array (
7327
+  array(
7328 7328
     'return' => 'resource',
7329 7329
     'params' => 'resource a, resource b',
7330 7330
     'description' => 'Add a and b',
7331 7331
   ),
7332 7332
   'gmp_sub' => 
7333
-  array (
7333
+  array(
7334 7334
     'return' => 'resource',
7335 7335
     'params' => 'resource a, resource b',
7336 7336
     'description' => 'Subtract b from a',
7337 7337
   ),
7338 7338
   'gmp_mul' => 
7339
-  array (
7339
+  array(
7340 7340
     'return' => 'resource',
7341 7341
     'params' => 'resource a, resource b',
7342 7342
     'description' => 'Multiply a and b',
7343 7343
   ),
7344 7344
   'gmp_div_qr' => 
7345
-  array (
7345
+  array(
7346 7346
     'return' => 'array',
7347 7347
     'params' => 'resource a, resource b [, int round]',
7348 7348
     'description' => 'Divide a by b, returns quotient and reminder',
7349 7349
   ),
7350 7350
   'gmp_div_r' => 
7351
-  array (
7351
+  array(
7352 7352
     'return' => 'resource',
7353 7353
     'params' => 'resource a, resource b [, int round]',
7354 7354
     'description' => 'Divide a by b, returns reminder only',
7355 7355
   ),
7356 7356
   'gmp_div_q' => 
7357
-  array (
7357
+  array(
7358 7358
     'return' => 'resource',
7359 7359
     'params' => 'resource a, resource b [, int round]',
7360 7360
     'description' => 'Divide a by b, returns quotient only',
7361 7361
   ),
7362 7362
   'gmp_mod' => 
7363
-  array (
7363
+  array(
7364 7364
     'return' => 'resource',
7365 7365
     'params' => 'resource a, resource b',
7366 7366
     'description' => 'Computes a modulo b',
7367 7367
   ),
7368 7368
   'gmp_divexact' => 
7369
-  array (
7369
+  array(
7370 7370
     'return' => 'resource',
7371 7371
     'params' => 'resource a, resource b',
7372 7372
     'description' => 'Divide a by b using exact division algorithm',
7373 7373
   ),
7374 7374
   'gmp_neg' => 
7375
-  array (
7375
+  array(
7376 7376
     'return' => 'resource',
7377 7377
     'params' => 'resource a',
7378 7378
     'description' => 'Negates a number',
7379 7379
   ),
7380 7380
   'gmp_abs' => 
7381
-  array (
7381
+  array(
7382 7382
     'return' => 'resource',
7383 7383
     'params' => 'resource a',
7384 7384
     'description' => 'Calculates absolute value',
7385 7385
   ),
7386 7386
   'gmp_fact' => 
7387
-  array (
7387
+  array(
7388 7388
     'return' => 'resource',
7389 7389
     'params' => 'int a',
7390 7390
     'description' => 'Calculates factorial function',
7391 7391
   ),
7392 7392
   'gmp_pow' => 
7393
-  array (
7393
+  array(
7394 7394
     'return' => 'resource',
7395 7395
     'params' => 'resource base, int exp',
7396 7396
     'description' => 'Raise base to power exp',
7397 7397
   ),
7398 7398
   'gmp_powm' => 
7399
-  array (
7399
+  array(
7400 7400
     'return' => 'resource',
7401 7401
     'params' => 'resource base, resource exp, resource mod',
7402 7402
     'description' => 'Raise base to power exp and take result modulo mod',
7403 7403
   ),
7404 7404
   'gmp_sqrt' => 
7405
-  array (
7405
+  array(
7406 7406
     'return' => 'resource',
7407 7407
     'params' => 'resource a',
7408 7408
     'description' => 'Takes integer part of square root of a',
7409 7409
   ),
7410 7410
   'gmp_sqrtrem' => 
7411
-  array (
7411
+  array(
7412 7412
     'return' => 'array',
7413 7413
     'params' => 'resource a',
7414 7414
     'description' => 'Square root with remainder',
7415 7415
   ),
7416 7416
   'gmp_perfect_square' => 
7417
-  array (
7417
+  array(
7418 7418
     'return' => 'bool',
7419 7419
     'params' => 'resource a',
7420 7420
     'description' => 'Checks if a is an exact square',
7421 7421
   ),
7422 7422
   'gmp_prob_prime' => 
7423
-  array (
7423
+  array(
7424 7424
     'return' => 'int',
7425 7425
     'params' => 'resource a[, int reps]',
7426 7426
     'description' => 'Checks if a is "probably prime"',
7427 7427
   ),
7428 7428
   'gmp_gcd' => 
7429
-  array (
7429
+  array(
7430 7430
     'return' => 'resource',
7431 7431
     'params' => 'resource a, resource b',
7432 7432
     'description' => 'Computes greatest common denominator (gcd) of a and b',
7433 7433
   ),
7434 7434
   'gmp_gcdext' => 
7435
-  array (
7435
+  array(
7436 7436
     'return' => 'array',
7437 7437
     'params' => 'resource a, resource b',
7438 7438
     'description' => 'Computes G, S, and T, such that AS + BT = G = `gcd\' (A, B)',
7439 7439
   ),
7440 7440
   'gmp_invert' => 
7441
-  array (
7441
+  array(
7442 7442
     'return' => 'resource',
7443 7443
     'params' => 'resource a, resource b',
7444 7444
     'description' => 'Computes the inverse of a modulo b',
7445 7445
   ),
7446 7446
   'gmp_jacobi' => 
7447
-  array (
7447
+  array(
7448 7448
     'return' => 'int',
7449 7449
     'params' => 'resource a, resource b',
7450 7450
     'description' => 'Computes Jacobi symbol',
7451 7451
   ),
7452 7452
   'gmp_legendre' => 
7453
-  array (
7453
+  array(
7454 7454
     'return' => 'int',
7455 7455
     'params' => 'resource a, resource b',
7456 7456
     'description' => 'Computes Legendre symbol',
7457 7457
   ),
7458 7458
   'gmp_cmp' => 
7459
-  array (
7459
+  array(
7460 7460
     'return' => 'int',
7461 7461
     'params' => 'resource a, resource b',
7462 7462
     'description' => 'Compares two numbers',
7463 7463
   ),
7464 7464
   'gmp_sign' => 
7465
-  array (
7465
+  array(
7466 7466
     'return' => 'int',
7467 7467
     'params' => 'resource a',
7468 7468
     'description' => 'Gets the sign of the number',
7469 7469
   ),
7470 7470
   'gmp_random' => 
7471
-  array (
7471
+  array(
7472 7472
     'return' => 'resource',
7473 7473
     'params' => '[int limiter]',
7474 7474
     'description' => 'Gets random number',
7475 7475
   ),
7476 7476
   'gmp_and' => 
7477
-  array (
7477
+  array(
7478 7478
     'return' => 'resource',
7479 7479
     'params' => 'resource a, resource b',
7480 7480
     'description' => 'Calculates logical AND of a and b',
7481 7481
   ),
7482 7482
   'gmp_or' => 
7483
-  array (
7483
+  array(
7484 7484
     'return' => 'resource',
7485 7485
     'params' => 'resource a, resource b',
7486 7486
     'description' => 'Calculates logical OR of a and b',
7487 7487
   ),
7488 7488
   'gmp_com' => 
7489
-  array (
7489
+  array(
7490 7490
     'return' => 'resource',
7491 7491
     'params' => 'resource a',
7492 7492
     'description' => 'Calculates one\'s complement of a',
7493 7493
   ),
7494 7494
   'gmp_xor' => 
7495
-  array (
7495
+  array(
7496 7496
     'return' => 'resource',
7497 7497
     'params' => 'resource a, resource b',
7498 7498
     'description' => 'Calculates logical exclusive OR of a and b',
7499 7499
   ),
7500 7500
   'gmp_setbit' => 
7501
-  array (
7501
+  array(
7502 7502
     'return' => 'void',
7503 7503
     'params' => 'resource &a, int index[, bool set_clear]',
7504 7504
     'description' => 'Sets or clear bit in a',
7505 7505
   ),
7506 7506
   'gmp_clrbit' => 
7507
-  array (
7507
+  array(
7508 7508
     'return' => 'void',
7509 7509
     'params' => 'resource &a, int index',
7510 7510
     'description' => 'Clears bit in a',
7511 7511
   ),
7512 7512
   'gmp_popcount' => 
7513
-  array (
7513
+  array(
7514 7514
     'return' => 'int',
7515 7515
     'params' => 'resource a',
7516 7516
     'description' => 'Calculates the population count of a',
7517 7517
   ),
7518 7518
   'gmp_hamdist' => 
7519
-  array (
7519
+  array(
7520 7520
     'return' => 'int',
7521 7521
     'params' => 'resource a, resource b',
7522 7522
     'description' => 'Calculates hamming distance between a and b',
7523 7523
   ),
7524 7524
   'gmp_scan0' => 
7525
-  array (
7525
+  array(
7526 7526
     'return' => 'int',
7527 7527
     'params' => 'resource a, int start',
7528 7528
     'description' => 'Finds first zero bit',
7529 7529
   ),
7530 7530
   'gmp_scan1' => 
7531
-  array (
7531
+  array(
7532 7532
     'return' => 'int',
7533 7533
     'params' => 'resource a, int start',
7534 7534
     'description' => 'Finds first non-zero bit',
7535 7535
   ),
7536 7536
   'gd_info' => 
7537
-  array (
7537
+  array(
7538 7538
     'return' => 'array',
7539 7539
     'params' => '',
7540 7540
     'description' => '',
7541 7541
   ),
7542 7542
   'imageloadfont' => 
7543
-  array (
7543
+  array(
7544 7544
     'return' => 'int',
7545 7545
     'params' => 'string filename',
7546 7546
     'description' => 'Load a new font',
7547 7547
   ),
7548 7548
   'imagesetstyle' => 
7549
-  array (
7549
+  array(
7550 7550
     'return' => 'bool',
7551 7551
     'params' => 'resource im, array styles',
7552 7552
     'description' => 'Set the line drawing styles for use with imageline and IMG_COLOR_STYLED.',
7553 7553
   ),
7554 7554
   'imagecreatetruecolor' => 
7555
-  array (
7555
+  array(
7556 7556
     'return' => 'resource',
7557 7557
     'params' => 'int x_size, int y_size',
7558 7558
     'description' => 'Create a new true color image',
7559 7559
   ),
7560 7560
   'imageistruecolor' => 
7561
-  array (
7561
+  array(
7562 7562
     'return' => 'bool',
7563 7563
     'params' => 'resource im',
7564 7564
     'description' => 'return true if the image uses truecolor',
7565 7565
   ),
7566 7566
   'imagetruecolortopalette' => 
7567
-  array (
7567
+  array(
7568 7568
     'return' => 'void',
7569 7569
     'params' => 'resource im, bool ditherFlag, int colorsWanted',
7570 7570
     'description' => 'Convert a true colour image to a palette based image with a number of colours, optionally using dithering.',
7571 7571
   ),
7572 7572
   'imagecolormatch' => 
7573
-  array (
7573
+  array(
7574 7574
     'return' => 'bool',
7575 7575
     'params' => 'resource im1, resource im2',
7576 7576
     'description' => 'Makes the colors of the palette version of an image more closely match the true color version',
7577 7577
   ),
7578 7578
   'imagesetthickness' => 
7579
-  array (
7579
+  array(
7580 7580
     'return' => 'bool',
7581 7581
     'params' => 'resource im, int thickness',
7582 7582
     'description' => 'Set line thickness for drawing lines, ellipses, rectangles, polygons etc.',
7583 7583
   ),
7584 7584
   'imagefilledellipse' => 
7585
-  array (
7585
+  array(
7586 7586
     'return' => 'bool',
7587 7587
     'params' => 'resource im, int cx, int cy, int w, int h, int color',
7588 7588
     'description' => 'Draw an ellipse',
7589 7589
   ),
7590 7590
   'imagefilledarc' => 
7591
-  array (
7591
+  array(
7592 7592
     'return' => 'bool',
7593 7593
     'params' => 'resource im, int cx, int cy, int w, int h, int s, int e, int col, int style',
7594 7594
     'description' => 'Draw a filled partial ellipse',
7595 7595
   ),
7596 7596
   'imagealphablending' => 
7597
-  array (
7597
+  array(
7598 7598
     'return' => 'bool',
7599 7599
     'params' => 'resource im, bool on',
7600 7600
     'description' => 'Turn alpha blending mode on or off for the given image',
7601 7601
   ),
7602 7602
   'imagesavealpha' => 
7603
-  array (
7603
+  array(
7604 7604
     'return' => 'bool',
7605 7605
     'params' => 'resource im, bool on',
7606 7606
     'description' => 'Include alpha channel to a saved image',
7607 7607
   ),
7608 7608
   'imagelayereffect' => 
7609
-  array (
7609
+  array(
7610 7610
     'return' => 'bool',
7611 7611
     'params' => 'resource im, int effect',
7612 7612
     'description' => 'Set the alpha blending flag to use the bundled libgd layering effects',
7613 7613
   ),
7614 7614
   'imagecolorallocatealpha' => 
7615
-  array (
7615
+  array(
7616 7616
     'return' => 'int',
7617 7617
     'params' => 'resource im, int red, int green, int blue, int alpha',
7618 7618
     'description' => 'Allocate a color with an alpha level.  Works for true color and palette based images',
7619 7619
   ),
7620 7620
   'imagecolorresolvealpha' => 
7621
-  array (
7621
+  array(
7622 7622
     'return' => 'int',
7623 7623
     'params' => 'resource im, int red, int green, int blue, int alpha',
7624 7624
     'description' => 'Resolve/Allocate a colour with an alpha level.  Works for true colour and palette based images',
7625 7625
   ),
7626 7626
   'imagecolorclosestalpha' => 
7627
-  array (
7627
+  array(
7628 7628
     'return' => 'int',
7629 7629
     'params' => 'resource im, int red, int green, int blue, int alpha',
7630 7630
     'description' => 'Find the closest matching colour with alpha transparency',
7631 7631
   ),
7632 7632
   'imagecolorexactalpha' => 
7633
-  array (
7633
+  array(
7634 7634
     'return' => 'int',
7635 7635
     'params' => 'resource im, int red, int green, int blue, int alpha',
7636 7636
     'description' => 'Find exact match for colour with transparency',
7637 7637
   ),
7638 7638
   'imagecopyresampled' => 
7639
-  array (
7639
+  array(
7640 7640
     'return' => 'bool',
7641 7641
     'params' => 'resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h',
7642 7642
     'description' => 'Copy and resize part of an image using resampling to help ensure clarity',
7643 7643
   ),
7644 7644
   'imagerotate' => 
7645
-  array (
7645
+  array(
7646 7646
     'return' => 'resource',
7647 7647
     'params' => 'resource src_im, float angle, int bgdcolor',
7648 7648
     'description' => 'Rotate an image using a custom angle',
7649 7649
   ),
7650 7650
   'imagesettile' => 
7651
-  array (
7651
+  array(
7652 7652
     'return' => 'bool',
7653 7653
     'params' => 'resource image, resource tile',
7654 7654
     'description' => 'Set the tile image to $tile when filling $image with the "IMG_COLOR_TILED" color',
7655 7655
   ),
7656 7656
   'imagesetbrush' => 
7657
-  array (
7657
+  array(
7658 7658
     'return' => 'bool',
7659 7659
     'params' => 'resource image, resource brush',
7660 7660
     'description' => 'Set the brush image to $brush when filling $image with the "IMG_COLOR_BRUSHED" color',
7661 7661
   ),
7662 7662
   'imagecreate' => 
7663
-  array (
7663
+  array(
7664 7664
     'return' => 'resource',
7665 7665
     'params' => 'int x_size, int y_size',
7666 7666
     'description' => 'Create a new image',
7667 7667
   ),
7668 7668
   'imagetypes' => 
7669
-  array (
7669
+  array(
7670 7670
     'return' => 'int',
7671 7671
     'params' => 'void',
7672 7672
     'description' => 'Return the types of images supported in a bitfield - 1=GIF, 2=JPEG, 4=PNG, 8=WBMP, 16=XPM',
7673 7673
   ),
7674 7674
   'imagecreatefromstring' => 
7675
-  array (
7675
+  array(
7676 7676
     'return' => 'resource',
7677 7677
     'params' => 'string image',
7678 7678
     'description' => 'Create a new image from the image stream in the string',
7679 7679
   ),
7680 7680
   'imagecreatefromgif' => 
7681
-  array (
7681
+  array(
7682 7682
     'return' => 'resource',
7683 7683
     'params' => 'string filename',
7684 7684
     'description' => 'Create a new image from GIF file or URL',
7685 7685
   ),
7686 7686
   'imagecreatefromjpeg' => 
7687
-  array (
7687
+  array(
7688 7688
     'return' => 'resource',
7689 7689
     'params' => 'string filename',
7690 7690
     'description' => 'Create a new image from JPEG file or URL',
7691 7691
   ),
7692 7692
   'imagecreatefrompng' => 
7693
-  array (
7693
+  array(
7694 7694
     'return' => 'resource',
7695 7695
     'params' => 'string filename',
7696 7696
     'description' => 'Create a new image from PNG file or URL',
7697 7697
   ),
7698 7698
   'imagecreatefromxbm' => 
7699
-  array (
7699
+  array(
7700 7700
     'return' => 'resource',
7701 7701
     'params' => 'string filename',
7702 7702
     'description' => 'Create a new image from XBM file or URL',
7703 7703
   ),
7704 7704
   'imagecreatefromxpm' => 
7705
-  array (
7705
+  array(
7706 7706
     'return' => 'resource',
7707 7707
     'params' => 'string filename',
7708 7708
     'description' => 'Create a new image from XPM file or URL',
7709 7709
   ),
7710 7710
   'imagecreatefromwbmp' => 
7711
-  array (
7711
+  array(
7712 7712
     'return' => 'resource',
7713 7713
     'params' => 'string filename',
7714 7714
     'description' => 'Create a new image from WBMP file or URL',
7715 7715
   ),
7716 7716
   'imagecreatefromgd' => 
7717
-  array (
7717
+  array(
7718 7718
     'return' => 'resource',
7719 7719
     'params' => 'string filename',
7720 7720
     'description' => 'Create a new image from GD file or URL',
7721 7721
   ),
7722 7722
   'imagecreatefromgd2' => 
7723
-  array (
7723
+  array(
7724 7724
     'return' => 'resource',
7725 7725
     'params' => 'string filename',
7726 7726
     'description' => 'Create a new image from GD2 file or URL',
7727 7727
   ),
7728 7728
   'imagecreatefromgd2part' => 
7729
-  array (
7729
+  array(
7730 7730
     'return' => 'resource',
7731 7731
     'params' => 'string filename, int srcX, int srcY, int width, int height',
7732 7732
     'description' => 'Create a new image from a given part of GD2 file or URL',
7733 7733
   ),
7734 7734
   'imagexbm' => 
7735
-  array (
7735
+  array(
7736 7736
     'return' => 'int',
7737 7737
     'params' => 'int im, string filename [, int foreground]',
7738 7738
     'description' => 'Output XBM image to browser or file',
7739 7739
   ),
7740 7740
   'imagegif' => 
7741
-  array (
7741
+  array(
7742 7742
     'return' => 'bool',
7743 7743
     'params' => 'resource im [, string filename]',
7744 7744
     'description' => 'Output GIF image to browser or file',
7745 7745
   ),
7746 7746
   'imagepng' => 
7747
-  array (
7747
+  array(
7748 7748
     'return' => 'bool',
7749 7749
     'params' => 'resource im [, string filename]',
7750 7750
     'description' => 'Output PNG image to browser or file',
7751 7751
   ),
7752 7752
   'imagejpeg' => 
7753
-  array (
7753
+  array(
7754 7754
     'return' => 'bool',
7755 7755
     'params' => 'resource im [, string filename [, int quality]]',
7756 7756
     'description' => 'Output JPEG image to browser or file',
7757 7757
   ),
7758 7758
   'imagewbmp' => 
7759
-  array (
7759
+  array(
7760 7760
     'return' => 'bool',
7761 7761
     'params' => 'resource im [, string filename, [, int foreground]]',
7762 7762
     'description' => 'Output WBMP image to browser or file',
7763 7763
   ),
7764 7764
   'imagegd' => 
7765
-  array (
7765
+  array(
7766 7766
     'return' => 'bool',
7767 7767
     'params' => 'resource im [, string filename]',
7768 7768
     'description' => 'Output GD image to browser or file',
7769 7769
   ),
7770 7770
   'imagegd2' => 
7771
-  array (
7771
+  array(
7772 7772
     'return' => 'bool',
7773 7773
     'params' => 'resource im [, string filename, [, int chunk_size, [, int type]]]',
7774 7774
     'description' => 'Output GD2 image to browser or file',
7775 7775
   ),
7776 7776
   'imagedestroy' => 
7777
-  array (
7777
+  array(
7778 7778
     'return' => 'bool',
7779 7779
     'params' => 'resource im',
7780 7780
     'description' => 'Destroy an image',
7781 7781
   ),
7782 7782
   'imagecolorallocate' => 
7783
-  array (
7783
+  array(
7784 7784
     'return' => 'int',
7785 7785
     'params' => 'resource im, int red, int green, int blue',
7786 7786
     'description' => 'Allocate a color for an image',
7787 7787
   ),
7788 7788
   'imagepalettecopy' => 
7789
-  array (
7789
+  array(
7790 7790
     'return' => 'void',
7791 7791
     'params' => 'resource dst, resource src',
7792 7792
     'description' => 'Copy the palette from the src image onto the dst image',
7793 7793
   ),
7794 7794
   'imagecolorat' => 
7795
-  array (
7795
+  array(
7796 7796
     'return' => 'int',
7797 7797
     'params' => 'resource im, int x, int y',
7798 7798
     'description' => 'Get the index of the color of a pixel',
7799 7799
   ),
7800 7800
   'imagecolorclosest' => 
7801
-  array (
7801
+  array(
7802 7802
     'return' => 'int',
7803 7803
     'params' => 'resource im, int red, int green, int blue',
7804 7804
     'description' => 'Get the index of the closest color to the specified color',
7805 7805
   ),
7806 7806
   'imagecolorclosesthwb' => 
7807
-  array (
7807
+  array(
7808 7808
     'return' => 'int',
7809 7809
     'params' => 'resource im, int red, int green, int blue',
7810 7810
     'description' => 'Get the index of the color which has the hue, white and blackness nearest to the given color',
7811 7811
   ),
7812 7812
   'imagecolordeallocate' => 
7813
-  array (
7813
+  array(
7814 7814
     'return' => 'bool',
7815 7815
     'params' => 'resource im, int index',
7816 7816
     'description' => 'De-allocate a color for an image',
7817 7817
   ),
7818 7818
   'imagecolorresolve' => 
7819
-  array (
7819
+  array(
7820 7820
     'return' => 'int',
7821 7821
     'params' => 'resource im, int red, int green, int blue',
7822 7822
     'description' => 'Get the index of the specified color or its closest possible alternative',
7823 7823
   ),
7824 7824
   'imagecolorexact' => 
7825
-  array (
7825
+  array(
7826 7826
     'return' => 'int',
7827 7827
     'params' => 'resource im, int red, int green, int blue',
7828 7828
     'description' => 'Get the index of the specified color',
7829 7829
   ),
7830 7830
   'imagecolorset' => 
7831
-  array (
7831
+  array(
7832 7832
     'return' => 'void',
7833 7833
     'params' => 'resource im, int col, int red, int green, int blue',
7834 7834
     'description' => 'Set the color for the specified palette index',
7835 7835
   ),
7836 7836
   'imagecolorsforindex' => 
7837
-  array (
7837
+  array(
7838 7838
     'return' => 'array',
7839 7839
     'params' => 'resource im, int col',
7840 7840
     'description' => 'Get the colors for an index',
7841 7841
   ),
7842 7842
   'imagegammacorrect' => 
7843
-  array (
7843
+  array(
7844 7844
     'return' => 'bool',
7845 7845
     'params' => 'resource im, float inputgamma, float outputgamma',
7846 7846
     'description' => 'Apply a gamma correction to a GD image',
7847 7847
   ),
7848 7848
   'imagesetpixel' => 
7849
-  array (
7849
+  array(
7850 7850
     'return' => 'bool',
7851 7851
     'params' => 'resource im, int x, int y, int col',
7852 7852
     'description' => 'Set a single pixel',
7853 7853
   ),
7854 7854
   'imageline' => 
7855
-  array (
7855
+  array(
7856 7856
     'return' => 'bool',
7857 7857
     'params' => 'resource im, int x1, int y1, int x2, int y2, int col',
7858 7858
     'description' => 'Draw a line',
7859 7859
   ),
7860 7860
   'imagedashedline' => 
7861
-  array (
7861
+  array(
7862 7862
     'return' => 'bool',
7863 7863
     'params' => 'resource im, int x1, int y1, int x2, int y2, int col',
7864 7864
     'description' => 'Draw a dashed line',
7865 7865
   ),
7866 7866
   'imagerectangle' => 
7867
-  array (
7867
+  array(
7868 7868
     'return' => 'bool',
7869 7869
     'params' => 'resource im, int x1, int y1, int x2, int y2, int col',
7870 7870
     'description' => 'Draw a rectangle',
7871 7871
   ),
7872 7872
   'imagefilledrectangle' => 
7873
-  array (
7873
+  array(
7874 7874
     'return' => 'bool',
7875 7875
     'params' => 'resource im, int x1, int y1, int x2, int y2, int col',
7876 7876
     'description' => 'Draw a filled rectangle',
7877 7877
   ),
7878 7878
   'imagearc' => 
7879
-  array (
7879
+  array(
7880 7880
     'return' => 'bool',
7881 7881
     'params' => 'resource im, int cx, int cy, int w, int h, int s, int e, int col',
7882 7882
     'description' => 'Draw a partial ellipse',
7883 7883
   ),
7884 7884
   'imageellipse' => 
7885
-  array (
7885
+  array(
7886 7886
     'return' => 'bool',
7887 7887
     'params' => 'resource im, int cx, int cy, int w, int h, int color',
7888 7888
     'description' => 'Draw an ellipse',
7889 7889
   ),
7890 7890
   'imagefilltoborder' => 
7891
-  array (
7891
+  array(
7892 7892
     'return' => 'bool',
7893 7893
     'params' => 'resource im, int x, int y, int border, int col',
7894 7894
     'description' => 'Flood fill to specific color',
7895 7895
   ),
7896 7896
   'imagefill' => 
7897
-  array (
7897
+  array(
7898 7898
     'return' => 'bool',
7899 7899
     'params' => 'resource im, int x, int y, int col',
7900 7900
     'description' => 'Flood fill',
7901 7901
   ),
7902 7902
   'imagecolorstotal' => 
7903
-  array (
7903
+  array(
7904 7904
     'return' => 'int',
7905 7905
     'params' => 'resource im',
7906 7906
     'description' => 'Find out the number of colors in an image\'s palette',
7907 7907
   ),
7908 7908
   'imagecolortransparent' => 
7909
-  array (
7909
+  array(
7910 7910
     'return' => 'int',
7911 7911
     'params' => 'resource im [, int col]',
7912 7912
     'description' => 'Define a color as transparent',
7913 7913
   ),
7914 7914
   'imageinterlace' => 
7915
-  array (
7915
+  array(
7916 7916
     'return' => 'int',
7917 7917
     'params' => 'resource im [, int interlace]',
7918 7918
     'description' => 'Enable or disable interlace',
7919 7919
   ),
7920 7920
   'imagepolygon' => 
7921
-  array (
7921
+  array(
7922 7922
     'return' => 'bool',
7923 7923
     'params' => 'resource im, array point, int num_points, int col',
7924 7924
     'description' => 'Draw a polygon',
7925 7925
   ),
7926 7926
   'imagefilledpolygon' => 
7927
-  array (
7927
+  array(
7928 7928
     'return' => 'bool',
7929 7929
     'params' => 'resource im, array point, int num_points, int col',
7930 7930
     'description' => 'Draw a filled polygon',
7931 7931
   ),
7932 7932
   'imagefontwidth' => 
7933
-  array (
7933
+  array(
7934 7934
     'return' => 'int',
7935 7935
     'params' => 'int font',
7936 7936
     'description' => 'Get font width',
7937 7937
   ),
7938 7938
   'imagefontheight' => 
7939
-  array (
7939
+  array(
7940 7940
     'return' => 'int',
7941 7941
     'params' => 'int font',
7942 7942
     'description' => 'Get font height',
7943 7943
   ),
7944 7944
   'imagechar' => 
7945
-  array (
7945
+  array(
7946 7946
     'return' => 'bool',
7947 7947
     'params' => 'resource im, int font, int x, int y, string c, int col',
7948 7948
     'description' => 'Draw a character',
7949 7949
   ),
7950 7950
   'imagecharup' => 
7951
-  array (
7951
+  array(
7952 7952
     'return' => 'bool',
7953 7953
     'params' => 'resource im, int font, int x, int y, string c, int col',
7954 7954
     'description' => 'Draw a character rotated 90 degrees counter-clockwise',
7955 7955
   ),
7956 7956
   'imagestring' => 
7957
-  array (
7957
+  array(
7958 7958
     'return' => 'bool',
7959 7959
     'params' => 'resource im, int font, int x, int y, string str, int col',
7960 7960
     'description' => 'Draw a string horizontally',
7961 7961
   ),
7962 7962
   'imagestringup' => 
7963
-  array (
7963
+  array(
7964 7964
     'return' => 'bool',
7965 7965
     'params' => 'resource im, int font, int x, int y, string str, int col',
7966 7966
     'description' => 'Draw a string vertically - rotated 90 degrees counter-clockwise',
7967 7967
   ),
7968 7968
   'imagecopy' => 
7969
-  array (
7969
+  array(
7970 7970
     'return' => 'bool',
7971 7971
     'params' => 'resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h',
7972 7972
     'description' => 'Copy part of an image',
7973 7973
   ),
7974 7974
   'imagecopymerge' => 
7975
-  array (
7975
+  array(
7976 7976
     'return' => 'bool',
7977 7977
     'params' => 'resource src_im, resource dst_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct',
7978 7978
     'description' => 'Merge one part of an image with another',
7979 7979
   ),
7980 7980
   'imagecopymergegray' => 
7981
-  array (
7981
+  array(
7982 7982
     'return' => 'bool',
7983 7983
     'params' => 'resource src_im, resource dst_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct',
7984 7984
     'description' => 'Merge one part of an image with another',
7985 7985
   ),
7986 7986
   'imagecopyresized' => 
7987
-  array (
7987
+  array(
7988 7988
     'return' => 'bool',
7989 7989
     'params' => 'resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int dst_w, int dst_h, int src_w, int src_h',
7990 7990
     'description' => 'Copy and resize part of an image',
7991 7991
   ),
7992 7992
   'imagesx' => 
7993
-  array (
7993
+  array(
7994 7994
     'return' => 'int',
7995 7995
     'params' => 'resource im',
7996 7996
     'description' => 'Get image width',
7997 7997
   ),
7998 7998
   'imagesy' => 
7999
-  array (
7999
+  array(
8000 8000
     'return' => 'int',
8001 8001
     'params' => 'resource im',
8002 8002
     'description' => 'Get image height',
8003 8003
   ),
8004 8004
   'imageftbbox' => 
8005
-  array (
8005
+  array(
8006 8006
     'return' => 'array',
8007 8007
     'params' => 'float size, float angle, string font_file, string text [, array extrainfo]',
8008 8008
     'description' => 'Give the bounding box of a text using fonts via freetype2',
8009 8009
   ),
8010 8010
   'imagefttext' => 
8011
-  array (
8011
+  array(
8012 8012
     'return' => 'array',
8013 8013
     'params' => 'resource im, float size, float angle, int x, int y, int col, string font_file, string text [, array extrainfo]',
8014 8014
     'description' => 'Write text to the image using fonts via freetype2',
8015 8015
   ),
8016 8016
   'imagettfbbox' => 
8017
-  array (
8017
+  array(
8018 8018
     'return' => 'array',
8019 8019
     'params' => 'float size, float angle, string font_file, string text',
8020 8020
     'description' => 'Give the bounding box of a text using TrueType fonts',
8021 8021
   ),
8022 8022
   'imagettftext' => 
8023
-  array (
8023
+  array(
8024 8024
     'return' => 'array',
8025 8025
     'params' => 'resource im, float size, float angle, int x, int y, int col, string font_file, string text',
8026 8026
     'description' => 'Write text to the image using a TrueType font',
8027 8027
   ),
8028 8028
   'imagepsloadfont' => 
8029
-  array (
8029
+  array(
8030 8030
     'return' => 'resource',
8031 8031
     'params' => 'string pathname',
8032 8032
     'description' => 'Load a new font from specified file',
8033 8033
   ),
8034 8034
   'imagepscopyfont' => 
8035
-  array (
8035
+  array(
8036 8036
     'return' => 'int',
8037 8037
     'params' => 'int font_index',
8038 8038
     'description' => 'Make a copy of a font for purposes like extending or reenconding',
8039 8039
   ),
8040 8040
   'imagepsfreefont' => 
8041
-  array (
8041
+  array(
8042 8042
     'return' => 'bool',
8043 8043
     'params' => 'resource font_index',
8044 8044
     'description' => 'Free memory used by a font',
8045 8045
   ),
8046 8046
   'imagepsencodefont' => 
8047
-  array (
8047
+  array(
8048 8048
     'return' => 'bool',
8049 8049
     'params' => 'resource font_index, string filename',
8050 8050
     'description' => 'To change a fonts character encoding vector',
8051 8051
   ),
8052 8052
   'imagepsextendfont' => 
8053
-  array (
8053
+  array(
8054 8054
     'return' => 'bool',
8055 8055
     'params' => 'resource font_index, float extend',
8056 8056
     'description' => 'Extend or or condense (if extend < 1) a font',
8057 8057
   ),
8058 8058
   'imagepsslantfont' => 
8059
-  array (
8059
+  array(
8060 8060
     'return' => 'bool',
8061 8061
     'params' => 'resource font_index, float slant',
8062 8062
     'description' => 'Slant a font',
8063 8063
   ),
8064 8064
   'imagepstext' => 
8065
-  array (
8065
+  array(
8066 8066
     'return' => 'array',
8067 8067
     'params' => 'resource image, string text, resource font, int size, int xcoord, int ycoord [, int space, int tightness, float angle, int antialias]',
8068 8068
     'description' => 'Rasterize a string over an image',
8069 8069
   ),
8070 8070
   'imagepsbbox' => 
8071
-  array (
8071
+  array(
8072 8072
     'return' => 'array',
8073 8073
     'params' => 'string text, resource font, int size [, int space, int tightness, int angle]',
8074 8074
     'description' => 'Return the bounding box needed by a string if rasterized',
8075 8075
   ),
8076 8076
   'image2wbmp' => 
8077
-  array (
8077
+  array(
8078 8078
     'return' => 'bool',
8079 8079
     'params' => 'resource im [, string filename [, int threshold]]',
8080 8080
     'description' => 'Output WBMP image to browser or file',
8081 8081
   ),
8082 8082
   'imagefilter' => 
8083
-  array (
8083
+  array(
8084 8084
     'return' => 'bool',
8085 8085
     'params' => 'resource src_im, int filtertype, [args] ',
8086 8086
     'description' => 'Applies Filter an image using a custom angle',
8087 8087
   ),
8088 8088
   'imageconvolution' => 
8089
-  array (
8089
+  array(
8090 8090
     'return' => 'resource',
8091 8091
     'params' => 'resource src_im, array matrix3x3, double div, double offset',
8092 8092
     'description' => 'Apply a 3x3 convolution matrix, using coefficient div and offset',
8093 8093
   ),
8094 8094
   'imageantialias' => 
8095
-  array (
8095
+  array(
8096 8096
     'return' => 'bool',
8097 8097
     'params' => 'resource im, bool on',
8098 8098
     'description' => 'Should antialiased functions used or not',
8099 8099
   ),
8100 8100
   'recode_string' => 
8101
-  array (
8101
+  array(
8102 8102
     'return' => 'string',
8103 8103
     'params' => 'string request, string str',
8104 8104
     'description' => 'Recode string str according to request string',
8105 8105
   ),
8106 8106
   'recode_file' => 
8107
-  array (
8107
+  array(
8108 8108
     'return' => 'bool',
8109 8109
     'params' => 'string request, resource input, resource output',
8110 8110
     'description' => 'Recode file input into file output according to request',
8111 8111
   ),
8112 8112
   'posix_kill' => 
8113
-  array (
8113
+  array(
8114 8114
     'return' => 'bool',
8115 8115
     'params' => 'int pid, int sig',
8116 8116
     'description' => 'Send a signal to a process (POSIX.1, 3.3.2)',
8117 8117
   ),
8118 8118
   'posix_getpid' => 
8119
-  array (
8119
+  array(
8120 8120
     'return' => 'int',
8121 8121
     'params' => 'void',
8122 8122
     'description' => 'Get the current process id (POSIX.1, 4.1.1)',
8123 8123
   ),
8124 8124
   'posix_getppid' => 
8125
-  array (
8125
+  array(
8126 8126
     'return' => 'int',
8127 8127
     'params' => 'void',
8128 8128
     'description' => 'Get the parent process id (POSIX.1, 4.1.1)',
8129 8129
   ),
8130 8130
   'posix_getuid' => 
8131
-  array (
8131
+  array(
8132 8132
     'return' => 'int',
8133 8133
     'params' => 'void',
8134 8134
     'description' => 'Get the current user id (POSIX.1, 4.2.1)',
8135 8135
   ),
8136 8136
   'posix_getgid' => 
8137
-  array (
8137
+  array(
8138 8138
     'return' => 'int',
8139 8139
     'params' => 'void',
8140 8140
     'description' => 'Get the current group id (POSIX.1, 4.2.1)',
8141 8141
   ),
8142 8142
   'posix_geteuid' => 
8143
-  array (
8143
+  array(
8144 8144
     'return' => 'int',
8145 8145
     'params' => 'void',
8146 8146
     'description' => 'Get the current effective user id (POSIX.1, 4.2.1)',
8147 8147
   ),
8148 8148
   'posix_getegid' => 
8149
-  array (
8149
+  array(
8150 8150
     'return' => 'int',
8151 8151
     'params' => 'void',
8152 8152
     'description' => 'Get the current effective group id (POSIX.1, 4.2.1)',
8153 8153
   ),
8154 8154
   'posix_setuid' => 
8155
-  array (
8155
+  array(
8156 8156
     'return' => 'bool',
8157 8157
     'params' => 'long uid',
8158 8158
     'description' => 'Set user id (POSIX.1, 4.2.2)',
8159 8159
   ),
8160 8160
   'posix_setgid' => 
8161
-  array (
8161
+  array(
8162 8162
     'return' => 'bool',
8163 8163
     'params' => 'int uid',
8164 8164
     'description' => 'Set group id (POSIX.1, 4.2.2)',
8165 8165
   ),
8166 8166
   'posix_seteuid' => 
8167
-  array (
8167
+  array(
8168 8168
     'return' => 'bool',
8169 8169
     'params' => 'long uid',
8170 8170
     'description' => 'Set effective user id',
8171 8171
   ),
8172 8172
   'posix_setegid' => 
8173
-  array (
8173
+  array(
8174 8174
     'return' => 'bool',
8175 8175
     'params' => 'long uid',
8176 8176
     'description' => 'Set effective group id',
8177 8177
   ),
8178 8178
   'posix_getgroups' => 
8179
-  array (
8179
+  array(
8180 8180
     'return' => 'array',
8181 8181
     'params' => 'void',
8182 8182
     'description' => 'Get supplementary group id\'s (POSIX.1, 4.2.3)',
8183 8183
   ),
8184 8184
   'posix_getlogin' => 
8185
-  array (
8185
+  array(
8186 8186
     'return' => 'string',
8187 8187
     'params' => 'void',
8188 8188
     'description' => 'Get user name (POSIX.1, 4.2.4)',
8189 8189
   ),
8190 8190
   'posix_getpgrp' => 
8191
-  array (
8191
+  array(
8192 8192
     'return' => 'int',
8193 8193
     'params' => 'void',
8194 8194
     'description' => 'Get current process group id (POSIX.1, 4.3.1)',
8195 8195
   ),
8196 8196
   'posix_setsid' => 
8197
-  array (
8197
+  array(
8198 8198
     'return' => 'int',
8199 8199
     'params' => 'void',
8200 8200
     'description' => 'Create session and set process group id (POSIX.1, 4.3.2)',
8201 8201
   ),
8202 8202
   'posix_setpgid' => 
8203
-  array (
8203
+  array(
8204 8204
     'return' => 'bool',
8205 8205
     'params' => 'int pid, int pgid',
8206 8206
     'description' => 'Set process group id for job control (POSIX.1, 4.3.3)',
8207 8207
   ),
8208 8208
   'posix_getpgid' => 
8209
-  array (
8209
+  array(
8210 8210
     'return' => 'int',
8211 8211
     'params' => 'void',
8212 8212
     'description' => 'Get the process group id of the specified process (This is not a POSIX function, but a SVR4ism, so we compile conditionally)',
8213 8213
   ),
8214 8214
   'posix_getsid' => 
8215
-  array (
8215
+  array(
8216 8216
     'return' => 'int',
8217 8217
     'params' => 'void',
8218 8218
     'description' => 'Get process group id of session leader (This is not a POSIX function, but a SVR4ism, so be compile conditionally)',
8219 8219
   ),
8220 8220
   'posix_uname' => 
8221
-  array (
8221
+  array(
8222 8222
     'return' => 'array',
8223 8223
     'params' => 'void',
8224 8224
     'description' => 'Get system name (POSIX.1, 4.4.1)',
8225 8225
   ),
8226 8226
   'posix_times' => 
8227
-  array (
8227
+  array(
8228 8228
     'return' => 'array',
8229 8229
     'params' => 'void',
8230 8230
     'description' => 'Get process times (POSIX.1, 4.5.2)',
8231 8231
   ),
8232 8232
   'posix_ctermid' => 
8233
-  array (
8233
+  array(
8234 8234
     'return' => 'string',
8235 8235
     'params' => 'void',
8236 8236
     'description' => 'Generate terminal path name (POSIX.1, 4.7.1)',
8237 8237
   ),
8238 8238
   'posix_ttyname' => 
8239
-  array (
8239
+  array(
8240 8240
     'return' => 'string',
8241 8241
     'params' => 'int fd',
8242 8242
     'description' => 'Determine terminal device name (POSIX.1, 4.7.2)',
8243 8243
   ),
8244 8244
   'posix_isatty' => 
8245
-  array (
8245
+  array(
8246 8246
     'return' => 'bool',
8247 8247
     'params' => 'int fd',
8248 8248
     'description' => 'Determine if filedesc is a tty (POSIX.1, 4.7.1)',
8249 8249
   ),
8250 8250
   'posix_getcwd' => 
8251
-  array (
8251
+  array(
8252 8252
     'return' => 'string',
8253 8253
     'params' => 'void',
8254 8254
     'description' => 'Get working directory pathname (POSIX.1, 5.2.2)',
8255 8255
   ),
8256 8256
   'posix_mkfifo' => 
8257
-  array (
8257
+  array(
8258 8258
     'return' => 'bool',
8259 8259
     'params' => 'string pathname, int mode',
8260 8260
     'description' => 'Make a FIFO special file (POSIX.1, 5.4.2)',
8261 8261
   ),
8262 8262
   'posix_mknod' => 
8263
-  array (
8263
+  array(
8264 8264
     'return' => 'bool',
8265 8265
     'params' => 'string pathname, int mode [, int major [, int minor]]',
8266 8266
     'description' => 'Make a special or ordinary file (POSIX.1)',
8267 8267
   ),
8268 8268
   'posix_access' => 
8269
-  array (
8269
+  array(
8270 8270
     'return' => 'bool',
8271 8271
     'params' => 'string file [, int mode]',
8272 8272
     'description' => 'Determine accessibility of a file (POSIX.1 5.6.3)',
8273 8273
   ),
8274 8274
   'posix_getgrnam' => 
8275
-  array (
8275
+  array(
8276 8276
     'return' => 'array',
8277 8277
     'params' => 'string groupname',
8278 8278
     'description' => 'Group database access (POSIX.1, 9.2.1)',
8279 8279
   ),
8280 8280
   'posix_getgrgid' => 
8281
-  array (
8281
+  array(
8282 8282
     'return' => 'array',
8283 8283
     'params' => 'long gid',
8284 8284
     'description' => 'Group database access (POSIX.1, 9.2.1)',
8285 8285
   ),
8286 8286
   'posix_getpwnam' => 
8287
-  array (
8287
+  array(
8288 8288
     'return' => 'array',
8289 8289
     'params' => 'string groupname',
8290 8290
     'description' => 'User database access (POSIX.1, 9.2.2)',
8291 8291
   ),
8292 8292
   'posix_getpwuid' => 
8293
-  array (
8293
+  array(
8294 8294
     'return' => 'array',
8295 8295
     'params' => 'long uid',
8296 8296
     'description' => 'User database access (POSIX.1, 9.2.2)',
8297 8297
   ),
8298 8298
   'posix_getrlimit' => 
8299
-  array (
8299
+  array(
8300 8300
     'return' => 'array',
8301 8301
     'params' => 'void',
8302 8302
     'description' => 'Get system resource consumption limits (This is not a POSIX function, but a BSDism and a SVR4ism. We compile conditionally)',
8303 8303
   ),
8304 8304
   'posix_get_last_error' => 
8305
-  array (
8305
+  array(
8306 8306
     'return' => 'int',
8307 8307
     'params' => 'void',
8308 8308
     'description' => 'Retrieve the error number set by the last posix function which failed.',
8309 8309
   ),
8310 8310
   'posix_strerror' => 
8311
-  array (
8311
+  array(
8312 8312
     'return' => 'string',
8313 8313
     'params' => 'int errno',
8314 8314
     'description' => 'Retrieve the system error message associated with the given errno.',
8315 8315
   ),
8316 8316
   'curl_multi_init' => 
8317
-  array (
8317
+  array(
8318 8318
     'return' => 'resource',
8319 8319
     'params' => 'void',
8320 8320
     'description' => 'Returns a new cURL multi handle',
8321 8321
   ),
8322 8322
   'curl_multi_add_handle' => 
8323
-  array (
8323
+  array(
8324 8324
     'return' => 'int',
8325 8325
     'params' => 'resource multi, resource ch',
8326 8326
     'description' => 'Add a normal cURL handle to a cURL multi handle',
8327 8327
   ),
8328 8328
   'curl_multi_remove_handle' => 
8329
-  array (
8329
+  array(
8330 8330
     'return' => 'int',
8331 8331
     'params' => 'resource mh, resource ch',
8332 8332
     'description' => 'Remove a multi handle from a set of cURL handles',
8333 8333
   ),
8334 8334
   'curl_multi_select' => 
8335
-  array (
8335
+  array(
8336 8336
     'return' => 'int',
8337 8337
     'params' => 'resource mh[, double timeout]',
8338 8338
     'description' => 'Get all the sockets associated with the cURL extension, which can then be "selected"',
8339 8339
   ),
8340 8340
   'curl_multi_exec' => 
8341
-  array (
8341
+  array(
8342 8342
     'return' => 'int',
8343 8343
     'params' => 'resource mh, int &still_running',
8344 8344
     'description' => 'Run the sub-connections of the current cURL handle',
8345 8345
   ),
8346 8346
   'curl_multi_getcontent' => 
8347
-  array (
8347
+  array(
8348 8348
     'return' => 'string',
8349 8349
     'params' => 'resource ch',
8350 8350
     'description' => 'Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set',
8351 8351
   ),
8352 8352
   'curl_multi_info_read' => 
8353
-  array (
8353
+  array(
8354 8354
     'return' => 'array',
8355 8355
     'params' => 'resource mh',
8356 8356
     'description' => 'Get information about the current transfers',
8357 8357
   ),
8358 8358
   'curl_multi_close' => 
8359
-  array (
8359
+  array(
8360 8360
     'return' => 'void',
8361 8361
     'params' => 'resource mh',
8362 8362
     'description' => 'Close a set of cURL handles',
8363 8363
   ),
8364 8364
   'curl_version' => 
8365
-  array (
8365
+  array(
8366 8366
     'return' => 'array',
8367 8367
     'params' => '[int version]',
8368 8368
     'description' => 'Return cURL version information.',
8369 8369
   ),
8370 8370
   'curl_init' => 
8371
-  array (
8371
+  array(
8372 8372
     'return' => 'resource',
8373 8373
     'params' => '[string url]',
8374 8374
     'description' => 'Initialize a CURL session',
8375 8375
   ),
8376 8376
   'curl_copy_handle' => 
8377
-  array (
8377
+  array(
8378 8378
     'return' => 'resource',
8379 8379
     'params' => 'resource ch',
8380 8380
     'description' => 'Copy a cURL handle along with all of it\'s preferences',
8381 8381
   ),
8382 8382
   'curl_setopt' => 
8383
-  array (
8383
+  array(
8384 8384
     'return' => 'bool',
8385 8385
     'params' => 'resource ch, int option, mixed value',
8386 8386
     'description' => 'Set an option for a CURL transfer',
8387 8387
   ),
8388 8388
   'curl_setopt_array' => 
8389
-  array (
8389
+  array(
8390 8390
     'return' => 'bool',
8391 8391
     'params' => 'resource ch, array options',
8392 8392
     'description' => 'Set an array of option for a CURL transfer',
8393 8393
   ),
8394 8394
   'curl_exec' => 
8395
-  array (
8395
+  array(
8396 8396
     'return' => 'bool',
8397 8397
     'params' => 'resource ch',
8398 8398
     'description' => 'Perform a CURL session',
8399 8399
   ),
8400 8400
   'curl_getinfo' => 
8401
-  array (
8401
+  array(
8402 8402
     'return' => 'mixed',
8403 8403
     'params' => 'resource ch, int opt',
8404 8404
     'description' => 'Get information regarding a specific transfer',
8405 8405
   ),
8406 8406
   'curl_error' => 
8407
-  array (
8407
+  array(
8408 8408
     'return' => 'string',
8409 8409
     'params' => 'resource ch',
8410 8410
     'description' => 'Return a string contain the last error for the current session',
8411 8411
   ),
8412 8412
   'curl_errno' => 
8413
-  array (
8413
+  array(
8414 8414
     'return' => 'int',
8415 8415
     'params' => 'resource ch',
8416 8416
     'description' => 'Return an integer containing the last error number',
8417 8417
   ),
8418 8418
   'curl_close' => 
8419
-  array (
8419
+  array(
8420 8420
     'return' => 'void',
8421 8421
     'params' => 'resource ch',
8422 8422
     'description' => 'Close a CURL session',
8423 8423
   ),
8424 8424
   'ncurses_addch' => 
8425
-  array (
8425
+  array(
8426 8426
     'return' => 'int',
8427 8427
     'params' => 'int ch',
8428 8428
     'description' => 'Adds character at current position and advance cursor',
8429 8429
   ),
8430 8430
   'ncurses_waddch' => 
8431
-  array (
8431
+  array(
8432 8432
     'return' => 'int',
8433 8433
     'params' => 'resource window, int ch',
8434 8434
     'description' => 'Adds character at current position in a window and advance cursor',
8435 8435
   ),
8436 8436
   'ncurses_color_set' => 
8437
-  array (
8437
+  array(
8438 8438
     'return' => 'int',
8439 8439
     'params' => 'int pair',
8440 8440
     'description' => 'Sets fore- and background color',
8441 8441
   ),
8442 8442
   'ncurses_delwin' => 
8443
-  array (
8443
+  array(
8444 8444
     'return' => 'bool',
8445 8445
     'params' => 'resource window',
8446 8446
     'description' => 'Deletes a ncurses window',
8447 8447
   ),
8448 8448
   'ncurses_end' => 
8449
-  array (
8449
+  array(
8450 8450
     'return' => 'int',
8451 8451
     'params' => 'void',
8452 8452
     'description' => 'Stops using ncurses, clean up the screen',
8453 8453
   ),
8454 8454
   'ncurses_getch' => 
8455
-  array (
8455
+  array(
8456 8456
     'return' => 'int',
8457 8457
     'params' => 'void',
8458 8458
     'description' => 'Reads a character from keyboard',
8459 8459
   ),
8460 8460
   'ncurses_has_colors' => 
8461
-  array (
8461
+  array(
8462 8462
     'return' => 'bool',
8463 8463
     'params' => 'void',
8464 8464
     'description' => 'Checks if terminal has colors',
8465 8465
   ),
8466 8466
   'ncurses_init' => 
8467
-  array (
8467
+  array(
8468 8468
     'return' => 'int',
8469 8469
     'params' => 'void',
8470 8470
     'description' => 'Initializes ncurses',
8471 8471
   ),
8472 8472
   'ncurses_init_pair' => 
8473
-  array (
8473
+  array(
8474 8474
     'return' => 'int',
8475 8475
     'params' => 'int pair, int fg, int bg',
8476 8476
     'description' => 'Allocates a color pair',
8477 8477
   ),
8478 8478
   'ncurses_move' => 
8479
-  array (
8479
+  array(
8480 8480
     'return' => 'int',
8481 8481
     'params' => 'int y, int x',
8482 8482
     'description' => 'Moves output position',
8483 8483
   ),
8484 8484
   'ncurses_newpad' => 
8485
-  array (
8485
+  array(
8486 8486
     'return' => 'resource',
8487 8487
     'params' => 'int rows, int cols',
8488 8488
     'description' => 'Creates a new pad (window)',
8489 8489
   ),
8490 8490
   'ncurses_prefresh' => 
8491
-  array (
8491
+  array(
8492 8492
     'return' => 'int',
8493 8493
     'params' => 'resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol',
8494 8494
     'description' => 'Copys a region from a pad into the virtual screen',
8495 8495
   ),
8496 8496
   'ncurses_pnoutrefresh' => 
8497
-  array (
8497
+  array(
8498 8498
     'return' => 'int',
8499 8499
     'params' => 'resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol',
8500 8500
     'description' => 'Copys a region from a pad into the virtual screen',
8501 8501
   ),
8502 8502
   'ncurses_newwin' => 
8503
-  array (
8503
+  array(
8504 8504
     'return' => 'int',
8505 8505
     'params' => 'int rows, int cols, int y, int x',
8506 8506
     'description' => 'Creates a new window',
8507 8507
   ),
8508 8508
   'ncurses_refresh' => 
8509
-  array (
8509
+  array(
8510 8510
     'return' => 'int',
8511 8511
     'params' => 'int ch',
8512 8512
     'description' => 'Refresh screen',
8513 8513
   ),
8514 8514
   'ncurses_start_color' => 
8515
-  array (
8515
+  array(
8516 8516
     'return' => 'int',
8517 8517
     'params' => 'void',
8518 8518
     'description' => 'Starts using colors',
8519 8519
   ),
8520 8520
   'ncurses_standout' => 
8521
-  array (
8521
+  array(
8522 8522
     'return' => 'int',
8523 8523
     'params' => 'void',
8524 8524
     'description' => 'Starts using \'standout\' attribute',
8525 8525
   ),
8526 8526
   'ncurses_standend' => 
8527
-  array (
8527
+  array(
8528 8528
     'return' => 'int',
8529 8529
     'params' => 'void',
8530 8530
     'description' => 'Stops using \'standout\' attribute',
8531 8531
   ),
8532 8532
   'ncurses_baudrate' => 
8533
-  array (
8533
+  array(
8534 8534
     'return' => 'int',
8535 8535
     'params' => 'void',
8536 8536
     'description' => 'Returns baudrate of terminal',
8537 8537
   ),
8538 8538
   'ncurses_beep' => 
8539
-  array (
8539
+  array(
8540 8540
     'return' => 'int',
8541 8541
     'params' => 'void',
8542 8542
     'description' => 'Let the terminal beep',
8543 8543
   ),
8544 8544
   'ncurses_can_change_color' => 
8545
-  array (
8545
+  array(
8546 8546
     'return' => 'bool',
8547 8547
     'params' => 'void',
8548 8548
     'description' => 'Checks if we can change terminals colors',
8549 8549
   ),
8550 8550
   'ncurses_cbreak' => 
8551
-  array (
8551
+  array(
8552 8552
     'return' => 'bool',
8553 8553
     'params' => 'void',
8554 8554
     'description' => 'Switches of input buffering',
8555 8555
   ),
8556 8556
   'ncurses_clear' => 
8557
-  array (
8557
+  array(
8558 8558
     'return' => 'bool',
8559 8559
     'params' => 'void',
8560 8560
     'description' => 'Clears screen',
8561 8561
   ),
8562 8562
   'ncurses_clrtobot' => 
8563
-  array (
8563
+  array(
8564 8564
     'return' => 'bool',
8565 8565
     'params' => 'void',
8566 8566
     'description' => 'Clears screen from current position to bottom',
8567 8567
   ),
8568 8568
   'ncurses_clrtoeol' => 
8569
-  array (
8569
+  array(
8570 8570
     'return' => 'bool',
8571 8571
     'params' => 'void',
8572 8572
     'description' => 'Clears screen from current position to end of line',
8573 8573
   ),
8574 8574
   'ncurses_reset_prog_mode' => 
8575
-  array (
8575
+  array(
8576 8576
     'return' => 'int',
8577 8577
     'params' => 'void',
8578 8578
     'description' => 'Resets the prog mode saved by def_prog_mode',
8579 8579
   ),
8580 8580
   'ncurses_reset_shell_mode' => 
8581
-  array (
8581
+  array(
8582 8582
     'return' => 'int',
8583 8583
     'params' => 'void',
8584 8584
     'description' => 'Resets the shell mode saved by def_shell_mode',
8585 8585
   ),
8586 8586
   'ncurses_def_prog_mode' => 
8587
-  array (
8587
+  array(
8588 8588
     'return' => 'int',
8589 8589
     'params' => 'void',
8590 8590
     'description' => 'Saves terminals (program) mode',
8591 8591
   ),
8592 8592
   'ncurses_def_shell_mode' => 
8593
-  array (
8593
+  array(
8594 8594
     'return' => 'int',
8595 8595
     'params' => 'void',
8596 8596
     'description' => 'Saves terminal (shell) mode',
8597 8597
   ),
8598 8598
   'ncurses_delch' => 
8599
-  array (
8599
+  array(
8600 8600
     'return' => 'int',
8601 8601
     'params' => 'void',
8602 8602
     'description' => 'Deletes character at current position, move rest of line left',
8603 8603
   ),
8604 8604
   'ncurses_deleteln' => 
8605
-  array (
8605
+  array(
8606 8606
     'return' => 'int',
8607 8607
     'params' => 'void',
8608 8608
     'description' => 'Deletes line at current position, move rest of screen up',
8609 8609
   ),
8610 8610
   'ncurses_doupdate' => 
8611
-  array (
8611
+  array(
8612 8612
     'return' => 'int',
8613 8613
     'params' => 'void',
8614 8614
     'description' => 'Writes all prepared refreshes to terminal',
8615 8615
   ),
8616 8616
   'ncurses_echo' => 
8617
-  array (
8617
+  array(
8618 8618
     'return' => 'int',
8619 8619
     'params' => 'void',
8620 8620
     'description' => 'Activates keyboard input echo',
8621 8621
   ),
8622 8622
   'ncurses_erase' => 
8623
-  array (
8623
+  array(
8624 8624
     'return' => 'int',
8625 8625
     'params' => 'void',
8626 8626
     'description' => 'Erases terminal screen',
8627 8627
   ),
8628 8628
   'ncurses_erasechar' => 
8629
-  array (
8629
+  array(
8630 8630
     'return' => 'string',
8631 8631
     'params' => 'void',
8632 8632
     'description' => 'Returns current erase character',
8633 8633
   ),
8634 8634
   'ncurses_flash' => 
8635
-  array (
8635
+  array(
8636 8636
     'return' => 'int',
8637 8637
     'params' => 'void',
8638 8638
     'description' => 'Flashes terminal screen (visual bell)',
8639 8639
   ),
8640 8640
   'ncurses_flushinp' => 
8641
-  array (
8641
+  array(
8642 8642
     'return' => 'int',
8643 8643
     'params' => 'void',
8644 8644
     'description' => 'Flushes keyboard input buffer',
8645 8645
   ),
8646 8646
   'ncurses_has_ic' => 
8647
-  array (
8647
+  array(
8648 8648
     'return' => 'int',
8649 8649
     'params' => 'void',
8650 8650
     'description' => 'Checks for insert- and delete-capabilities',
8651 8651
   ),
8652 8652
   'ncurses_has_il' => 
8653
-  array (
8653
+  array(
8654 8654
     'return' => 'int',
8655 8655
     'params' => 'void',
8656 8656
     'description' => 'Checks for line insert- and delete-capabilities',
8657 8657
   ),
8658 8658
   'ncurses_inch' => 
8659
-  array (
8659
+  array(
8660 8660
     'return' => 'string',
8661 8661
     'params' => 'void',
8662 8662
     'description' => 'Gets character and attribute at current position',
8663 8663
   ),
8664 8664
   'ncurses_insertln' => 
8665
-  array (
8665
+  array(
8666 8666
     'return' => 'int',
8667 8667
     'params' => 'void',
8668 8668
     'description' => 'Inserts a line, move rest of screen down',
8669 8669
   ),
8670 8670
   'ncurses_isendwin' => 
8671
-  array (
8671
+  array(
8672 8672
     'return' => 'int',
8673 8673
     'params' => 'void',
8674 8674
     'description' => 'Ncurses is in endwin mode, normal screen output may be performed',
8675 8675
   ),
8676 8676
   'ncurses_killchar' => 
8677
-  array (
8677
+  array(
8678 8678
     'return' => 'string',
8679 8679
     'params' => 'void',
8680 8680
     'description' => 'Returns current line kill character',
8681 8681
   ),
8682 8682
   'ncurses_nl' => 
8683
-  array (
8683
+  array(
8684 8684
     'return' => 'int',
8685 8685
     'params' => 'void',
8686 8686
     'description' => 'Translates newline and carriage return / line feed',
8687 8687
   ),
8688 8688
   'ncurses_nocbreak' => 
8689
-  array (
8689
+  array(
8690 8690
     'return' => 'int',
8691 8691
     'params' => 'void',
8692 8692
     'description' => 'Switches terminal to cooked mode',
8693 8693
   ),
8694 8694
   'ncurses_noecho' => 
8695
-  array (
8695
+  array(
8696 8696
     'return' => 'int',
8697 8697
     'params' => 'void',
8698 8698
     'description' => 'Switches off keyboard input echo',
8699 8699
   ),
8700 8700
   'ncurses_nonl' => 
8701
-  array (
8701
+  array(
8702 8702
     'return' => 'int',
8703 8703
     'params' => 'void',
8704 8704
     'description' => 'Do not ranslate newline and carriage return / line feed',
8705 8705
   ),
8706 8706
   'ncurses_noraw' => 
8707
-  array (
8707
+  array(
8708 8708
     'return' => 'bool',
8709 8709
     'params' => 'void',
8710 8710
     'description' => 'Switches terminal out of raw mode',
8711 8711
   ),
8712 8712
   'ncurses_raw' => 
8713
-  array (
8713
+  array(
8714 8714
     'return' => 'int',
8715 8715
     'params' => 'void',
8716 8716
     'description' => 'Switches terminal into raw mode',
8717 8717
   ),
8718 8718
   'ncurses_meta' => 
8719
-  array (
8719
+  array(
8720 8720
     'return' => 'int',
8721 8721
     'params' => 'resource window, bool 8bit',
8722 8722
     'description' => 'Enables/Disable 8-bit meta key information',
8723 8723
   ),
8724 8724
   'ncurses_werase' => 
8725
-  array (
8725
+  array(
8726 8726
     'return' => 'int',
8727 8727
     'params' => 'resource window',
8728 8728
     'description' => 'Erase window contents',
8729 8729
   ),
8730 8730
   'ncurses_resetty' => 
8731
-  array (
8731
+  array(
8732 8732
     'return' => 'int',
8733 8733
     'params' => 'void',
8734 8734
     'description' => 'Restores saved terminal state',
8735 8735
   ),
8736 8736
   'ncurses_savetty' => 
8737
-  array (
8737
+  array(
8738 8738
     'return' => 'int',
8739 8739
     'params' => 'void',
8740 8740
     'description' => 'Saves terminal state',
8741 8741
   ),
8742 8742
   'ncurses_termattrs' => 
8743
-  array (
8743
+  array(
8744 8744
     'return' => 'int',
8745 8745
     'params' => 'void',
8746 8746
     'description' => 'Returns a logical OR of all attribute flags supported by terminal',
8747 8747
   ),
8748 8748
   'ncurses_use_default_colors' => 
8749
-  array (
8749
+  array(
8750 8750
     'return' => 'int',
8751 8751
     'params' => 'void',
8752 8752
     'description' => 'Assigns terminal default colors to color id -1',
8753 8753
   ),
8754 8754
   'ncurses_slk_attr' => 
8755
-  array (
8755
+  array(
8756 8756
     'return' => 'int',
8757 8757
     'params' => 'void',
8758 8758
     'description' => 'Returns current soft label keys attribute',
8759 8759
   ),
8760 8760
   'ncurses_slk_clear' => 
8761
-  array (
8761
+  array(
8762 8762
     'return' => 'int',
8763 8763
     'params' => 'void',
8764 8764
     'description' => 'Clears soft label keys from screen',
8765 8765
   ),
8766 8766
   'ncurses_slk_noutrefresh' => 
8767
-  array (
8767
+  array(
8768 8768
     'return' => 'int',
8769 8769
     'params' => 'void',
8770 8770
     'description' => 'Copies soft label keys to virtual screen',
8771 8771
   ),
8772 8772
   'ncurses_slk_refresh' => 
8773
-  array (
8773
+  array(
8774 8774
     'return' => 'int',
8775 8775
     'params' => 'void',
8776 8776
     'description' => 'Copies soft label keys to screen',
8777 8777
   ),
8778 8778
   'ncurses_slk_restore' => 
8779
-  array (
8779
+  array(
8780 8780
     'return' => 'int',
8781 8781
     'params' => 'void',
8782 8782
     'description' => 'Restores soft label keys',
8783 8783
   ),
8784 8784
   'ncurses_slk_touch' => 
8785
-  array (
8785
+  array(
8786 8786
     'return' => 'int',
8787 8787
     'params' => 'void',
8788 8788
     'description' => 'Forces output when ncurses_slk_noutrefresh is performed',
8789 8789
   ),
8790 8790
   'ncurses_slk_set' => 
8791
-  array (
8791
+  array(
8792 8792
     'return' => 'bool',
8793 8793
     'params' => 'int labelnr, string label, int format',
8794 8794
     'description' => 'Sets function key labels',
8795 8795
   ),
8796 8796
   'ncurses_attroff' => 
8797
-  array (
8797
+  array(
8798 8798
     'return' => 'int',
8799 8799
     'params' => 'int attributes',
8800 8800
     'description' => 'Turns off the given attributes',
8801 8801
   ),
8802 8802
   'ncurses_attron' => 
8803
-  array (
8803
+  array(
8804 8804
     'return' => 'int',
8805 8805
     'params' => 'int attributes',
8806 8806
     'description' => 'Turns on the given attributes',
8807 8807
   ),
8808 8808
   'ncurses_attrset' => 
8809
-  array (
8809
+  array(
8810 8810
     'return' => 'int',
8811 8811
     'params' => 'int attributes',
8812 8812
     'description' => 'Sets given attributes',
8813 8813
   ),
8814 8814
   'ncurses_bkgd' => 
8815
-  array (
8815
+  array(
8816 8816
     'return' => 'int',
8817 8817
     'params' => 'int attrchar',
8818 8818
     'description' => 'Sets background property for terminal screen',
8819 8819
   ),
8820 8820
   'ncurses_curs_set' => 
8821
-  array (
8821
+  array(
8822 8822
     'return' => 'int',
8823 8823
     'params' => 'int visibility',
8824 8824
     'description' => 'Sets cursor state',
8825 8825
   ),
8826 8826
   'ncurses_delay_output' => 
8827
-  array (
8827
+  array(
8828 8828
     'return' => 'int',
8829 8829
     'params' => 'int milliseconds',
8830 8830
     'description' => 'Delays output on terminal using padding characters',
8831 8831
   ),
8832 8832
   'ncurses_echochar' => 
8833
-  array (
8833
+  array(
8834 8834
     'return' => 'int',
8835 8835
     'params' => 'int character',
8836 8836
     'description' => 'Single character output including refresh',
8837 8837
   ),
8838 8838
   'ncurses_halfdelay' => 
8839
-  array (
8839
+  array(
8840 8840
     'return' => 'int',
8841 8841
     'params' => 'int tenth',
8842 8842
     'description' => 'Puts terminal into halfdelay mode',
8843 8843
   ),
8844 8844
   'ncurses_has_key' => 
8845
-  array (
8845
+  array(
8846 8846
     'return' => 'int',
8847 8847
     'params' => 'int keycode',
8848 8848
     'description' => 'Checks for presence of a function key on terminal keyboard',
8849 8849
   ),
8850 8850
   'ncurses_insch' => 
8851
-  array (
8851
+  array(
8852 8852
     'return' => 'int',
8853 8853
     'params' => 'int character',
8854 8854
     'description' => 'Inserts character moving rest of line including character at current position',
8855 8855
   ),
8856 8856
   'ncurses_insdelln' => 
8857
-  array (
8857
+  array(
8858 8858
     'return' => 'int',
8859 8859
     'params' => 'int count',
8860 8860
     'description' => 'Inserts lines before current line scrolling down (negative numbers delete and scroll up)',
8861 8861
   ),
8862 8862
   'ncurses_mouseinterval' => 
8863
-  array (
8863
+  array(
8864 8864
     'return' => 'int',
8865 8865
     'params' => 'int milliseconds',
8866 8866
     'description' => 'Sets timeout for mouse button clicks',
8867 8867
   ),
8868 8868
   'ncurses_napms' => 
8869
-  array (
8869
+  array(
8870 8870
     'return' => 'int',
8871 8871
     'params' => 'int milliseconds',
8872 8872
     'description' => 'Sleep',
8873 8873
   ),
8874 8874
   'ncurses_scrl' => 
8875
-  array (
8875
+  array(
8876 8876
     'return' => 'int',
8877 8877
     'params' => 'int count',
8878 8878
     'description' => 'Scrolls window content up or down without changing current position',
8879 8879
   ),
8880 8880
   'ncurses_slk_attroff' => 
8881
-  array (
8881
+  array(
8882 8882
     'return' => 'int',
8883 8883
     'params' => 'int intarg',
8884 8884
     'description' => '???',
8885 8885
   ),
8886 8886
   'ncurses_slk_attron' => 
8887
-  array (
8887
+  array(
8888 8888
     'return' => 'int',
8889 8889
     'params' => 'int intarg',
8890 8890
     'description' => '???',
8891 8891
   ),
8892 8892
   'ncurses_slk_attrset' => 
8893
-  array (
8893
+  array(
8894 8894
     'return' => 'int',
8895 8895
     'params' => 'int intarg',
8896 8896
     'description' => '???',
8897 8897
   ),
8898 8898
   'ncurses_slk_color' => 
8899
-  array (
8899
+  array(
8900 8900
     'return' => 'int',
8901 8901
     'params' => 'int intarg',
8902 8902
     'description' => 'Sets color for soft label keys',
8903 8903
   ),
8904 8904
   'ncurses_slk_init' => 
8905
-  array (
8905
+  array(
8906 8906
     'return' => 'int',
8907 8907
     'params' => 'int intarg',
8908 8908
     'description' => 'Inits soft label keys',
8909 8909
   ),
8910 8910
   'ncurses_typeahead' => 
8911
-  array (
8911
+  array(
8912 8912
     'return' => 'int',
8913 8913
     'params' => 'int fd',
8914 8914
     'description' => 'Specifys different filedescriptor for typeahead checking',
8915 8915
   ),
8916 8916
   'ncurses_ungetch' => 
8917
-  array (
8917
+  array(
8918 8918
     'return' => 'int',
8919 8919
     'params' => 'int keycode',
8920 8920
     'description' => 'Puts a character back into the input stream',
8921 8921
   ),
8922 8922
   'ncurses_vidattr' => 
8923
-  array (
8923
+  array(
8924 8924
     'return' => 'int',
8925 8925
     'params' => 'int intarg',
8926 8926
     'description' => '???',
8927 8927
   ),
8928 8928
   'ncurses_use_extended_names' => 
8929
-  array (
8929
+  array(
8930 8930
     'return' => 'int',
8931 8931
     'params' => 'bool flag',
8932 8932
     'description' => 'Controls use of extended names in terminfo descriptions',
8933 8933
   ),
8934 8934
   'ncurses_bkgdset' => 
8935
-  array (
8935
+  array(
8936 8936
     'return' => 'void',
8937 8937
     'params' => 'int attrchar',
8938 8938
     'description' => 'Controls screen background',
8939 8939
   ),
8940 8940
   'ncurses_filter' => 
8941
-  array (
8941
+  array(
8942 8942
     'return' => 'void',
8943 8943
     'params' => 'void',
8944 8944
     'description' => '',
8945 8945
   ),
8946 8946
   'ncurses_noqiflush' => 
8947
-  array (
8947
+  array(
8948 8948
     'return' => 'int',
8949 8949
     'params' => 'void',
8950 8950
     'description' => 'Do not flush on signal characters',
8951 8951
   ),
8952 8952
   'ncurses_qiflush' => 
8953
-  array (
8953
+  array(
8954 8954
     'return' => 'void',
8955 8955
     'params' => 'void',
8956 8956
     'description' => 'Flushes on signal characters',
8957 8957
   ),
8958 8958
   'ncurses_timeout' => 
8959
-  array (
8959
+  array(
8960 8960
     'return' => 'void',
8961 8961
     'params' => 'int millisec',
8962 8962
     'description' => 'Sets timeout for special key sequences',
8963 8963
   ),
8964 8964
   'ncurses_use_env' => 
8965
-  array (
8965
+  array(
8966 8966
     'return' => 'void',
8967 8967
     'params' => 'int flag',
8968 8968
     'description' => 'Controls use of environment information about terminal size',
8969 8969
   ),
8970 8970
   'ncurses_addstr' => 
8971
-  array (
8971
+  array(
8972 8972
     'return' => 'int',
8973 8973
     'params' => 'string text',
8974 8974
     'description' => 'Outputs text at current position',
8975 8975
   ),
8976 8976
   'ncurses_putp' => 
8977
-  array (
8977
+  array(
8978 8978
     'return' => 'int',
8979 8979
     'params' => 'string text',
8980 8980
     'description' => '???',
8981 8981
   ),
8982 8982
   'ncurses_scr_dump' => 
8983
-  array (
8983
+  array(
8984 8984
     'return' => 'int',
8985 8985
     'params' => 'string filename',
8986 8986
     'description' => 'Dumps screen content to file',
8987 8987
   ),
8988 8988
   'ncurses_scr_init' => 
8989
-  array (
8989
+  array(
8990 8990
     'return' => 'int',
8991 8991
     'params' => 'string filename',
8992 8992
     'description' => 'Initializes screen from file dump',
8993 8993
   ),
8994 8994
   'ncurses_scr_restore' => 
8995
-  array (
8995
+  array(
8996 8996
     'return' => 'int',
8997 8997
     'params' => 'string filename',
8998 8998
     'description' => 'Restores screen from file dump',
8999 8999
   ),
9000 9000
   'ncurses_scr_set' => 
9001
-  array (
9001
+  array(
9002 9002
     'return' => 'int',
9003 9003
     'params' => 'string filename',
9004 9004
     'description' => 'Inherits screen from file dump',
9005 9005
   ),
9006 9006
   'ncurses_mvaddch' => 
9007
-  array (
9007
+  array(
9008 9008
     'return' => 'int',
9009 9009
     'params' => 'int y, int x, int c',
9010 9010
     'description' => 'Moves current position and add character',
9011 9011
   ),
9012 9012
   'ncurses_mvaddchnstr' => 
9013
-  array (
9013
+  array(
9014 9014
     'return' => 'int',
9015 9015
     'params' => 'int y, int x, string s, int n',
9016 9016
     'description' => 'Moves position and add attrributed string with specified length',
9017 9017
   ),
9018 9018
   'ncurses_addchnstr' => 
9019
-  array (
9019
+  array(
9020 9020
     'return' => 'int',
9021 9021
     'params' => 'string s, int n',
9022 9022
     'description' => 'Adds attributed string with specified length at current position',
9023 9023
   ),
9024 9024
   'ncurses_mvaddchstr' => 
9025
-  array (
9025
+  array(
9026 9026
     'return' => 'int',
9027 9027
     'params' => 'int y, int x, string s',
9028 9028
     'description' => 'Moves position and add attributed string',
9029 9029
   ),
9030 9030
   'ncurses_addchstr' => 
9031
-  array (
9031
+  array(
9032 9032
     'return' => 'int',
9033 9033
     'params' => 'string s',
9034 9034
     'description' => 'Adds attributed string at current position',
9035 9035
   ),
9036 9036
   'ncurses_mvaddnstr' => 
9037
-  array (
9037
+  array(
9038 9038
     'return' => 'int',
9039 9039
     'params' => 'int y, int x, string s, int n',
9040 9040
     'description' => 'Moves position and add string with specified length',
9041 9041
   ),
9042 9042
   'ncurses_addnstr' => 
9043
-  array (
9043
+  array(
9044 9044
     'return' => 'int',
9045 9045
     'params' => 'string s, int n',
9046 9046
     'description' => 'Adds string with specified length at current position',
9047 9047
   ),
9048 9048
   'ncurses_mvaddstr' => 
9049
-  array (
9049
+  array(
9050 9050
     'return' => 'int',
9051 9051
     'params' => 'int y, int x, string s',
9052 9052
     'description' => 'Moves position and add string',
9053 9053
   ),
9054 9054
   'ncurses_mvdelch' => 
9055
-  array (
9055
+  array(
9056 9056
     'return' => 'int',
9057 9057
     'params' => 'int y, int x',
9058 9058
     'description' => 'Moves position and delete character, shift rest of line left',
9059 9059
   ),
9060 9060
   'ncurses_mvgetch' => 
9061
-  array (
9061
+  array(
9062 9062
     'return' => 'int',
9063 9063
     'params' => 'int y, int x',
9064 9064
     'description' => 'Moves position and get character at new position',
9065 9065
   ),
9066 9066
   'ncurses_mvinch' => 
9067
-  array (
9067
+  array(
9068 9068
     'return' => 'int',
9069 9069
     'params' => 'int y, int x',
9070 9070
     'description' => 'Moves position and get attributed character at new position',
9071 9071
   ),
9072 9072
   'ncurses_insstr' => 
9073
-  array (
9073
+  array(
9074 9074
     'return' => 'int',
9075 9075
     'params' => 'string text',
9076 9076
     'description' => 'Inserts string at current position, moving rest of line right',
9077 9077
   ),
9078 9078
   'ncurses_instr' => 
9079
-  array (
9079
+  array(
9080 9080
     'return' => 'int',
9081 9081
     'params' => 'string &buffer',
9082 9082
     'description' => 'Reads string from terminal screen',
9083 9083
   ),
9084 9084
   'ncurses_mvhline' => 
9085
-  array (
9085
+  array(
9086 9086
     'return' => 'int',
9087 9087
     'params' => 'int y, int x, int attrchar, int n',
9088 9088
     'description' => 'Sets new position and draw a horizontal line using an attributed character and max. n characters long',
9089 9089
   ),
9090 9090
   'ncurses_mvvline' => 
9091
-  array (
9091
+  array(
9092 9092
     'return' => 'int',
9093 9093
     'params' => 'int y, int x, int attrchar, int n',
9094 9094
     'description' => 'Sets new position and draw a vertical line using an attributed character and max. n characters long',
9095 9095
   ),
9096 9096
   'ncurses_mvcur' => 
9097
-  array (
9097
+  array(
9098 9098
     'return' => 'int',
9099 9099
     'params' => 'int old_y,int old_x, int new_y, int new_x',
9100 9100
     'description' => 'Moves cursor immediately',
9101 9101
   ),
9102 9102
   'ncurses_init_color' => 
9103
-  array (
9103
+  array(
9104 9104
     'return' => 'int',
9105 9105
     'params' => 'int color, int r, int g, int b',
9106 9106
     'description' => 'Sets new RGB value for color',
9107 9107
   ),
9108 9108
   'ncurses_color_content' => 
9109
-  array (
9109
+  array(
9110 9110
     'return' => 'int',
9111 9111
     'params' => 'int color, int &r, int &g, int &b',
9112 9112
     'description' => 'Gets the RGB value for color',
9113 9113
   ),
9114 9114
   'ncurses_pair_content' => 
9115
-  array (
9115
+  array(
9116 9116
     'return' => 'int',
9117 9117
     'params' => 'int pair, int &f, int &b',
9118 9118
     'description' => 'Gets the RGB value for color',
9119 9119
   ),
9120 9120
   'ncurses_border' => 
9121
-  array (
9121
+  array(
9122 9122
     'return' => 'int',
9123 9123
     'params' => 'int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner',
9124 9124
     'description' => 'Draws a border around the screen using attributed characters',
9125 9125
   ),
9126 9126
   'ncurses_wborder' => 
9127
-  array (
9127
+  array(
9128 9128
     'return' => 'int',
9129 9129
     'params' => 'resource window, int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner',
9130 9130
     'description' => 'Draws a border around the window using attributed characters',
9131 9131
   ),
9132 9132
   'ncurses_assume_default_colors' => 
9133
-  array (
9133
+  array(
9134 9134
     'return' => 'int',
9135 9135
     'params' => 'int fg, int bg',
9136 9136
     'description' => 'Defines default colors for color 0',
9137 9137
   ),
9138 9138
   'ncurses_define_key' => 
9139
-  array (
9139
+  array(
9140 9140
     'return' => 'int',
9141 9141
     'params' => 'string definition, int keycode',
9142 9142
     'description' => 'Defines a keycode',
9143 9143
   ),
9144 9144
   'ncurses_hline' => 
9145
-  array (
9145
+  array(
9146 9146
     'return' => 'int',
9147 9147
     'params' => 'int charattr, int n',
9148 9148
     'description' => 'Draws a horizontal line at current position using an attributed character and max. n characters long',
9149 9149
   ),
9150 9150
   'ncurses_vline' => 
9151
-  array (
9151
+  array(
9152 9152
     'return' => 'int',
9153 9153
     'params' => 'int charattr, int n',
9154 9154
     'description' => 'Draws a vertical line at current position using an attributed character and max. n characters long',
9155 9155
   ),
9156 9156
   'ncurses_whline' => 
9157
-  array (
9157
+  array(
9158 9158
     'return' => 'int',
9159 9159
     'params' => 'resource window, int charattr, int n',
9160 9160
     'description' => 'Draws a horizontal line in a window at current position using an attributed character and max. n characters long',
9161 9161
   ),
9162 9162
   'ncurses_wvline' => 
9163
-  array (
9163
+  array(
9164 9164
     'return' => 'int',
9165 9165
     'params' => 'resource window, int charattr, int n',
9166 9166
     'description' => 'Draws a vertical line in a window at current position using an attributed character and max. n characters long',
9167 9167
   ),
9168 9168
   'ncurses_keyok' => 
9169
-  array (
9169
+  array(
9170 9170
     'return' => 'int',
9171 9171
     'params' => 'int keycode, int enable',
9172 9172
     'description' => 'Enables or disable a keycode',
9173 9173
   ),
9174 9174
   'ncurses_mvwaddstr' => 
9175
-  array (
9175
+  array(
9176 9176
     'return' => 'int',
9177 9177
     'params' => 'resource window, int y, int x, string text',
9178 9178
     'description' => 'Adds string at new position in window',
9179 9179
   ),
9180 9180
   'ncurses_wrefresh' => 
9181
-  array (
9181
+  array(
9182 9182
     'return' => 'int',
9183 9183
     'params' => 'resource window',
9184 9184
     'description' => 'Refreshes window on terminal screen',
9185 9185
   ),
9186 9186
   'ncurses_termname' => 
9187
-  array (
9187
+  array(
9188 9188
     'return' => 'string',
9189 9189
     'params' => 'void',
9190 9190
     'description' => 'Returns terminal name',
9191 9191
   ),
9192 9192
   'ncurses_longname' => 
9193
-  array (
9193
+  array(
9194 9194
     'return' => 'string',
9195 9195
     'params' => 'void',
9196 9196
     'description' => 'Returns terminal description',
9197 9197
   ),
9198 9198
   'ncurses_mousemask' => 
9199
-  array (
9199
+  array(
9200 9200
     'return' => 'int',
9201 9201
     'params' => 'int newmask, int &oldmask',
9202 9202
     'description' => 'Returns and sets mouse options',
9203 9203
   ),
9204 9204
   'ncurses_getmouse' => 
9205
-  array (
9205
+  array(
9206 9206
     'return' => 'bool',
9207 9207
     'params' => 'array &mevent',
9208 9208
     'description' => 'Reads mouse event from queue. The content of mevent is cleared before new data is added.',
9209 9209
   ),
9210 9210
   'ncurses_ungetmouse' => 
9211
-  array (
9211
+  array(
9212 9212
     'return' => 'int',
9213 9213
     'params' => 'array mevent',
9214 9214
     'description' => 'Pushes mouse event to queue',
9215 9215
   ),
9216 9216
   'ncurses_mouse_trafo' => 
9217
-  array (
9217
+  array(
9218 9218
     'return' => 'bool',
9219 9219
     'params' => 'int &y, int &x, bool toscreen',
9220 9220
     'description' => 'Transforms coordinates',
9221 9221
   ),
9222 9222
   'ncurses_wmouse_trafo' => 
9223
-  array (
9223
+  array(
9224 9224
     'return' => 'bool',
9225 9225
     'params' => 'resource window, int &y, int &x, bool toscreen',
9226 9226
     'description' => 'Transforms window/stdscr coordinates',
9227 9227
   ),
9228 9228
   'ncurses_getyx' => 
9229
-  array (
9229
+  array(
9230 9230
     'return' => 'void',
9231 9231
     'params' => 'resource window, int &y, int &x',
9232 9232
     'description' => 'Returns the current cursor position for a window',
9233 9233
   ),
9234 9234
   'ncurses_getmaxyx' => 
9235
-  array (
9235
+  array(
9236 9236
     'return' => 'void',
9237 9237
     'params' => 'resource window, int &y, int &x',
9238 9238
     'description' => 'Returns the size of a window',
9239 9239
   ),
9240 9240
   'ncurses_wmove' => 
9241
-  array (
9241
+  array(
9242 9242
     'return' => 'int',
9243 9243
     'params' => 'resource window, int y, int x',
9244 9244
     'description' => 'Moves windows output position',
9245 9245
   ),
9246 9246
   'ncurses_keypad' => 
9247
-  array (
9247
+  array(
9248 9248
     'return' => 'int',
9249 9249
     'params' => 'resource window, bool bf',
9250 9250
     'description' => 'Turns keypad on or off',
9251 9251
   ),
9252 9252
   'ncurses_wcolor_set' => 
9253
-  array (
9253
+  array(
9254 9254
     'return' => 'int',
9255 9255
     'params' => 'resource window, int color_pair',
9256 9256
     'description' => 'Sets windows color pairings',
9257 9257
   ),
9258 9258
   'ncurses_wclear' => 
9259
-  array (
9259
+  array(
9260 9260
     'return' => 'int',
9261 9261
     'params' => 'resource window',
9262 9262
     'description' => 'Clears window',
9263 9263
   ),
9264 9264
   'ncurses_wnoutrefresh' => 
9265
-  array (
9265
+  array(
9266 9266
     'return' => 'int',
9267 9267
     'params' => 'resource window',
9268 9268
     'description' => 'Copies window to virtual screen',
9269 9269
   ),
9270 9270
   'ncurses_waddstr' => 
9271
-  array (
9271
+  array(
9272 9272
     'return' => 'int',
9273 9273
     'params' => 'resource window, string str [, int n]',
9274 9274
     'description' => 'Outputs text at current postion in window',
9275 9275
   ),
9276 9276
   'ncurses_wgetch' => 
9277
-  array (
9277
+  array(
9278 9278
     'return' => 'int',
9279 9279
     'params' => 'resource window',
9280 9280
     'description' => 'Reads a character from keyboard (window)',
9281 9281
   ),
9282 9282
   'ncurses_wattroff' => 
9283
-  array (
9283
+  array(
9284 9284
     'return' => 'int',
9285 9285
     'params' => 'resource window, int attrs',
9286 9286
     'description' => 'Turns off attributes for a window',
9287 9287
   ),
9288 9288
   'ncurses_wattron' => 
9289
-  array (
9289
+  array(
9290 9290
     'return' => 'int',
9291 9291
     'params' => 'resource window, int attrs',
9292 9292
     'description' => 'Turns on attributes for a window',
9293 9293
   ),
9294 9294
   'ncurses_wattrset' => 
9295
-  array (
9295
+  array(
9296 9296
     'return' => 'int',
9297 9297
     'params' => 'resource window, int attrs',
9298 9298
     'description' => 'Set the attributes for a window',
9299 9299
   ),
9300 9300
   'ncurses_wstandend' => 
9301
-  array (
9301
+  array(
9302 9302
     'return' => 'int',
9303 9303
     'params' => 'resource window',
9304 9304
     'description' => 'End standout mode for a window',
9305 9305
   ),
9306 9306
   'ncurses_wstandout' => 
9307
-  array (
9307
+  array(
9308 9308
     'return' => 'int',
9309 9309
     'params' => 'resource window',
9310 9310
     'description' => 'Enter standout mode for a window',
9311 9311
   ),
9312 9312
   'ncurses_new_panel' => 
9313
-  array (
9313
+  array(
9314 9314
     'return' => 'resource',
9315 9315
     'params' => 'resource window',
9316 9316
     'description' => 'Create a new panel and associate it with window',
9317 9317
   ),
9318 9318
   'ncurses_del_panel' => 
9319
-  array (
9319
+  array(
9320 9320
     'return' => 'bool',
9321 9321
     'params' => 'resource panel',
9322 9322
     'description' => 'Remove panel from the stack and delete it (but not the associated window)',
9323 9323
   ),
9324 9324
   'ncurses_hide_panel' => 
9325
-  array (
9325
+  array(
9326 9326
     'return' => 'int',
9327 9327
     'params' => 'resource panel',
9328 9328
     'description' => 'Remove panel from the stack, making it invisible',
9329 9329
   ),
9330 9330
   'ncurses_show_panel' => 
9331
-  array (
9331
+  array(
9332 9332
     'return' => 'int',
9333 9333
     'params' => 'resource panel',
9334 9334
     'description' => 'Places an invisible panel on top of the stack, making it visible',
9335 9335
   ),
9336 9336
   'ncurses_top_panel' => 
9337
-  array (
9337
+  array(
9338 9338
     'return' => 'int',
9339 9339
     'params' => 'resource panel',
9340 9340
     'description' => 'Moves a visible panel to the top of the stack',
9341 9341
   ),
9342 9342
   'ncurses_bottom_panel' => 
9343
-  array (
9343
+  array(
9344 9344
     'return' => 'int',
9345 9345
     'params' => 'resource panel',
9346 9346
     'description' => 'Moves a visible panel to the bottom of the stack',
9347 9347
   ),
9348 9348
   'ncurses_move_panel' => 
9349
-  array (
9349
+  array(
9350 9350
     'return' => 'int',
9351 9351
     'params' => 'resource panel, int startx, int starty',
9352 9352
     'description' => 'Moves a panel so that it\'s upper-left corner is at [startx, starty]',
9353 9353
   ),
9354 9354
   'ncurses_replace_panel' => 
9355
-  array (
9355
+  array(
9356 9356
     'return' => 'int',
9357 9357
     'params' => 'resource panel, resource window',
9358 9358
     'description' => 'Replaces the window associated with panel',
9359 9359
   ),
9360 9360
   'ncurses_panel_above' => 
9361
-  array (
9361
+  array(
9362 9362
     'return' => 'resource',
9363 9363
     'params' => 'resource panel',
9364 9364
     'description' => 'Returns the panel above panel. If panel is null, returns the bottom panel in the stack',
9365 9365
   ),
9366 9366
   'ncurses_panel_below' => 
9367
-  array (
9367
+  array(
9368 9368
     'return' => 'resource',
9369 9369
     'params' => 'resource panel',
9370 9370
     'description' => 'Returns the panel below panel. If panel is null, returns the top panel in the stack',
9371 9371
   ),
9372 9372
   'ncurses_panel_window' => 
9373
-  array (
9373
+  array(
9374 9374
     'return' => 'resource',
9375 9375
     'params' => 'resource panel',
9376 9376
     'description' => 'Returns the window associated with panel',
9377 9377
   ),
9378 9378
   'ncurses_update_panels' => 
9379
-  array (
9379
+  array(
9380 9380
     'return' => 'void',
9381 9381
     'params' => 'void',
9382 9382
     'description' => 'Refreshes the virtual screen to reflect the relations between panels in the stack.',
9383 9383
   ),
9384 9384
   'ftp_connect' => 
9385
-  array (
9385
+  array(
9386 9386
     'return' => 'resource',
9387 9387
     'params' => 'string host [, int port [, int timeout]]',
9388 9388
     'description' => 'Opens a FTP stream',
9389 9389
   ),
9390 9390
   'ftp_ssl_connect' => 
9391
-  array (
9391
+  array(
9392 9392
     'return' => 'resource',
9393 9393
     'params' => 'string host [, int port [, int timeout]]',
9394 9394
     'description' => 'Opens a FTP-SSL stream',
9395 9395
   ),
9396 9396
   'ftp_login' => 
9397
-  array (
9397
+  array(
9398 9398
     'return' => 'bool',
9399 9399
     'params' => 'resource stream, string username, string password',
9400 9400
     'description' => 'Logs into the FTP server',
9401 9401
   ),
9402 9402
   'ftp_pwd' => 
9403
-  array (
9403
+  array(
9404 9404
     'return' => 'string',
9405 9405
     'params' => 'resource stream',
9406 9406
     'description' => 'Returns the present working directory',
9407 9407
   ),
9408 9408
   'ftp_cdup' => 
9409
-  array (
9409
+  array(
9410 9410
     'return' => 'bool',
9411 9411
     'params' => 'resource stream',
9412 9412
     'description' => 'Changes to the parent directory',
9413 9413
   ),
9414 9414
   'ftp_chdir' => 
9415
-  array (
9415
+  array(
9416 9416
     'return' => 'bool',
9417 9417
     'params' => 'resource stream, string directory',
9418 9418
     'description' => 'Changes directories',
9419 9419
   ),
9420 9420
   'ftp_exec' => 
9421
-  array (
9421
+  array(
9422 9422
     'return' => 'bool',
9423 9423
     'params' => 'resource stream, string command',
9424 9424
     'description' => 'Requests execution of a program on the FTP server',
9425 9425
   ),
9426 9426
   'ftp_raw' => 
9427
-  array (
9427
+  array(
9428 9428
     'return' => 'array',
9429 9429
     'params' => 'resource stream, string command',
9430 9430
     'description' => 'Sends a literal command to the FTP server',
9431 9431
   ),
9432 9432
   'ftp_mkdir' => 
9433
-  array (
9433
+  array(
9434 9434
     'return' => 'string',
9435 9435
     'params' => 'resource stream, string directory',
9436 9436
     'description' => 'Creates a directory and returns the absolute path for the new directory or false on error',
9437 9437
   ),
9438 9438
   'ftp_rmdir' => 
9439
-  array (
9439
+  array(
9440 9440
     'return' => 'bool',
9441 9441
     'params' => 'resource stream, string directory',
9442 9442
     'description' => 'Removes a directory',
9443 9443
   ),
9444 9444
   'ftp_chmod' => 
9445
-  array (
9445
+  array(
9446 9446
     'return' => 'int',
9447 9447
     'params' => 'resource stream, int mode, string filename',
9448 9448
     'description' => 'Sets permissions on a file',
9449 9449
   ),
9450 9450
   'ftp_alloc' => 
9451
-  array (
9451
+  array(
9452 9452
     'return' => 'bool',
9453 9453
     'params' => 'resource stream, int size[, &response]',
9454 9454
     'description' => 'Attempt to allocate space on the remote FTP server',
9455 9455
   ),
9456 9456
   'ftp_nlist' => 
9457
-  array (
9457
+  array(
9458 9458
     'return' => 'array',
9459 9459
     'params' => 'resource stream, string directory',
9460 9460
     'description' => 'Returns an array of filenames in the given directory',
9461 9461
   ),
9462 9462
   'ftp_rawlist' => 
9463
-  array (
9463
+  array(
9464 9464
     'return' => 'array',
9465 9465
     'params' => 'resource stream, string directory [, bool recursive]',
9466 9466
     'description' => 'Returns a detailed listing of a directory as an array of output lines',
9467 9467
   ),
9468 9468
   'ftp_systype' => 
9469
-  array (
9469
+  array(
9470 9470
     'return' => 'string',
9471 9471
     'params' => 'resource stream',
9472 9472
     'description' => 'Returns the system type identifier',
9473 9473
   ),
9474 9474
   'ftp_fget' => 
9475
-  array (
9475
+  array(
9476 9476
     'return' => 'bool',
9477 9477
     'params' => 'resource stream, resource fp, string remote_file, int mode[, int resumepos]',
9478 9478
     'description' => 'Retrieves a file from the FTP server and writes it to an open file',
9479 9479
   ),
9480 9480
   'ftp_nb_fget' => 
9481
-  array (
9481
+  array(
9482 9482
     'return' => 'int',
9483 9483
     'params' => 'resource stream, resource fp, string remote_file, int mode[, int resumepos]',
9484 9484
     'description' => 'Retrieves a file from the FTP server asynchronly and writes it to an open file',
9485 9485
   ),
9486 9486
   'ftp_pasv' => 
9487
-  array (
9487
+  array(
9488 9488
     'return' => 'bool',
9489 9489
     'params' => 'resource stream, bool pasv',
9490 9490
     'description' => 'Turns passive mode on or off',
9491 9491
   ),
9492 9492
   'ftp_get' => 
9493
-  array (
9493
+  array(
9494 9494
     'return' => 'bool',
9495 9495
     'params' => 'resource stream, string local_file, string remote_file, int mode[, int resume_pos]',
9496 9496
     'description' => 'Retrieves a file from the FTP server and writes it to a local file',
9497 9497
   ),
9498 9498
   'ftp_nb_get' => 
9499
-  array (
9499
+  array(
9500 9500
     'return' => 'int',
9501 9501
     'params' => 'resource stream, string local_file, string remote_file, int mode[, int resume_pos]',
9502 9502
     'description' => 'Retrieves a file from the FTP server nbhronly and writes it to a local file',
9503 9503
   ),
9504 9504
   'ftp_nb_continue' => 
9505
-  array (
9505
+  array(
9506 9506
     'return' => 'int',
9507 9507
     'params' => 'resource stream',
9508 9508
     'description' => 'Continues retrieving/sending a file nbronously',
9509 9509
   ),
9510 9510
   'ftp_fput' => 
9511
-  array (
9511
+  array(
9512 9512
     'return' => 'bool',
9513 9513
     'params' => 'resource stream, string remote_file, resource fp, int mode[, int startpos]',
9514 9514
     'description' => 'Stores a file from an open file to the FTP server',
9515 9515
   ),
9516 9516
   'ftp_nb_fput' => 
9517
-  array (
9517
+  array(
9518 9518
     'return' => 'int',
9519 9519
     'params' => 'resource stream, string remote_file, resource fp, int mode[, int startpos]',
9520 9520
     'description' => 'Stores a file from an open file to the FTP server nbronly',
9521 9521
   ),
9522 9522
   'ftp_put' => 
9523
-  array (
9523
+  array(
9524 9524
     'return' => 'bool',
9525 9525
     'params' => 'resource stream, string remote_file, string local_file, int mode[, int startpos]',
9526 9526
     'description' => 'Stores a file on the FTP server',
9527 9527
   ),
9528 9528
   'ftp_nb_put' => 
9529
-  array (
9529
+  array(
9530 9530
     'return' => 'int',
9531 9531
     'params' => 'resource stream, string remote_file, string local_file, int mode[, int startpos]',
9532 9532
     'description' => 'Stores a file on the FTP server',
9533 9533
   ),
9534 9534
   'ftp_size' => 
9535
-  array (
9535
+  array(
9536 9536
     'return' => 'int',
9537 9537
     'params' => 'resource stream, string filename',
9538 9538
     'description' => 'Returns the size of the file, or -1 on error',
9539 9539
   ),
9540 9540
   'ftp_mdtm' => 
9541
-  array (
9541
+  array(
9542 9542
     'return' => 'int',
9543 9543
     'params' => 'resource stream, string filename',
9544 9544
     'description' => 'Returns the last modification time of the file, or -1 on error',
9545 9545
   ),
9546 9546
   'ftp_rename' => 
9547
-  array (
9547
+  array(
9548 9548
     'return' => 'bool',
9549 9549
     'params' => 'resource stream, string src, string dest',
9550 9550
     'description' => 'Renames the given file to a new path',
9551 9551
   ),
9552 9552
   'ftp_delete' => 
9553
-  array (
9553
+  array(
9554 9554
     'return' => 'bool',
9555 9555
     'params' => 'resource stream, string file',
9556 9556
     'description' => 'Deletes a file',
9557 9557
   ),
9558 9558
   'ftp_site' => 
9559
-  array (
9559
+  array(
9560 9560
     'return' => 'bool',
9561 9561
     'params' => 'resource stream, string cmd',
9562 9562
     'description' => 'Sends a SITE command to the server',
9563 9563
   ),
9564 9564
   'ftp_close' => 
9565
-  array (
9565
+  array(
9566 9566
     'return' => 'bool',
9567 9567
     'params' => 'resource stream',
9568 9568
     'description' => 'Closes the FTP stream',
9569 9569
   ),
9570 9570
   'ftp_set_option' => 
9571
-  array (
9571
+  array(
9572 9572
     'return' => 'bool',
9573 9573
     'params' => 'resource stream, int option, mixed value',
9574 9574
     'description' => 'Sets an FTP option',
9575 9575
   ),
9576 9576
   'ftp_get_option' => 
9577
-  array (
9577
+  array(
9578 9578
     'return' => 'mixed',
9579 9579
     'params' => 'resource stream, int option',
9580 9580
     'description' => 'Gets an FTP option',
9581 9581
   ),
9582 9582
   'birdstep_connect' => 
9583
-  array (
9583
+  array(
9584 9584
     'return' => 'int',
9585 9585
     'params' => 'string server, string user, string pass',
9586 9586
     'description' => '',
9587 9587
   ),
9588 9588
   'birdstep_close' => 
9589
-  array (
9589
+  array(
9590 9590
     'return' => 'bool',
9591 9591
     'params' => 'int id',
9592 9592
     'description' => '',
9593 9593
   ),
9594 9594
   'birdstep_exec' => 
9595
-  array (
9595
+  array(
9596 9596
     'return' => 'int',
9597 9597
     'params' => 'int index, string exec_str',
9598 9598
     'description' => '',
9599 9599
   ),
9600 9600
   'birdstep_fetch' => 
9601
-  array (
9601
+  array(
9602 9602
     'return' => 'bool',
9603 9603
     'params' => 'int index',
9604 9604
     'description' => '',
9605 9605
   ),
9606 9606
   'birdstep_result' => 
9607
-  array (
9607
+  array(
9608 9608
     'return' => 'mixed',
9609 9609
     'params' => 'int index, int col',
9610 9610
     'description' => '',
9611 9611
   ),
9612 9612
   'birdstep_freeresult' => 
9613
-  array (
9613
+  array(
9614 9614
     'return' => 'bool',
9615 9615
     'params' => 'int index',
9616 9616
     'description' => '',
9617 9617
   ),
9618 9618
   'birdstep_autocommit' => 
9619
-  array (
9619
+  array(
9620 9620
     'return' => 'bool',
9621 9621
     'params' => 'int index',
9622 9622
     'description' => '',
9623 9623
   ),
9624 9624
   'birdstep_off_autocommit' => 
9625
-  array (
9625
+  array(
9626 9626
     'return' => 'bool',
9627 9627
     'params' => 'int index',
9628 9628
     'description' => '',
9629 9629
   ),
9630 9630
   'birdstep_commit' => 
9631
-  array (
9631
+  array(
9632 9632
     'return' => 'bool',
9633 9633
     'params' => 'int index',
9634 9634
     'description' => '',
9635 9635
   ),
9636 9636
   'birdstep_rollback' => 
9637
-  array (
9637
+  array(
9638 9638
     'return' => 'bool',
9639 9639
     'params' => 'int index',
9640 9640
     'description' => '',
9641 9641
   ),
9642 9642
   'birdstep_fieldname' => 
9643
-  array (
9643
+  array(
9644 9644
     'return' => 'string',
9645 9645
     'params' => 'int index, int col',
9646 9646
     'description' => '',
9647 9647
   ),
9648 9648
   'birdstep_fieldnum' => 
9649
-  array (
9649
+  array(
9650 9650
     'return' => 'int',
9651 9651
     'params' => 'int index',
9652 9652
     'description' => '',
9653 9653
   ),
9654 9654
   'odbc_close_all' => 
9655
-  array (
9655
+  array(
9656 9656
     'return' => 'void',
9657 9657
     'params' => 'void',
9658 9658
     'description' => 'Close all ODBC connections',
9659 9659
   ),
9660 9660
   'odbc_binmode' => 
9661
-  array (
9661
+  array(
9662 9662
     'return' => 'bool',
9663 9663
     'params' => 'int result_id, int mode',
9664 9664
     'description' => 'Handle binary column data',
9665 9665
   ),
9666 9666
   'odbc_longreadlen' => 
9667
-  array (
9667
+  array(
9668 9668
     'return' => 'bool',
9669 9669
     'params' => 'int result_id, int length',
9670 9670
     'description' => 'Handle LONG columns',
9671 9671
   ),
9672 9672
   'odbc_prepare' => 
9673
-  array (
9673
+  array(
9674 9674
     'return' => 'resource',
9675 9675
     'params' => 'resource connection_id, string query',
9676 9676
     'description' => 'Prepares a statement for execution',
9677 9677
   ),
9678 9678
   'odbc_execute' => 
9679
-  array (
9679
+  array(
9680 9680
     'return' => 'bool',
9681 9681
     'params' => 'resource result_id [, array parameters_array]',
9682 9682
     'description' => 'Execute a prepared statement',
9683 9683
   ),
9684 9684
   'odbc_cursor' => 
9685
-  array (
9685
+  array(
9686 9686
     'return' => 'string',
9687 9687
     'params' => 'resource result_id',
9688 9688
     'description' => 'Get cursor name',
9689 9689
   ),
9690 9690
   'odbc_data_source' => 
9691
-  array (
9691
+  array(
9692 9692
     'return' => 'array',
9693 9693
     'params' => 'resource connection_id, int fetch_type',
9694 9694
     'description' => 'Return information about the currently connected data source',
9695 9695
   ),
9696 9696
   'odbc_exec' => 
9697
-  array (
9697
+  array(
9698 9698
     'return' => 'resource',
9699 9699
     'params' => 'resource connection_id, string query [, int flags]',
9700 9700
     'description' => 'Prepare and execute an SQL statement',
9701 9701
   ),
9702 9702
   'odbc_fetch_object' => 
9703
-  array (
9703
+  array(
9704 9704
     'return' => 'object',
9705 9705
     'params' => 'int result [, int rownumber]',
9706 9706
     'description' => 'Fetch a result row as an object',
9707 9707
   ),
9708 9708
   'odbc_fetch_array' => 
9709
-  array (
9709
+  array(
9710 9710
     'return' => 'array',
9711 9711
     'params' => 'int result [, int rownumber]',
9712 9712
     'description' => 'Fetch a result row as an associative array',
9713 9713
   ),
9714 9714
   'odbc_fetch_into' => 
9715
-  array (
9715
+  array(
9716 9716
     'return' => 'int',
9717 9717
     'params' => 'resource result_id, array result_array, [, int rownumber]',
9718 9718
     'description' => 'Fetch one result row into an array',
9719 9719
   ),
9720 9720
   'solid_fetch_prev' => 
9721
-  array (
9721
+  array(
9722 9722
     'return' => 'bool',
9723 9723
     'params' => 'resource result_id',
9724 9724
     'description' => '',
9725 9725
   ),
9726 9726
   'odbc_fetch_row' => 
9727
-  array (
9727
+  array(
9728 9728
     'return' => 'bool',
9729 9729
     'params' => 'resource result_id [, int row_number]',
9730 9730
     'description' => 'Fetch a row',
9731 9731
   ),
9732 9732
   'odbc_result' => 
9733
-  array (
9733
+  array(
9734 9734
     'return' => 'mixed',
9735 9735
     'params' => 'resource result_id, mixed field',
9736 9736
     'description' => 'Get result data',
9737 9737
   ),
9738 9738
   'odbc_result_all' => 
9739
-  array (
9739
+  array(
9740 9740
     'return' => 'int',
9741 9741
     'params' => 'resource result_id [, string format]',
9742 9742
     'description' => 'Print result as HTML table',
9743 9743
   ),
9744 9744
   'odbc_free_result' => 
9745
-  array (
9745
+  array(
9746 9746
     'return' => 'bool',
9747 9747
     'params' => 'resource result_id',
9748 9748
     'description' => 'Free resources associated with a result',
9749 9749
   ),
9750 9750
   'odbc_connect' => 
9751
-  array (
9751
+  array(
9752 9752
     'return' => 'resource',
9753 9753
     'params' => 'string DSN, string user, string password [, int cursor_option]',
9754 9754
     'description' => 'Connect to a datasource',
9755 9755
   ),
9756 9756
   'odbc_pconnect' => 
9757
-  array (
9757
+  array(
9758 9758
     'return' => 'resource',
9759 9759
     'params' => 'string DSN, string user, string password [, int cursor_option]',
9760 9760
     'description' => 'Establish a persistent connection to a datasource',
9761 9761
   ),
9762 9762
   'odbc_close' => 
9763
-  array (
9763
+  array(
9764 9764
     'return' => 'void',
9765 9765
     'params' => 'resource connection_id',
9766 9766
     'description' => 'Close an ODBC connection',
9767 9767
   ),
9768 9768
   'odbc_num_rows' => 
9769
-  array (
9769
+  array(
9770 9770
     'return' => 'int',
9771 9771
     'params' => 'resource result_id',
9772 9772
     'description' => 'Get number of rows in a result',
9773 9773
   ),
9774 9774
   'odbc_next_result' => 
9775
-  array (
9775
+  array(
9776 9776
     'return' => 'bool',
9777 9777
     'params' => 'resource result_id',
9778 9778
     'description' => 'Checks if multiple results are avaiable',
9779 9779
   ),
9780 9780
   'odbc_num_fields' => 
9781
-  array (
9781
+  array(
9782 9782
     'return' => 'int',
9783 9783
     'params' => 'resource result_id',
9784 9784
     'description' => 'Get number of columns in a result',
9785 9785
   ),
9786 9786
   'odbc_field_name' => 
9787
-  array (
9787
+  array(
9788 9788
     'return' => 'string',
9789 9789
     'params' => 'resource result_id, int field_number',
9790 9790
     'description' => 'Get a column name',
9791 9791
   ),
9792 9792
   'odbc_field_type' => 
9793
-  array (
9793
+  array(
9794 9794
     'return' => 'string',
9795 9795
     'params' => 'resource result_id, int field_number',
9796 9796
     'description' => 'Get the datatype of a column',
9797 9797
   ),
9798 9798
   'odbc_field_len' => 
9799
-  array (
9799
+  array(
9800 9800
     'return' => 'int',
9801 9801
     'params' => 'resource result_id, int field_number',
9802 9802
     'description' => 'Get the length (precision) of a column',
9803 9803
   ),
9804 9804
   'odbc_field_scale' => 
9805
-  array (
9805
+  array(
9806 9806
     'return' => 'int',
9807 9807
     'params' => 'resource result_id, int field_number',
9808 9808
     'description' => 'Get the scale of a column',
9809 9809
   ),
9810 9810
   'odbc_field_num' => 
9811
-  array (
9811
+  array(
9812 9812
     'return' => 'int',
9813 9813
     'params' => 'resource result_id, string field_name',
9814 9814
     'description' => 'Return column number',
9815 9815
   ),
9816 9816
   'odbc_autocommit' => 
9817
-  array (
9817
+  array(
9818 9818
     'return' => 'mixed',
9819 9819
     'params' => 'resource connection_id [, int OnOff]',
9820 9820
     'description' => 'Toggle autocommit mode or get status',
9821 9821
   ),
9822 9822
   'odbc_commit' => 
9823
-  array (
9823
+  array(
9824 9824
     'return' => 'bool',
9825 9825
     'params' => 'resource connection_id',
9826 9826
     'description' => 'Commit an ODBC transaction',
9827 9827
   ),
9828 9828
   'odbc_rollback' => 
9829
-  array (
9829
+  array(
9830 9830
     'return' => 'bool',
9831 9831
     'params' => 'resource connection_id',
9832 9832
     'description' => 'Rollback a transaction',
9833 9833
   ),
9834 9834
   'odbc_error' => 
9835
-  array (
9835
+  array(
9836 9836
     'return' => 'string',
9837 9837
     'params' => '[resource connection_id]',
9838 9838
     'description' => 'Get the last error code',
9839 9839
   ),
9840 9840
   'odbc_errormsg' => 
9841
-  array (
9841
+  array(
9842 9842
     'return' => 'string',
9843 9843
     'params' => '[resource connection_id]',
9844 9844
     'description' => 'Get the last error message',
9845 9845
   ),
9846 9846
   'odbc_setoption' => 
9847
-  array (
9847
+  array(
9848 9848
     'return' => 'bool',
9849 9849
     'params' => 'resource conn_id|result_id, int which, int option, int value',
9850 9850
     'description' => 'Sets connection or statement options',
9851 9851
   ),
9852 9852
   'odbc_tables' => 
9853
-  array (
9853
+  array(
9854 9854
     'return' => 'resource',
9855 9855
     'params' => 'resource connection_id [, string qualifier [, string owner [, string name [, string table_types]]]]',
9856 9856
     'description' => 'Call the SQLTables function',
9857 9857
   ),
9858 9858
   'odbc_columns' => 
9859
-  array (
9859
+  array(
9860 9860
     'return' => 'resource',
9861 9861
     'params' => 'resource connection_id [, string qualifier [, string owner [, string table_name [, string column_name]]]]',
9862 9862
     'description' => 'Returns a result identifier that can be used to fetch a list of column names in specified tables',
9863 9863
   ),
9864 9864
   'odbc_columnprivileges' => 
9865
-  array (
9865
+  array(
9866 9866
     'return' => 'resource',
9867 9867
     'params' => 'resource connection_id, string catalog, string schema, string table, string column',
9868 9868
     'description' => 'Returns a result identifier that can be used to fetch a list of columns and associated privileges for the specified table',
9869 9869
   ),
9870 9870
   'odbc_foreignkeys' => 
9871
-  array (
9871
+  array(
9872 9872
     'return' => 'resource',
9873 9873
     'params' => 'resource connection_id, string pk_qualifier, string pk_owner, string pk_table, string fk_qualifier, string fk_owner, string fk_table',
9874 9874
     'description' => 'Returns a result identifier to either a list of foreign keys in the specified table or a list of foreign keys in other tables that refer to the primary key in the specified table',
9875 9875
   ),
9876 9876
   'odbc_gettypeinfo' => 
9877
-  array (
9877
+  array(
9878 9878
     'return' => 'resource',
9879 9879
     'params' => 'resource connection_id [, int data_type]',
9880 9880
     'description' => 'Returns a result identifier containing information about data types supported by the data source',
9881 9881
   ),
9882 9882
   'odbc_primarykeys' => 
9883
-  array (
9883
+  array(
9884 9884
     'return' => 'resource',
9885 9885
     'params' => 'resource connection_id, string qualifier, string owner, string table',
9886 9886
     'description' => 'Returns a result identifier listing the column names that comprise the primary key for a table',
9887 9887
   ),
9888 9888
   'odbc_procedurecolumns' => 
9889
-  array (
9889
+  array(
9890 9890
     'return' => 'resource',
9891 9891
     'params' => 'resource connection_id [, string qualifier, string owner, string proc, string column]',
9892 9892
     'description' => 'Returns a result identifier containing the list of input and output parameters, as well as the columns that make up the result set for the specified procedures',
9893 9893
   ),
9894 9894
   'odbc_procedures' => 
9895
-  array (
9895
+  array(
9896 9896
     'return' => 'resource',
9897 9897
     'params' => 'resource connection_id [, string qualifier, string owner, string name]',
9898 9898
     'description' => 'Returns a result identifier containg the list of procedure names in a datasource',
9899 9899
   ),
9900 9900
   'odbc_specialcolumns' => 
9901
-  array (
9901
+  array(
9902 9902
     'return' => 'resource',
9903 9903
     'params' => 'resource connection_id, int type, string qualifier, string owner, string table, int scope, int nullable',
9904 9904
     'description' => 'Returns a result identifier containing either the optimal set of columns that uniquely identifies a row in the table or columns that are automatically updated when any value in the row is updated by a transaction',
9905 9905
   ),
9906 9906
   'odbc_statistics' => 
9907
-  array (
9907
+  array(
9908 9908
     'return' => 'resource',
9909 9909
     'params' => 'resource connection_id, string qualifier, string owner, string name, int unique, int accuracy',
9910 9910
     'description' => 'Returns a result identifier that contains statistics about a single table and the indexes associated with the table',
9911 9911
   ),
9912 9912
   'odbc_tableprivileges' => 
9913
-  array (
9913
+  array(
9914 9914
     'return' => 'resource',
9915 9915
     'params' => 'resource connection_id, string qualifier, string owner, string name',
9916 9916
     'description' => 'Returns a result identifier containing a list of tables and the privileges associated with each table',
9917 9917
   ),
9918 9918
   'pspell_new' => 
9919
-  array (
9919
+  array(
9920 9920
     'return' => 'int',
9921 9921
     'params' => 'string language [, string spelling [, string jargon [, string encoding [, int mode]]]]',
9922 9922
     'description' => 'Load a dictionary',
9923 9923
   ),
9924 9924
   'pspell_new_personal' => 
9925
-  array (
9925
+  array(
9926 9926
     'return' => 'int',
9927 9927
     'params' => 'string personal, string language [, string spelling [, string jargon [, string encoding [, int mode]]]]',
9928 9928
     'description' => 'Load a dictionary with a personal wordlist',
9929 9929
   ),
9930 9930
   'pspell_new_config' => 
9931
-  array (
9931
+  array(
9932 9932
     'return' => 'int',
9933 9933
     'params' => 'int config',
9934 9934
     'description' => 'Load a dictionary based on the given config',
9935 9935
   ),
9936 9936
   'pspell_check' => 
9937
-  array (
9937
+  array(
9938 9938
     'return' => 'bool',
9939 9939
     'params' => 'int pspell, string word',
9940 9940
     'description' => 'Returns true if word is valid',
9941 9941
   ),
9942 9942
   'pspell_suggest' => 
9943
-  array (
9943
+  array(
9944 9944
     'return' => 'array',
9945 9945
     'params' => 'int pspell, string word',
9946 9946
     'description' => 'Returns array of suggestions',
9947 9947
   ),
9948 9948
   'pspell_store_replacement' => 
9949
-  array (
9949
+  array(
9950 9950
     'return' => 'bool',
9951 9951
     'params' => 'int pspell, string misspell, string correct',
9952 9952
     'description' => 'Notify the dictionary of a user-selected replacement',
9953 9953
   ),
9954 9954
   'pspell_add_to_personal' => 
9955
-  array (
9955
+  array(
9956 9956
     'return' => 'bool',
9957 9957
     'params' => 'int pspell, string word',
9958 9958
     'description' => 'Adds a word to a personal list',
9959 9959
   ),
9960 9960
   'pspell_add_to_session' => 
9961
-  array (
9961
+  array(
9962 9962
     'return' => 'bool',
9963 9963
     'params' => 'int pspell, string word',
9964 9964
     'description' => 'Adds a word to the current session',
9965 9965
   ),
9966 9966
   'pspell_clear_session' => 
9967
-  array (
9967
+  array(
9968 9968
     'return' => 'bool',
9969 9969
     'params' => 'int pspell',
9970 9970
     'description' => 'Clears the current session',
9971 9971
   ),
9972 9972
   'pspell_save_wordlist' => 
9973
-  array (
9973
+  array(
9974 9974
     'return' => 'bool',
9975 9975
     'params' => 'int pspell',
9976 9976
     'description' => 'Saves the current (personal) wordlist',
9977 9977
   ),
9978 9978
   'pspell_config_create' => 
9979
-  array (
9979
+  array(
9980 9980
     'return' => 'int',
9981 9981
     'params' => 'string language [, string spelling [, string jargon [, string encoding]]]',
9982 9982
     'description' => 'Create a new config to be used later to create a manager',
9983 9983
   ),
9984 9984
   'pspell_config_runtogether' => 
9985
-  array (
9985
+  array(
9986 9986
     'return' => 'bool',
9987 9987
     'params' => 'int conf, bool runtogether',
9988 9988
     'description' => 'Consider run-together words as valid components',
9989 9989
   ),
9990 9990
   'pspell_config_mode' => 
9991
-  array (
9991
+  array(
9992 9992
     'return' => 'bool',
9993 9993
     'params' => 'int conf, long mode',
9994 9994
     'description' => 'Select mode for config (PSPELL_FAST, PSPELL_NORMAL or PSPELL_BAD_SPELLERS)',
9995 9995
   ),
9996 9996
   'pspell_config_ignore' => 
9997
-  array (
9997
+  array(
9998 9998
     'return' => 'bool',
9999 9999
     'params' => 'int conf, int ignore',
10000 10000
     'description' => 'Ignore words <= n chars',
10001 10001
   ),
10002 10002
   'pspell_config_personal' => 
10003
-  array (
10003
+  array(
10004 10004
     'return' => 'bool',
10005 10005
     'params' => 'int conf, string personal',
10006 10006
     'description' => 'Use a personal dictionary for this config',
10007 10007
   ),
10008 10008
   'pspell_config_dict_dir' => 
10009
-  array (
10009
+  array(
10010 10010
     'return' => 'bool',
10011 10011
     'params' => 'int conf, string directory',
10012 10012
     'description' => 'location of the main word list',
10013 10013
   ),
10014 10014
   'pspell_config_data_dir' => 
10015
-  array (
10015
+  array(
10016 10016
     'return' => 'bool',
10017 10017
     'params' => 'int conf, string directory',
10018 10018
     'description' => 'location of language data files',
10019 10019
   ),
10020 10020
   'pspell_config_repl' => 
10021
-  array (
10021
+  array(
10022 10022
     'return' => 'bool',
10023 10023
     'params' => 'int conf, string repl',
10024 10024
     'description' => 'Use a personal dictionary with replacement pairs for this config',
10025 10025
   ),
10026 10026
   'pspell_config_save_repl' => 
10027
-  array (
10027
+  array(
10028 10028
     'return' => 'bool',
10029 10029
     'params' => 'int conf, bool save',
10030 10030
     'description' => 'Save replacement pairs when personal list is saved for this config',
10031 10031
   ),
10032 10032
   'dl' => 
10033
-  array (
10033
+  array(
10034 10034
     'return' => 'int',
10035 10035
     'params' => 'string extension_filename',
10036 10036
     'description' => 'Load a PHP extension at runtime',
10037 10037
   ),
10038 10038
   'ftok' => 
10039
-  array (
10039
+  array(
10040 10040
     'return' => 'int',
10041 10041
     'params' => 'string pathname, string proj',
10042 10042
     'description' => 'Convert a pathname and a project identifier to a System V IPC key',
10043 10043
   ),
10044 10044
   'assert' => 
10045
-  array (
10045
+  array(
10046 10046
     'return' => 'int',
10047 10047
     'params' => 'string|bool assertion',
10048 10048
     'description' => 'Checks if assertion is false',
10049 10049
   ),
10050 10050
   'assert_options' => 
10051
-  array (
10051
+  array(
10052 10052
     'return' => 'mixed',
10053 10053
     'params' => 'int what [, mixed value]',
10054 10054
     'description' => 'Set/get the various assert flags',
10055 10055
   ),
10056 10056
   'sprintf' => 
10057
-  array (
10057
+  array(
10058 10058
     'return' => 'string',
10059 10059
     'params' => 'string format [, mixed arg1 [, mixed ...]]',
10060 10060
     'description' => 'Return a formatted string',
10061 10061
   ),
10062 10062
   'vsprintf' => 
10063
-  array (
10063
+  array(
10064 10064
     'return' => 'string',
10065 10065
     'params' => 'string format, array args',
10066 10066
     'description' => 'Return a formatted string',
10067 10067
   ),
10068 10068
   'printf' => 
10069
-  array (
10069
+  array(
10070 10070
     'return' => 'int',
10071 10071
     'params' => 'string format [, mixed arg1 [, mixed ...]]',
10072 10072
     'description' => 'Output a formatted string',
10073 10073
   ),
10074 10074
   'vprintf' => 
10075
-  array (
10075
+  array(
10076 10076
     'return' => 'int',
10077 10077
     'params' => 'string format, array args',
10078 10078
     'description' => 'Output a formatted string',
10079 10079
   ),
10080 10080
   'fprintf' => 
10081
-  array (
10081
+  array(
10082 10082
     'return' => 'int',
10083 10083
     'params' => 'resource stream, string format [, mixed arg1 [, mixed ...]]',
10084 10084
     'description' => 'Output a formatted string into a stream',
10085 10085
   ),
10086 10086
   'vfprintf' => 
10087
-  array (
10087
+  array(
10088 10088
     'return' => 'int',
10089 10089
     'params' => 'resource stream, string format, array args',
10090 10090
     'description' => 'Output a formatted string into a stream',
10091 10091
   ),
10092 10092
   'stream_socket_pair' => 
10093
-  array (
10093
+  array(
10094 10094
     'return' => 'array',
10095 10095
     'params' => 'int domain, int type, int protocol',
10096 10096
     'description' => 'Creates a pair of connected, indistinguishable socket streams',
10097 10097
   ),
10098 10098
   'stream_socket_client' => 
10099
-  array (
10099
+  array(
10100 10100
     'return' => 'resource',
10101 10101
     'params' => 'string remoteaddress [, long &errcode, string &errstring, double timeout, long flags, resource context]',
10102 10102
     'description' => 'Open a client connection to a remote address',
10103 10103
   ),
10104 10104
   'stream_socket_server' => 
10105
-  array (
10105
+  array(
10106 10106
     'return' => 'resource',
10107 10107
     'params' => 'string localaddress [, long &errcode, string &errstring, long flags, resource context]',
10108 10108
     'description' => 'Create a server socket bound to localaddress',
10109 10109
   ),
10110 10110
   'stream_socket_accept' => 
10111
-  array (
10111
+  array(
10112 10112
     'return' => 'resource',
10113 10113
     'params' => 'resource serverstream, [ double timeout, string &peername ]',
10114 10114
     'description' => 'Accept a client connection from a server socket',
10115 10115
   ),
10116 10116
   'stream_socket_get_name' => 
10117
-  array (
10117
+  array(
10118 10118
     'return' => 'string',
10119 10119
     'params' => 'resource stream, bool want_peer',
10120 10120
     'description' => 'Returns either the locally bound or remote name for a socket stream',
10121 10121
   ),
10122 10122
   'stream_socket_sendto' => 
10123
-  array (
10123
+  array(
10124 10124
     'return' => 'long',
10125 10125
     'params' => 'resouce stream, string data [, long flags [, string target_addr]]',
10126 10126
     'description' => 'Send data to a socket stream.  If target_addr is specified it must be in dotted quad (or [ipv6]) format',
10127 10127
   ),
10128 10128
   'stream_socket_recvfrom' => 
10129
-  array (
10129
+  array(
10130 10130
     'return' => 'string',
10131 10131
     'params' => 'resource stream, long amount [, long flags [, string &remote_addr]]',
10132 10132
     'description' => 'Receives data from a socket stream',
10133 10133
   ),
10134 10134
   'stream_get_contents' => 
10135
-  array (
10135
+  array(
10136 10136
     'return' => 'long',
10137 10137
     'params' => 'resource source [, long maxlen [, long offset]]',
10138 10138
     'description' => 'Reads all remaining bytes (or up to maxlen bytes) from a stream and returns them as a string.',
10139 10139
   ),
10140 10140
   'stream_copy_to_stream' => 
10141
-  array (
10141
+  array(
10142 10142
     'return' => 'long',
10143 10143
     'params' => 'resource source, resource dest [, long maxlen [, long pos]]',
10144 10144
     'description' => 'Reads up to maxlen bytes from source stream and writes them to dest stream.',
10145 10145
   ),
10146 10146
   'stream_get_meta_data' => 
10147
-  array (
10147
+  array(
10148 10148
     'return' => 'resource',
10149 10149
     'params' => 'resource fp',
10150 10150
     'description' => 'Retrieves header/meta data from streams/file pointers',
10151 10151
   ),
10152 10152
   'stream_get_transports' => 
10153
-  array (
10153
+  array(
10154 10154
     'return' => 'array',
10155 10155
     'params' => '',
10156 10156
     'description' => 'Retrieves list of registered socket transports',
10157 10157
   ),
10158 10158
   'stream_get_wrappers' => 
10159
-  array (
10159
+  array(
10160 10160
     'return' => 'array',
10161 10161
     'params' => '',
10162 10162
     'description' => 'Retrieves list of registered stream wrappers',
10163 10163
   ),
10164 10164
   'stream_select' => 
10165
-  array (
10165
+  array(
10166 10166
     'return' => 'int',
10167 10167
     'params' => 'array &read_streams, array &write_streams, array &except_streams, int tv_sec[, int tv_usec]',
10168 10168
     'description' => 'Runs the select() system call on the sets of streams with a timeout specified by tv_sec and tv_usec',
10169 10169
   ),
10170 10170
   'stream_context_get_options' => 
10171
-  array (
10171
+  array(
10172 10172
     'return' => 'array',
10173 10173
     'params' => 'resource context|resource stream',
10174 10174
     'description' => 'Retrieve options for a stream/wrapper/context',
10175 10175
   ),
10176 10176
   'stream_context_set_option' => 
10177
-  array (
10177
+  array(
10178 10178
     'return' => 'bool',
10179 10179
     'params' => 'resource context|resource stream, string wrappername, string optionname, mixed value',
10180 10180
     'description' => 'Set an option for a wrapper',
10181 10181
   ),
10182 10182
   'stream_context_set_params' => 
10183
-  array (
10183
+  array(
10184 10184
     'return' => 'bool',
10185 10185
     'params' => 'resource context|resource stream, array options',
10186 10186
     'description' => 'Set parameters for a file context',
10187 10187
   ),
10188 10188
   'stream_context_get_default' => 
10189
-  array (
10189
+  array(
10190 10190
     'return' => 'resource',
10191 10191
     'params' => '[array options]',
10192 10192
     'description' => 'Get a handle on the default file/stream context and optionally set parameters',
10193 10193
   ),
10194 10194
   'stream_context_create' => 
10195
-  array (
10195
+  array(
10196 10196
     'return' => 'resource',
10197 10197
     'params' => '[array options]',
10198 10198
     'description' => 'Create a file context and optionally set parameters',
10199 10199
   ),
10200 10200
   'stream_filter_prepend' => 
10201
-  array (
10201
+  array(
10202 10202
     'return' => 'resource',
10203 10203
     'params' => 'resource stream, string filtername[, int read_write[, string filterparams]]',
10204 10204
     'description' => 'Prepend a filter to a stream',
10205 10205
   ),
10206 10206
   'stream_filter_append' => 
10207
-  array (
10207
+  array(
10208 10208
     'return' => 'resource',
10209 10209
     'params' => 'resource stream, string filtername[, int read_write[, string filterparams]]',
10210 10210
     'description' => 'Append a filter to a stream',
10211 10211
   ),
10212 10212
   'stream_filter_remove' => 
10213
-  array (
10213
+  array(
10214 10214
     'return' => 'bool',
10215 10215
     'params' => 'resource stream_filter',
10216 10216
     'description' => 'Flushes any data in the filter\'s internal buffer, removes it from the chain, and frees the resource',
10217 10217
   ),
10218 10218
   'stream_get_line' => 
10219
-  array (
10219
+  array(
10220 10220
     'return' => 'string',
10221 10221
     'params' => 'resource stream, int maxlen [, string ending]',
10222 10222
     'description' => 'Read up to maxlen bytes from a stream or until the ending string is found',
10223 10223
   ),
10224 10224
   'stream_set_blocking' => 
10225
-  array (
10225
+  array(
10226 10226
     'return' => 'bool',
10227 10227
     'params' => 'resource socket, int mode',
10228 10228
     'description' => 'Set blocking/non-blocking mode on a socket or stream',
10229 10229
   ),
10230 10230
   'set_socket_blocking' => 
10231
-  array (
10231
+  array(
10232 10232
     'return' => 'bool',
10233 10233
     'params' => 'resource socket, int mode',
10234 10234
     'description' => 'Set blocking/non-blocking mode on a socket',
10235 10235
   ),
10236 10236
   'stream_set_timeout' => 
10237
-  array (
10237
+  array(
10238 10238
     'return' => 'bool',
10239 10239
     'params' => 'resource stream, int seconds, int microseconds',
10240 10240
     'description' => 'Set timeout on stream read to seconds + microseonds',
10241 10241
   ),
10242 10242
   'stream_set_write_buffer' => 
10243
-  array (
10243
+  array(
10244 10244
     'return' => 'int',
10245 10245
     'params' => 'resource fp, int buffer',
10246 10246
     'description' => 'Set file write buffer',
10247 10247
   ),
10248 10248
   'stream_socket_enable_crypto' => 
10249
-  array (
10249
+  array(
10250 10250
     'return' => 'int',
10251 10251
     'params' => 'resource stream, bool enable [, int cryptokind, resource sessionstream]',
10252 10252
     'description' => 'Enable or disable a specific kind of crypto on the stream',
10253 10253
   ),
10254 10254
   'proc_terminate' => 
10255
-  array (
10255
+  array(
10256 10256
     'return' => 'int',
10257 10257
     'params' => 'resource process [, long signal]',
10258 10258
     'description' => 'kill a process opened by proc_open',
10259 10259
   ),
10260 10260
   'proc_close' => 
10261
-  array (
10261
+  array(
10262 10262
     'return' => 'int',
10263 10263
     'params' => 'resource process',
10264 10264
     'description' => 'close a process opened by proc_open',
10265 10265
   ),
10266 10266
   'proc_get_status' => 
10267
-  array (
10267
+  array(
10268 10268
     'return' => 'array',
10269 10269
     'params' => 'resource process',
10270 10270
     'description' => 'get information about a process opened by proc_open',
10271 10271
   ),
10272 10272
   'proc_open' => 
10273
-  array (
10273
+  array(
10274 10274
     'return' => 'resource',
10275 10275
     'params' => 'string command, array descriptorspec, array &pipes [, string cwd [, array env [, array other_options]]]',
10276 10276
     'description' => 'Run a process with more control over it\'s file descriptors',
10277 10277
   ),
10278 10278
   'opendir' => 
10279
-  array (
10279
+  array(
10280 10280
     'return' => 'mixed',
10281 10281
     'params' => 'string path[, resource context]',
10282 10282
     'description' => 'Open a directory and return a dir_handle',
10283 10283
   ),
10284 10284
   'dir' => 
10285
-  array (
10285
+  array(
10286 10286
     'return' => 'object',
10287 10287
     'params' => 'string directory[, resource context]',
10288 10288
     'description' => 'Directory class with properties, handle and class and methods read, rewind and close',
10289 10289
   ),
10290 10290
   'closedir' => 
10291
-  array (
10291
+  array(
10292 10292
     'return' => 'void',
10293 10293
     'params' => '[resource dir_handle]',
10294 10294
     'description' => 'Close directory connection identified by the dir_handle',
10295 10295
   ),
10296 10296
   'chroot' => 
10297
-  array (
10297
+  array(
10298 10298
     'return' => 'bool',
10299 10299
     'params' => 'string directory',
10300 10300
     'description' => 'Change root directory',
10301 10301
   ),
10302 10302
   'chdir' => 
10303
-  array (
10303
+  array(
10304 10304
     'return' => 'bool',
10305 10305
     'params' => 'string directory',
10306 10306
     'description' => 'Change the current directory',
10307 10307
   ),
10308 10308
   'getcwd' => 
10309
-  array (
10309
+  array(
10310 10310
     'return' => 'mixed',
10311 10311
     'params' => 'void',
10312 10312
     'description' => 'Gets the current directory',
10313 10313
   ),
10314 10314
   'rewinddir' => 
10315
-  array (
10315
+  array(
10316 10316
     'return' => 'void',
10317 10317
     'params' => '[resource dir_handle]',
10318 10318
     'description' => 'Rewind dir_handle back to the start',
10319 10319
   ),
10320 10320
   'readdir' => 
10321
-  array (
10321
+  array(
10322 10322
     'return' => 'string',
10323 10323
     'params' => '[resource dir_handle]',
10324 10324
     'description' => 'Read directory entry from dir_handle',
10325 10325
   ),
10326 10326
   'glob' => 
10327
-  array (
10327
+  array(
10328 10328
     'return' => 'array',
10329 10329
     'params' => 'string pattern [, int flags]',
10330 10330
     'description' => 'Find pathnames matching a pattern',
10331 10331
   ),
10332 10332
   'scandir' => 
10333
-  array (
10333
+  array(
10334 10334
     'return' => 'array',
10335 10335
     'params' => 'string dir [, int sorting_order [, resource context]]',
10336 10336
     'description' => 'List files & directories inside the specified path',
10337 10337
   ),
10338 10338
   'disk_total_space' => 
10339
-  array (
10339
+  array(
10340 10340
     'return' => 'float',
10341 10341
     'params' => 'string path',
10342 10342
     'description' => 'Get total disk space for filesystem that path is on',
10343 10343
   ),
10344 10344
   'disk_free_space' => 
10345
-  array (
10345
+  array(
10346 10346
     'return' => 'float',
10347 10347
     'params' => 'string path',
10348 10348
     'description' => 'Get free disk space for filesystem that path is on',
10349 10349
   ),
10350 10350
   'chgrp' => 
10351
-  array (
10351
+  array(
10352 10352
     'return' => 'bool',
10353 10353
     'params' => 'string filename, mixed group',
10354 10354
     'description' => 'Change file group',
10355 10355
   ),
10356 10356
   'lchgrp' => 
10357
-  array (
10357
+  array(
10358 10358
     'return' => 'bool',
10359 10359
     'params' => 'string filename, mixed group',
10360 10360
     'description' => 'Change symlink group',
10361 10361
   ),
10362 10362
   'chmod' => 
10363
-  array (
10363
+  array(
10364 10364
     'return' => 'bool',
10365 10365
     'params' => 'string filename, int mode',
10366 10366
     'description' => 'Change file mode',
10367 10367
   ),
10368 10368
   'touch' => 
10369
-  array (
10369
+  array(
10370 10370
     'return' => 'bool',
10371 10371
     'params' => 'string filename [, int time [, int atime]]',
10372 10372
     'description' => 'Set modification time of file',
10373 10373
   ),
10374 10374
   'clearstatcache' => 
10375
-  array (
10375
+  array(
10376 10376
     'return' => 'void',
10377 10377
     'params' => 'void',
10378 10378
     'description' => 'Clear file stat cache',
10379 10379
   ),
10380 10380
   'fileperms' => 
10381
-  array (
10381
+  array(
10382 10382
     'return' => 'int',
10383 10383
     'params' => 'string filename',
10384 10384
     'description' => 'Get file permissions',
10385 10385
   ),
10386 10386
   'fileinode' => 
10387
-  array (
10387
+  array(
10388 10388
     'return' => 'int',
10389 10389
     'params' => 'string filename',
10390 10390
     'description' => 'Get file inode',
10391 10391
   ),
10392 10392
   'filesize' => 
10393
-  array (
10393
+  array(
10394 10394
     'return' => 'int',
10395 10395
     'params' => 'string filename',
10396 10396
     'description' => 'Get file size',
10397 10397
   ),
10398 10398
   'fileowner' => 
10399
-  array (
10399
+  array(
10400 10400
     'return' => 'int',
10401 10401
     'params' => 'string filename',
10402 10402
     'description' => 'Get file owner',
10403 10403
   ),
10404 10404
   'filegroup' => 
10405
-  array (
10405
+  array(
10406 10406
     'return' => 'int',
10407 10407
     'params' => 'string filename',
10408 10408
     'description' => 'Get file group',
10409 10409
   ),
10410 10410
   'fileatime' => 
10411
-  array (
10411
+  array(
10412 10412
     'return' => 'int',
10413 10413
     'params' => 'string filename',
10414 10414
     'description' => 'Get last access time of file',
10415 10415
   ),
10416 10416
   'filemtime' => 
10417
-  array (
10417
+  array(
10418 10418
     'return' => 'int',
10419 10419
     'params' => 'string filename',
10420 10420
     'description' => 'Get last modification time of file',
10421 10421
   ),
10422 10422
   'filectime' => 
10423
-  array (
10423
+  array(
10424 10424
     'return' => 'int',
10425 10425
     'params' => 'string filename',
10426 10426
     'description' => 'Get inode modification time of file',
10427 10427
   ),
10428 10428
   'filetype' => 
10429
-  array (
10429
+  array(
10430 10430
     'return' => 'string',
10431 10431
     'params' => 'string filename',
10432 10432
     'description' => 'Get file type',
10433 10433
   ),
10434 10434
   'is_writable' => 
10435
-  array (
10435
+  array(
10436 10436
     'return' => 'bool',
10437 10437
     'params' => 'string filename',
10438 10438
     'description' => 'Returns true if file can be written',
10439 10439
   ),
10440 10440
   'is_readable' => 
10441
-  array (
10441
+  array(
10442 10442
     'return' => 'bool',
10443 10443
     'params' => 'string filename',
10444 10444
     'description' => 'Returns true if file can be read',
10445 10445
   ),
10446 10446
   'is_executable' => 
10447
-  array (
10447
+  array(
10448 10448
     'return' => 'bool',
10449 10449
     'params' => 'string filename',
10450 10450
     'description' => 'Returns true if file is executable',
10451 10451
   ),
10452 10452
   'is_file' => 
10453
-  array (
10453
+  array(
10454 10454
     'return' => 'bool',
10455 10455
     'params' => 'string filename',
10456 10456
     'description' => 'Returns true if file is a regular file',
10457 10457
   ),
10458 10458
   'is_dir' => 
10459
-  array (
10459
+  array(
10460 10460
     'return' => 'bool',
10461 10461
     'params' => 'string filename',
10462 10462
     'description' => 'Returns true if file is directory',
10463 10463
   ),
10464 10464
   'is_link' => 
10465
-  array (
10465
+  array(
10466 10466
     'return' => 'bool',
10467 10467
     'params' => 'string filename',
10468 10468
     'description' => 'Returns true if file is symbolic link',
10469 10469
   ),
10470 10470
   'file_exists' => 
10471
-  array (
10471
+  array(
10472 10472
     'return' => 'bool',
10473 10473
     'params' => 'string filename',
10474 10474
     'description' => 'Returns true if filename exists',
10475 10475
   ),
10476 10476
   'lstat' => 
10477
-  array (
10477
+  array(
10478 10478
     'return' => 'array',
10479 10479
     'params' => 'string filename',
10480 10480
     'description' => 'Give information about a file or symbolic link',
10481 10481
   ),
10482 10482
   'stat' => 
10483
-  array (
10483
+  array(
10484 10484
     'return' => 'array',
10485 10485
     'params' => 'string filename',
10486 10486
     'description' => 'Give information about a file',
10487 10487
   ),
10488 10488
   'convert_cyr_string' => 
10489
-  array (
10489
+  array(
10490 10490
     'return' => 'string',
10491 10491
     'params' => 'string str, string from, string to',
10492 10492
     'description' => 'Convert from one Cyrillic character set to another',
10493 10493
   ),
10494 10494
   'krsort' => 
10495
-  array (
10495
+  array(
10496 10496
     'return' => 'bool',
10497 10497
     'params' => 'array array_arg [, int sort_flags]',
10498 10498
     'description' => 'Sort an array by key value in reverse order',
10499 10499
   ),
10500 10500
   'ksort' => 
10501
-  array (
10501
+  array(
10502 10502
     'return' => 'bool',
10503 10503
     'params' => 'array array_arg [, int sort_flags]',
10504 10504
     'description' => 'Sort an array by key',
10505 10505
   ),
10506 10506
   'count' => 
10507
-  array (
10507
+  array(
10508 10508
     'return' => 'int',
10509 10509
     'params' => 'mixed var [, int mode]',
10510 10510
     'description' => 'Count the number of elements in a variable (usually an array)',
10511 10511
   ),
10512 10512
   'natsort' => 
10513
-  array (
10513
+  array(
10514 10514
     'return' => 'void',
10515 10515
     'params' => 'array array_arg',
10516 10516
     'description' => 'Sort an array using natural sort',
10517 10517
   ),
10518 10518
   'natcasesort' => 
10519
-  array (
10519
+  array(
10520 10520
     'return' => 'void',
10521 10521
     'params' => 'array array_arg',
10522 10522
     'description' => 'Sort an array using case-insensitive natural sort',
10523 10523
   ),
10524 10524
   'asort' => 
10525
-  array (
10525
+  array(
10526 10526
     'return' => 'bool',
10527 10527
     'params' => 'array array_arg [, int sort_flags]',
10528 10528
     'description' => 'Sort an array and maintain index association',
10529 10529
   ),
10530 10530
   'arsort' => 
10531
-  array (
10531
+  array(
10532 10532
     'return' => 'bool',
10533 10533
     'params' => 'array array_arg [, int sort_flags]',
10534 10534
     'description' => 'Sort an array in reverse order and maintain index association',
10535 10535
   ),
10536 10536
   'sort' => 
10537
-  array (
10537
+  array(
10538 10538
     'return' => 'bool',
10539 10539
     'params' => 'array array_arg [, int sort_flags]',
10540 10540
     'description' => 'Sort an array',
10541 10541
   ),
10542 10542
   'rsort' => 
10543
-  array (
10543
+  array(
10544 10544
     'return' => 'bool',
10545 10545
     'params' => 'array array_arg [, int sort_flags]',
10546 10546
     'description' => 'Sort an array in reverse order',
10547 10547
   ),
10548 10548
   'usort' => 
10549
-  array (
10549
+  array(
10550 10550
     'return' => 'bool',
10551 10551
     'params' => 'array array_arg, string cmp_function',
10552 10552
     'description' => 'Sort an array by values using a user-defined comparison function',
10553 10553
   ),
10554 10554
   'uasort' => 
10555
-  array (
10555
+  array(
10556 10556
     'return' => 'bool',
10557 10557
     'params' => 'array array_arg, string cmp_function',
10558 10558
     'description' => 'Sort an array with a user-defined comparison function and maintain index association',
10559 10559
   ),
10560 10560
   'uksort' => 
10561
-  array (
10561
+  array(
10562 10562
     'return' => 'bool',
10563 10563
     'params' => 'array array_arg, string cmp_function',
10564 10564
     'description' => 'Sort an array by keys using a user-defined comparison function',
10565 10565
   ),
10566 10566
   'end' => 
10567
-  array (
10567
+  array(
10568 10568
     'return' => 'mixed',
10569 10569
     'params' => 'array array_arg',
10570 10570
     'description' => 'Advances array argument\'s internal pointer to the last element and return it',
10571 10571
   ),
10572 10572
   'prev' => 
10573
-  array (
10573
+  array(
10574 10574
     'return' => 'mixed',
10575 10575
     'params' => 'array array_arg',
10576 10576
     'description' => 'Move array argument\'s internal pointer to the previous element and return it',
10577 10577
   ),
10578 10578
   'next' => 
10579
-  array (
10579
+  array(
10580 10580
     'return' => 'mixed',
10581 10581
     'params' => 'array array_arg',
10582 10582
     'description' => 'Move array argument\'s internal pointer to the next element and return it',
10583 10583
   ),
10584 10584
   'reset' => 
10585
-  array (
10585
+  array(
10586 10586
     'return' => 'mixed',
10587 10587
     'params' => 'array array_arg',
10588 10588
     'description' => 'Set array argument\'s internal pointer to the first element and return it',
10589 10589
   ),
10590 10590
   'current' => 
10591
-  array (
10591
+  array(
10592 10592
     'return' => 'mixed',
10593 10593
     'params' => 'array array_arg',
10594 10594
     'description' => 'Return the element currently pointed to by the internal array pointer',
10595 10595
   ),
10596 10596
   'key' => 
10597
-  array (
10597
+  array(
10598 10598
     'return' => 'mixed',
10599 10599
     'params' => 'array array_arg',
10600 10600
     'description' => 'Return the key of the element currently pointed to by the internal array pointer',
10601 10601
   ),
10602 10602
   'min' => 
10603
-  array (
10603
+  array(
10604 10604
     'return' => 'mixed',
10605 10605
     'params' => 'mixed arg1 [, mixed arg2 [, mixed ...]]',
10606 10606
     'description' => 'Return the lowest value in an array or a series of arguments',
10607 10607
   ),
10608 10608
   'max' => 
10609
-  array (
10609
+  array(
10610 10610
     'return' => 'mixed',
10611 10611
     'params' => 'mixed arg1 [, mixed arg2 [, mixed ...]]',
10612 10612
     'description' => 'Return the highest value in an array or a series of arguments',
10613 10613
   ),
10614 10614
   'array_walk' => 
10615
-  array (
10615
+  array(
10616 10616
     'return' => 'bool',
10617 10617
     'params' => 'array input, string funcname [, mixed userdata]',
10618 10618
     'description' => 'Apply a user function to every member of an array',
10619 10619
   ),
10620 10620
   'array_walk_recursive' => 
10621
-  array (
10621
+  array(
10622 10622
     'return' => 'bool',
10623 10623
     'params' => 'array input, string funcname [, mixed userdata]',
10624 10624
     'description' => 'Apply a user function recursively to every member of an array',
10625 10625
   ),
10626 10626
   'in_array' => 
10627
-  array (
10627
+  array(
10628 10628
     'return' => 'bool',
10629 10629
     'params' => 'mixed needle, array haystack [, bool strict]',
10630 10630
     'description' => 'Checks if the given value exists in the array',
10631 10631
   ),
10632 10632
   'array_search' => 
10633
-  array (
10633
+  array(
10634 10634
     'return' => 'mixed',
10635 10635
     'params' => 'mixed needle, array haystack [, bool strict]',
10636 10636
     'description' => 'Searches the array for a given value and returns the corresponding key if successful',
10637 10637
   ),
10638 10638
   'extract' => 
10639
-  array (
10639
+  array(
10640 10640
     'return' => 'int',
10641 10641
     'params' => 'array var_array [, int extract_type [, string prefix]]',
10642 10642
     'description' => 'Imports variables into symbol table from an array',
10643 10643
   ),
10644 10644
   'compact' => 
10645
-  array (
10645
+  array(
10646 10646
     'return' => 'array',
10647 10647
     'params' => 'mixed var_names [, mixed ...]',
10648 10648
     'description' => 'Creates a hash containing variables and their values',
10649 10649
   ),
10650 10650
   'array_fill' => 
10651
-  array (
10651
+  array(
10652 10652
     'return' => 'array',
10653 10653
     'params' => 'int start_key, int num, mixed val',
10654 10654
     'description' => 'Create an array containing num elements starting with index start_key each initialized to val',
10655 10655
   ),
10656 10656
   'range' => 
10657
-  array (
10657
+  array(
10658 10658
     'return' => 'array',
10659 10659
     'params' => 'mixed low, mixed high[, int step]',
10660 10660
     'description' => 'Create an array containing the range of integers or characters from low to high (inclusive)',
10661 10661
   ),
10662 10662
   'shuffle' => 
10663
-  array (
10663
+  array(
10664 10664
     'return' => 'bool',
10665 10665
     'params' => 'array array_arg',
10666 10666
     'description' => 'Randomly shuffle the contents of an array',
10667 10667
   ),
10668 10668
   'array_push' => 
10669
-  array (
10669
+  array(
10670 10670
     'return' => 'int',
10671 10671
     'params' => 'array stack, mixed var [, mixed ...]',
10672 10672
     'description' => 'Pushes elements onto the end of the array',
10673 10673
   ),
10674 10674
   'array_pop' => 
10675
-  array (
10675
+  array(
10676 10676
     'return' => 'mixed',
10677 10677
     'params' => 'array stack',
10678 10678
     'description' => 'Pops an element off the end of the array',
10679 10679
   ),
10680 10680
   'array_shift' => 
10681
-  array (
10681
+  array(
10682 10682
     'return' => 'mixed',
10683 10683
     'params' => 'array stack',
10684 10684
     'description' => 'Pops an element off the beginning of the array',
10685 10685
   ),
10686 10686
   'array_unshift' => 
10687
-  array (
10687
+  array(
10688 10688
     'return' => 'int',
10689 10689
     'params' => 'array stack, mixed var [, mixed ...]',
10690 10690
     'description' => 'Pushes elements onto the beginning of the array',
10691 10691
   ),
10692 10692
   'array_splice' => 
10693
-  array (
10693
+  array(
10694 10694
     'return' => 'array',
10695 10695
     'params' => 'array input, int offset [, int length [, array replacement]]',
10696 10696
     'description' => 'Removes the elements designated by offset and length and replace them with supplied array',
10697 10697
   ),
10698 10698
   'array_slice' => 
10699
-  array (
10699
+  array(
10700 10700
     'return' => 'array',
10701 10701
     'params' => 'array input, int offset [, int length]',
10702 10702
     'description' => 'Returns elements specified by offset and length',
10703 10703
   ),
10704 10704
   'array_merge' => 
10705
-  array (
10705
+  array(
10706 10706
     'return' => 'array',
10707 10707
     'params' => 'array arr1, array arr2 [, array ...]',
10708 10708
     'description' => 'Merges elements from passed arrays into one array',
10709 10709
   ),
10710 10710
   'array_merge_recursive' => 
10711
-  array (
10711
+  array(
10712 10712
     'return' => 'array',
10713 10713
     'params' => 'array arr1, array arr2 [, array ...]',
10714 10714
     'description' => 'Recursively merges elements from passed arrays into one array',
10715 10715
   ),
10716 10716
   'array_keys' => 
10717
-  array (
10717
+  array(
10718 10718
     'return' => 'array',
10719 10719
     'params' => 'array input [, mixed search_value[, bool strict]]',
10720 10720
     'description' => 'Return just the keys from the input array, optionally only for the specified search_value',
10721 10721
   ),
10722 10722
   'array_values' => 
10723
-  array (
10723
+  array(
10724 10724
     'return' => 'array',
10725 10725
     'params' => 'array input',
10726 10726
     'description' => 'Return just the values from the input array',
10727 10727
   ),
10728 10728
   'array_count_values' => 
10729
-  array (
10729
+  array(
10730 10730
     'return' => 'array',
10731 10731
     'params' => 'array input',
10732 10732
     'description' => 'Return the value as key and the frequency of that value in input as value',
10733 10733
   ),
10734 10734
   'array_reverse' => 
10735
-  array (
10735
+  array(
10736 10736
     'return' => 'array',
10737 10737
     'params' => 'array input [, bool preserve keys]',
10738 10738
     'description' => 'Return input as a new array with the order of the entries reversed',
10739 10739
   ),
10740 10740
   'array_pad' => 
10741
-  array (
10741
+  array(
10742 10742
     'return' => 'array',
10743 10743
     'params' => 'array input, int pad_size, mixed pad_value',
10744 10744
     'description' => 'Returns a copy of input array padded with pad_value to size pad_size',
10745 10745
   ),
10746 10746
   'array_flip' => 
10747
-  array (
10747
+  array(
10748 10748
     'return' => 'array',
10749 10749
     'params' => 'array input',
10750 10750
     'description' => 'Return array with key <-> value flipped',
10751 10751
   ),
10752 10752
   'array_change_key_case' => 
10753
-  array (
10753
+  array(
10754 10754
     'return' => 'array',
10755 10755
     'params' => 'array input [, int case=CASE_LOWER]',
10756 10756
     'description' => 'Retuns an array with all string keys lowercased [or uppercased]',
10757 10757
   ),
10758 10758
   'array_unique' => 
10759
-  array (
10759
+  array(
10760 10760
     'return' => 'array',
10761 10761
     'params' => 'array input',
10762 10762
     'description' => 'Removes duplicate values from array',
10763 10763
   ),
10764 10764
   'array_intersect_key' => 
10765
-  array (
10765
+  array(
10766 10766
     'return' => 'array',
10767 10767
     'params' => 'array arr1, array arr2 [, array ...]',
10768 10768
     'description' => 'Returns the entries of arr1 that have keys which are present in all the other arguments. Kind of equivalent to array_diff(array_keys($arr1), array_keys($arr2)[,array_keys(...)]). Equivalent of array_intersect_assoc() but does not do compare of the data.',
10769 10769
   ),
10770 10770
   'array_intersect_ukey' => 
10771
-  array (
10771
+  array(
10772 10772
     'return' => 'array',
10773 10773
     'params' => 'array arr1, array arr2 [, array ...], callback key_compare_func',
10774 10774
     'description' => 'Returns the entries of arr1 that have keys which are present in all the other arguments. Kind of equivalent to array_diff(array_keys($arr1), array_keys($arr2)[,array_keys(...)]). The comparison of the keys is performed by a user supplied function. Equivalent of array_intersect_uassoc() but does not do compare of the data.',
10775 10775
   ),
10776 10776
   'array_intersect' => 
10777
-  array (
10777
+  array(
10778 10778
     'return' => 'array',
10779 10779
     'params' => 'array arr1, array arr2 [, array ...]',
10780 10780
     'description' => 'Returns the entries of arr1 that have values which are present in all the other arguments',
10781 10781
   ),
10782 10782
   'array_uintersect' => 
10783
-  array (
10783
+  array(
10784 10784
     'return' => 'array',
10785 10785
     'params' => 'array arr1, array arr2 [, array ...], callback data_compare_func',
10786 10786
     'description' => 'Returns the entries of arr1 that have values which are present in all the other arguments. Data is compared by using an user-supplied callback.',
10787 10787
   ),
10788 10788
   'array_intersect_assoc' => 
10789
-  array (
10789
+  array(
10790 10790
     'return' => 'array',
10791 10791
     'params' => 'array arr1, array arr2 [, array ...]',
10792 10792
     'description' => 'Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check',
10793 10793
   ),
10794 10794
   'array_uintersect_assoc' => 
10795
-  array (
10795
+  array(
10796 10796
     'return' => 'array',
10797 10797
     'params' => 'array arr1, array arr2 [, array ...], callback data_compare_func',
10798 10798
     'description' => 'Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check. Data is compared by using an user-supplied callback.',
10799 10799
   ),
10800 10800
   'array_intersect_uassoc' => 
10801
-  array (
10801
+  array(
10802 10802
     'return' => 'array',
10803 10803
     'params' => 'array arr1, array arr2 [, array ...], callback key_compare_func',
10804 10804
     'description' => 'Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check and they are compared by using an user-supplied callback.',
10805 10805
   ),
10806 10806
   'array_uintersect_uassoc' => 
10807
-  array (
10807
+  array(
10808 10808
     'return' => 'array',
10809 10809
     'params' => 'array arr1, array arr2 [, array ...], callback data_compare_func, callback key_compare_func',
10810 10810
     'description' => 'Returns the entries of arr1 that have values which are present in all the other arguments. Keys are used to do more restrictive check. Both data and keys are compared by using user-supplied callbacks.',
10811 10811
   ),
10812 10812
   'array_diff_key' => 
10813
-  array (
10813
+  array(
10814 10814
     'return' => 'array',
10815 10815
     'params' => 'array arr1, array arr2 [, array ...]',
10816 10816
     'description' => 'Returns the entries of arr1 that have keys which are not present in any of the others arguments. This function is like array_diff() but works on the keys instead of the values. The associativity is preserved.',
10817 10817
   ),
10818 10818
   'array_diff_ukey' => 
10819
-  array (
10819
+  array(
10820 10820
     'return' => 'array',
10821 10821
     'params' => 'array arr1, array arr2 [, array ...], callback key_comp_func',
10822 10822
     'description' => 'Returns the entries of arr1 that have keys which are not present in any of the others arguments. User supplied function is used for comparing the keys. This function is like array_udiff() but works on the keys instead of the values. The associativity is preserved.',
10823 10823
   ),
10824 10824
   'array_diff' => 
10825
-  array (
10825
+  array(
10826 10826
     'return' => 'array',
10827 10827
     'params' => 'array arr1, array arr2 [, array ...]',
10828 10828
     'description' => 'Returns the entries of arr1 that have values which are not present in any of the others arguments.',
10829 10829
   ),
10830 10830
   'array_udiff' => 
10831
-  array (
10831
+  array(
10832 10832
     'return' => 'array',
10833 10833
     'params' => 'array arr1, array arr2 [, array ...], callback data_comp_func',
10834 10834
     'description' => 'Returns the entries of arr1 that have values which are not present in any of the others arguments. Elements are compared by user supplied function.',
10835 10835
   ),
10836 10836
   'array_diff_assoc' => 
10837
-  array (
10837
+  array(
10838 10838
     'return' => 'array',
10839 10839
     'params' => 'array arr1, array arr2 [, array ...]',
10840 10840
     'description' => 'Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal',
10841 10841
   ),
10842 10842
   'array_diff_uassoc' => 
10843
-  array (
10843
+  array(
10844 10844
     'return' => 'array',
10845 10845
     'params' => 'array arr1, array arr2 [, array ...], callback data_comp_func',
10846 10846
     'description' => 'Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal. Elements are compared by user supplied function.',
10847 10847
   ),
10848 10848
   'array_udiff_assoc' => 
10849
-  array (
10849
+  array(
10850 10850
     'return' => 'array',
10851 10851
     'params' => 'array arr1, array arr2 [, array ...], callback key_comp_func',
10852 10852
     'description' => 'Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal. Keys are compared by user supplied function.',
10853 10853
   ),
10854 10854
   'array_udiff_uassoc' => 
10855
-  array (
10855
+  array(
10856 10856
     'return' => 'array',
10857 10857
     'params' => 'array arr1, array arr2 [, array ...], callback data_comp_func, callback key_comp_func',
10858 10858
     'description' => 'Returns the entries of arr1 that have values which are not present in any of the others arguments but do additional checks whether the keys are equal. Keys and elements are compared by user supplied functions.',
10859 10859
   ),
10860 10860
   'array_multisort' => 
10861
-  array (
10861
+  array(
10862 10862
     'return' => 'bool',
10863 10863
     'params' => 'array ar1 [, SORT_ASC|SORT_DESC [, SORT_REGULAR|SORT_NUMERIC|SORT_STRING]] [, array ar2 [, SORT_ASC|SORT_DESC [, SORT_REGULAR|SORT_NUMERIC|SORT_STRING]], ...]',
10864 10864
     'description' => 'Sort multiple arrays at once similar to how ORDER BY clause works in SQL',
10865 10865
   ),
10866 10866
   'array_rand' => 
10867
-  array (
10867
+  array(
10868 10868
     'return' => 'mixed',
10869 10869
     'params' => 'array input [, int num_req]',
10870 10870
     'description' => 'Return key/keys for random entry/entries in the array',
10871 10871
   ),
10872 10872
   'array_sum' => 
10873
-  array (
10873
+  array(
10874 10874
     'return' => 'mixed',
10875 10875
     'params' => 'array input',
10876 10876
     'description' => 'Returns the sum of the array entries',
10877 10877
   ),
10878 10878
   'array_product' => 
10879
-  array (
10879
+  array(
10880 10880
     'return' => 'mixed',
10881 10881
     'params' => 'array input',
10882 10882
     'description' => 'Returns the product of the array entries',
10883 10883
   ),
10884 10884
   'array_reduce' => 
10885
-  array (
10885
+  array(
10886 10886
     'return' => 'mixed',
10887 10887
     'params' => 'array input, mixed callback [, int initial]',
10888 10888
     'description' => 'Iteratively reduce the array to a single value via the callback.',
10889 10889
   ),
10890 10890
   'array_filter' => 
10891
-  array (
10891
+  array(
10892 10892
     'return' => 'array',
10893 10893
     'params' => 'array input [, mixed callback]',
10894 10894
     'description' => 'Filters elements from the array via the callback.',
10895 10895
   ),
10896 10896
   'array_map' => 
10897
-  array (
10897
+  array(
10898 10898
     'return' => 'array',
10899 10899
     'params' => 'mixed callback, array input1 [, array input2 ,...]',
10900 10900
     'description' => 'Applies the callback to the elements in given arrays.',
10901 10901
   ),
10902 10902
   'array_key_exists' => 
10903
-  array (
10903
+  array(
10904 10904
     'return' => 'bool',
10905 10905
     'params' => 'mixed key, array search',
10906 10906
     'description' => 'Checks if the given key or index exists in the array',
10907 10907
   ),
10908 10908
   'array_chunk' => 
10909
-  array (
10909
+  array(
10910 10910
     'return' => 'array',
10911 10911
     'params' => 'array input, int size [, bool preserve_keys]',
10912 10912
     'description' => 'Split array into chunks',
10913 10913
   ),
10914 10914
   'array_combine' => 
10915
-  array (
10915
+  array(
10916 10916
     'return' => 'array',
10917 10917
     'params' => 'array keys, array values',
10918 10918
     'description' => 'Creates an array by using the elements of the first parameter as keys and the elements of the second as correspoding keys',
10919 10919
   ),
10920 10920
   'soundex' => 
10921
-  array (
10921
+  array(
10922 10922
     'return' => 'string',
10923 10923
     'params' => 'string str',
10924 10924
     'description' => 'Calculate the soundex key of a string',
10925 10925
   ),
10926 10926
   'strptime' => 
10927
-  array (
10927
+  array(
10928 10928
     'return' => 'string',
10929 10929
     'params' => 'string timestamp, string format',
10930 10930
     'description' => 'Parse a time/date generated with strftime()',
10931 10931
   ),
10932 10932
   'md5' => 
10933
-  array (
10933
+  array(
10934 10934
     'return' => 'string',
10935 10935
     'params' => 'string str, [ bool raw_output]',
10936 10936
     'description' => 'Calculate the md5 hash of a string',
10937 10937
   ),
10938 10938
   'md5_file' => 
10939
-  array (
10939
+  array(
10940 10940
     'return' => 'string',
10941 10941
     'params' => 'string filename [, bool raw_output]',
10942 10942
     'description' => 'Calculate the md5 hash of given filename',
10943 10943
   ),
10944 10944
   'header' => 
10945
-  array (
10945
+  array(
10946 10946
     'return' => 'void',
10947 10947
     'params' => 'string header [, bool replace, [int http_response_code]]',
10948 10948
     'description' => 'Sends a raw HTTP header',
10949 10949
   ),
10950 10950
   'setcookie' => 
10951
-  array (
10951
+  array(
10952 10952
     'return' => 'bool',
10953 10953
     'params' => 'string name [, string value [, int expires [, string path [, string domain [, bool secure]]]]]',
10954 10954
     'description' => 'Send a cookie',
10955 10955
   ),
10956 10956
   'setrawcookie' => 
10957
-  array (
10957
+  array(
10958 10958
     'return' => 'bool',
10959 10959
     'params' => 'string name [, string value [, int expires [, string path [, string domain [, bool secure]]]]]',
10960 10960
     'description' => 'Send a cookie with no url encoding of the value',
10961 10961
   ),
10962 10962
   'headers_sent' => 
10963
-  array (
10963
+  array(
10964 10964
     'return' => 'bool',
10965 10965
     'params' => '[string &$file [, int &$line]]',
10966 10966
     'description' => 'Returns true if headers have already been sent, false otherwise',
10967 10967
   ),
10968 10968
   'headers_list' => 
10969
-  array (
10969
+  array(
10970 10970
     'return' => 'array',
10971 10971
     'params' => 'void',
10972 10972
     'description' => 'Return list of headers to be sent / already sent',
10973 10973
   ),
10974 10974
   'crc32' => 
10975
-  array (
10975
+  array(
10976 10976
     'return' => 'string',
10977 10977
     'params' => 'string str',
10978 10978
     'description' => 'Calculate the crc32 polynomial of a string',
10979 10979
   ),
10980 10980
   'abs' => 
10981
-  array (
10981
+  array(
10982 10982
     'return' => 'int',
10983 10983
     'params' => 'int number',
10984 10984
     'description' => 'Return the absolute value of the number',
10985 10985
   ),
10986 10986
   'ceil' => 
10987
-  array (
10987
+  array(
10988 10988
     'return' => 'float',
10989 10989
     'params' => 'float number',
10990 10990
     'description' => 'Returns the next highest integer value of the number',
10991 10991
   ),
10992 10992
   'floor' => 
10993
-  array (
10993
+  array(
10994 10994
     'return' => 'float',
10995 10995
     'params' => 'float number',
10996 10996
     'description' => 'Returns the next lowest integer value from the number',
10997 10997
   ),
10998 10998
   'round' => 
10999
-  array (
10999
+  array(
11000 11000
     'return' => 'float',
11001 11001
     'params' => 'float number [, int precision]',
11002 11002
     'description' => 'Returns the number rounded to specified precision',
11003 11003
   ),
11004 11004
   'sin' => 
11005
-  array (
11005
+  array(
11006 11006
     'return' => 'float',
11007 11007
     'params' => 'float number',
11008 11008
     'description' => 'Returns the sine of the number in radians',
11009 11009
   ),
11010 11010
   'cos' => 
11011
-  array (
11011
+  array(
11012 11012
     'return' => 'float',
11013 11013
     'params' => 'float number',
11014 11014
     'description' => 'Returns the cosine of the number in radians',
11015 11015
   ),
11016 11016
   'tan' => 
11017
-  array (
11017
+  array(
11018 11018
     'return' => 'float',
11019 11019
     'params' => 'float number',
11020 11020
     'description' => 'Returns the tangent of the number in radians',
11021 11021
   ),
11022 11022
   'asin' => 
11023
-  array (
11023
+  array(
11024 11024
     'return' => 'float',
11025 11025
     'params' => 'float number',
11026 11026
     'description' => 'Returns the arc sine of the number in radians',
11027 11027
   ),
11028 11028
   'acos' => 
11029
-  array (
11029
+  array(
11030 11030
     'return' => 'float',
11031 11031
     'params' => 'float number',
11032 11032
     'description' => 'Return the arc cosine of the number in radians',
11033 11033
   ),
11034 11034
   'atan' => 
11035
-  array (
11035
+  array(
11036 11036
     'return' => 'float',
11037 11037
     'params' => 'float number',
11038 11038
     'description' => 'Returns the arc tangent of the number in radians',
11039 11039
   ),
11040 11040
   'atan2' => 
11041
-  array (
11041
+  array(
11042 11042
     'return' => 'float',
11043 11043
     'params' => 'float y, float x',
11044 11044
     'description' => 'Returns the arc tangent of y/x, with the resulting quadrant determined by the signs of y and x',
11045 11045
   ),
11046 11046
   'sinh' => 
11047
-  array (
11047
+  array(
11048 11048
     'return' => 'float',
11049 11049
     'params' => 'float number',
11050 11050
     'description' => 'Returns the hyperbolic sine of the number, defined as (exp(number) - exp(-number))/2',
11051 11051
   ),
11052 11052
   'cosh' => 
11053
-  array (
11053
+  array(
11054 11054
     'return' => 'float',
11055 11055
     'params' => 'float number',
11056 11056
     'description' => 'Returns the hyperbolic cosine of the number, defined as (exp(number) + exp(-number))/2',
11057 11057
   ),
11058 11058
   'tanh' => 
11059
-  array (
11059
+  array(
11060 11060
     'return' => 'float',
11061 11061
     'params' => 'float number',
11062 11062
     'description' => 'Returns the hyperbolic tangent of the number, defined as sinh(number)/cosh(number)',
11063 11063
   ),
11064 11064
   'asinh' => 
11065
-  array (
11065
+  array(
11066 11066
     'return' => 'float',
11067 11067
     'params' => 'float number',
11068 11068
     'description' => 'Returns the inverse hyperbolic sine of the number, i.e. the value whose hyperbolic sine is number',
11069 11069
   ),
11070 11070
   'acosh' => 
11071
-  array (
11071
+  array(
11072 11072
     'return' => 'float',
11073 11073
     'params' => 'float number',
11074 11074
     'description' => 'Returns the inverse hyperbolic cosine of the number, i.e. the value whose hyperbolic cosine is number',
11075 11075
   ),
11076 11076
   'atanh' => 
11077
-  array (
11077
+  array(
11078 11078
     'return' => 'float',
11079 11079
     'params' => 'float number',
11080 11080
     'description' => 'Returns the inverse hyperbolic tangent of the number, i.e. the value whose hyperbolic tangent is number',
11081 11081
   ),
11082 11082
   'pi' => 
11083
-  array (
11083
+  array(
11084 11084
     'return' => 'float',
11085 11085
     'params' => 'void',
11086 11086
     'description' => 'Returns an approximation of pi',
11087 11087
   ),
11088 11088
   'is_finite' => 
11089
-  array (
11089
+  array(
11090 11090
     'return' => 'bool',
11091 11091
     'params' => 'float val',
11092 11092
     'description' => 'Returns whether argument is finite',
11093 11093
   ),
11094 11094
   'is_infinite' => 
11095
-  array (
11095
+  array(
11096 11096
     'return' => 'bool',
11097 11097
     'params' => 'float val',
11098 11098
     'description' => 'Returns whether argument is infinite',
11099 11099
   ),
11100 11100
   'is_nan' => 
11101
-  array (
11101
+  array(
11102 11102
     'return' => 'bool',
11103 11103
     'params' => 'float val',
11104 11104
     'description' => 'Returns whether argument is not a number',
11105 11105
   ),
11106 11106
   'pow' => 
11107
-  array (
11107
+  array(
11108 11108
     'return' => 'number',
11109 11109
     'params' => 'number base, number exponent',
11110 11110
     'description' => 'Returns base raised to the power of exponent. Returns integer result when possible',
11111 11111
   ),
11112 11112
   'exp' => 
11113
-  array (
11113
+  array(
11114 11114
     'return' => 'float',
11115 11115
     'params' => 'float number',
11116 11116
     'description' => 'Returns e raised to the power of the number',
11117 11117
   ),
11118 11118
   'expm1' => 
11119
-  array (
11119
+  array(
11120 11120
     'return' => 'float',
11121 11121
     'params' => 'float number',
11122 11122
     'description' => 'Returns exp(number) - 1, computed in a way that accurate even when the value of number is close to zero',
11123 11123
   ),
11124 11124
   'log1p' => 
11125
-  array (
11125
+  array(
11126 11126
     'return' => 'float',
11127 11127
     'params' => 'float number',
11128 11128
     'description' => 'Returns log(1 + number), computed in a way that accurate even when the value of number is close to zero',
11129 11129
   ),
11130 11130
   'log' => 
11131
-  array (
11131
+  array(
11132 11132
     'return' => 'float',
11133 11133
     'params' => 'float number, [float base]',
11134 11134
     'description' => 'Returns the natural logarithm of the number, or the base log if base is specified',
11135 11135
   ),
11136 11136
   'log10' => 
11137
-  array (
11137
+  array(
11138 11138
     'return' => 'float',
11139 11139
     'params' => 'float number',
11140 11140
     'description' => 'Returns the base-10 logarithm of the number',
11141 11141
   ),
11142 11142
   'sqrt' => 
11143
-  array (
11143
+  array(
11144 11144
     'return' => 'float',
11145 11145
     'params' => 'float number',
11146 11146
     'description' => 'Returns the square root of the number',
11147 11147
   ),
11148 11148
   'hypot' => 
11149
-  array (
11149
+  array(
11150 11150
     'return' => 'float',
11151 11151
     'params' => 'float num1, float num2',
11152 11152
     'description' => 'Returns sqrt(num1*num1 + num2*num2)',
11153 11153
   ),
11154 11154
   'deg2rad' => 
11155
-  array (
11155
+  array(
11156 11156
     'return' => 'float',
11157 11157
     'params' => 'float number',
11158 11158
     'description' => 'Converts the number in degrees to the radian equivalent',
11159 11159
   ),
11160 11160
   'rad2deg' => 
11161
-  array (
11161
+  array(
11162 11162
     'return' => 'float',
11163 11163
     'params' => 'float number',
11164 11164
     'description' => 'Converts the radian number to the equivalent number in degrees',
11165 11165
   ),
11166 11166
   'bindec' => 
11167
-  array (
11167
+  array(
11168 11168
     'return' => 'int',
11169 11169
     'params' => 'string binary_number',
11170 11170
     'description' => 'Returns the decimal equivalent of the binary number',
11171 11171
   ),
11172 11172
   'hexdec' => 
11173
-  array (
11173
+  array(
11174 11174
     'return' => 'int',
11175 11175
     'params' => 'string hexadecimal_number',
11176 11176
     'description' => 'Returns the decimal equivalent of the hexadecimal number',
11177 11177
   ),
11178 11178
   'octdec' => 
11179
-  array (
11179
+  array(
11180 11180
     'return' => 'int',
11181 11181
     'params' => 'string octal_number',
11182 11182
     'description' => 'Returns the decimal equivalent of an octal string',
11183 11183
   ),
11184 11184
   'decbin' => 
11185
-  array (
11185
+  array(
11186 11186
     'return' => 'string',
11187 11187
     'params' => 'int decimal_number',
11188 11188
     'description' => 'Returns a string containing a binary representation of the number',
11189 11189
   ),
11190 11190
   'decoct' => 
11191
-  array (
11191
+  array(
11192 11192
     'return' => 'string',
11193 11193
     'params' => 'int decimal_number',
11194 11194
     'description' => 'Returns a string containing an octal representation of the given number',
11195 11195
   ),
11196 11196
   'dechex' => 
11197
-  array (
11197
+  array(
11198 11198
     'return' => 'string',
11199 11199
     'params' => 'int decimal_number',
11200 11200
     'description' => 'Returns a string containing a hexadecimal representation of the given number',
11201 11201
   ),
11202 11202
   'base_convert' => 
11203
-  array (
11203
+  array(
11204 11204
     'return' => 'string',
11205 11205
     'params' => 'string number, int frombase, int tobase',
11206 11206
     'description' => 'Converts a number in a string from any base <= 36 to any base <= 36',
11207 11207
   ),
11208 11208
   'number_format' => 
11209
-  array (
11209
+  array(
11210 11210
     'return' => 'string',
11211 11211
     'params' => 'float number [, int num_decimal_places [, string dec_seperator, string thousands_seperator]]',
11212 11212
     'description' => 'Formats a number with grouped thousands',
11213 11213
   ),
11214 11214
   'fmod' => 
11215
-  array (
11215
+  array(
11216 11216
     'return' => 'float',
11217 11217
     'params' => 'float x, float y',
11218 11218
     'description' => 'Returns the remainder of dividing x by y as a float',
11219 11219
   ),
11220 11220
   'gethostbyaddr' => 
11221
-  array (
11221
+  array(
11222 11222
     'return' => 'string',
11223 11223
     'params' => 'string ip_address',
11224 11224
     'description' => 'Get the Internet host name corresponding to a given IP address',
11225 11225
   ),
11226 11226
   'gethostbyname' => 
11227
-  array (
11227
+  array(
11228 11228
     'return' => 'string',
11229 11229
     'params' => 'string hostname',
11230 11230
     'description' => 'Get the IP address corresponding to a given Internet host name',
11231 11231
   ),
11232 11232
   'gethostbynamel' => 
11233
-  array (
11233
+  array(
11234 11234
     'return' => 'array',
11235 11235
     'params' => 'string hostname',
11236 11236
     'description' => 'Return a list of IP addresses that a given hostname resolves to.',
11237 11237
   ),
11238 11238
   'dns_check_record' => 
11239
-  array (
11239
+  array(
11240 11240
     'return' => 'int',
11241 11241
     'params' => 'string host [, string type]',
11242 11242
     'description' => 'Check DNS records corresponding to a given Internet host name or IP address',
11243 11243
   ),
11244 11244
   'dns_get_record' => 
11245
-  array (
11245
+  array(
11246 11246
     'return' => 'array|false',
11247 11247
     'params' => 'string hostname [, int type[, array authns, array addtl]]',
11248 11248
     'description' => 'Get any Resource Record corresponding to a given Internet host name',
11249 11249
   ),
11250 11250
   'dns_get_mx' => 
11251
-  array (
11251
+  array(
11252 11252
     'return' => 'bool',
11253 11253
     'params' => 'string hostname, array mxhosts [, array weight]',
11254 11254
     'description' => 'Get MX records corresponding to a given Internet host name',
11255 11255
   ),
11256 11256
   'bin2hex' => 
11257
-  array (
11257
+  array(
11258 11258
     'return' => 'string',
11259 11259
     'params' => 'string data',
11260 11260
     'description' => 'Converts the binary representation of data to hex',
11261 11261
   ),
11262 11262
   'strspn' => 
11263
-  array (
11263
+  array(
11264 11264
     'return' => 'int',
11265 11265
     'params' => 'string str, string mask [, start [, len]]',
11266 11266
     'description' => 'Finds length of initial segment consisting entirely of characters found in mask. If start or/and length is provided works like strspn(substr($s,$start,$len),$good_chars)',
11267 11267
   ),
11268 11268
   'strcspn' => 
11269
-  array (
11269
+  array(
11270 11270
     'return' => 'int',
11271 11271
     'params' => 'string str, string mask [, start [, len]]',
11272 11272
     'description' => 'Finds length of initial segment consisting entirely of characters not found in mask. If start or/and length is provide works like strcspn(substr($s,$start,$len),$bad_chars)',
11273 11273
   ),
11274 11274
   'nl_langinfo' => 
11275
-  array (
11275
+  array(
11276 11276
     'return' => 'string',
11277 11277
     'params' => 'int item',
11278 11278
     'description' => 'Query language and locale information',
11279 11279
   ),
11280 11280
   'strcoll' => 
11281
-  array (
11281
+  array(
11282 11282
     'return' => 'int',
11283 11283
     'params' => 'string str1, string str2',
11284 11284
     'description' => 'Compares two strings using the current locale',
11285 11285
   ),
11286 11286
   'trim' => 
11287
-  array (
11287
+  array(
11288 11288
     'return' => 'string',
11289 11289
     'params' => 'string str [, string character_mask]',
11290 11290
     'description' => 'Strips whitespace from the beginning and end of a string',
11291 11291
   ),
11292 11292
   'rtrim' => 
11293
-  array (
11293
+  array(
11294 11294
     'return' => 'string',
11295 11295
     'params' => 'string str [, string character_mask]',
11296 11296
     'description' => 'Removes trailing whitespace',
11297 11297
   ),
11298 11298
   'ltrim' => 
11299
-  array (
11299
+  array(
11300 11300
     'return' => 'string',
11301 11301
     'params' => 'string str [, string character_mask]',
11302 11302
     'description' => 'Strips whitespace from the beginning of a string',
11303 11303
   ),
11304 11304
   'wordwrap' => 
11305
-  array (
11305
+  array(
11306 11306
     'return' => 'string',
11307 11307
     'params' => 'string str [, int width [, string break [, boolean cut]]]',
11308 11308
     'description' => 'Wraps buffer to selected number of characters using string break char',
11309 11309
   ),
11310 11310
   'explode' => 
11311
-  array (
11311
+  array(
11312 11312
     'return' => 'array',
11313 11313
     'params' => 'string separator, string str [, int limit]',
11314 11314
     'description' => 'Splits a string on string separator and return array of components. If limit is positive only limit number of components is returned. If limit is negative all components except the last abs(limit) are returned.',
11315 11315
   ),
11316 11316
   'join' => 
11317
-  array (
11317
+  array(
11318 11318
     'return' => 'string',
11319 11319
     'params' => 'array src, string glue',
11320 11320
     'description' => 'An alias for implode',
11321 11321
   ),
11322 11322
   'implode' => 
11323
-  array (
11323
+  array(
11324 11324
     'return' => 'string',
11325 11325
     'params' => '[string glue,] array pieces',
11326 11326
     'description' => 'Joins array elements placing glue string between items and return one string',
11327 11327
   ),
11328 11328
   'strtok' => 
11329
-  array (
11329
+  array(
11330 11330
     'return' => 'string',
11331 11331
     'params' => '[string str,] string token',
11332 11332
     'description' => 'Tokenize a string',
11333 11333
   ),
11334 11334
   'strtoupper' => 
11335
-  array (
11335
+  array(
11336 11336
     'return' => 'string',
11337 11337
     'params' => 'string str',
11338 11338
     'description' => 'Makes a string uppercase',
11339 11339
   ),
11340 11340
   'strtolower' => 
11341
-  array (
11341
+  array(
11342 11342
     'return' => 'string',
11343 11343
     'params' => 'string str',
11344 11344
     'description' => 'Makes a string lowercase',
11345 11345
   ),
11346 11346
   'basename' => 
11347
-  array (
11347
+  array(
11348 11348
     'return' => 'string',
11349 11349
     'params' => 'string path [, string suffix]',
11350 11350
     'description' => 'Returns the filename component of the path',
11351 11351
   ),
11352 11352
   'dirname' => 
11353
-  array (
11353
+  array(
11354 11354
     'return' => 'string',
11355 11355
     'params' => 'string path',
11356 11356
     'description' => 'Returns the directory name component of the path',
11357 11357
   ),
11358 11358
   'pathinfo' => 
11359
-  array (
11359
+  array(
11360 11360
     'return' => 'array',
11361 11361
     'params' => 'string path',
11362 11362
     'description' => 'Returns information about a certain string',
11363 11363
   ),
11364 11364
   'stristr' => 
11365
-  array (
11365
+  array(
11366 11366
     'return' => 'string',
11367 11367
     'params' => 'string haystack, string needle',
11368 11368
     'description' => 'Finds first occurrence of a string within another, case insensitive',
11369 11369
   ),
11370 11370
   'strstr' => 
11371
-  array (
11371
+  array(
11372 11372
     'return' => 'string',
11373 11373
     'params' => 'string haystack, string needle',
11374 11374
     'description' => 'Finds first occurrence of a string within another',
11375 11375
   ),
11376 11376
   'strchr' => 
11377
-  array (
11377
+  array(
11378 11378
     'return' => 'string',
11379 11379
     'params' => 'string haystack, string needle',
11380 11380
     'description' => 'An alias for strstr',
11381 11381
   ),
11382 11382
   'strpos' => 
11383
-  array (
11383
+  array(
11384 11384
     'return' => 'int',
11385 11385
     'params' => 'string haystack, string needle [, int offset]',
11386 11386
     'description' => 'Finds position of first occurrence of a string within another',
11387 11387
   ),
11388 11388
   'stripos' => 
11389
-  array (
11389
+  array(
11390 11390
     'return' => 'int',
11391 11391
     'params' => 'string haystack, string needle [, int offset]',
11392 11392
     'description' => 'Finds position of first occurrence of a string within another, case insensitive',
11393 11393
   ),
11394 11394
   'strrpos' => 
11395
-  array (
11395
+  array(
11396 11396
     'return' => 'int',
11397 11397
     'params' => 'string haystack, string needle [, int offset]',
11398 11398
     'description' => 'Finds position of last occurrence of a string within another string',
11399 11399
   ),
11400 11400
   'strripos' => 
11401
-  array (
11401
+  array(
11402 11402
     'return' => 'int',
11403 11403
     'params' => 'string haystack, string needle [, int offset]',
11404 11404
     'description' => 'Finds position of last occurrence of a string within another string',
11405 11405
   ),
11406 11406
   'strrchr' => 
11407
-  array (
11407
+  array(
11408 11408
     'return' => 'string',
11409 11409
     'params' => 'string haystack, string needle',
11410 11410
     'description' => 'Finds the last occurrence of a character in a string within another',
11411 11411
   ),
11412 11412
   'chunk_split' => 
11413
-  array (
11413
+  array(
11414 11414
     'return' => 'string',
11415 11415
     'params' => 'string str [, int chunklen [, string ending]]',
11416 11416
     'description' => 'Returns split line',
11417 11417
   ),
11418 11418
   'substr' => 
11419
-  array (
11419
+  array(
11420 11420
     'return' => 'string',
11421 11421
     'params' => 'string str, int start [, int length]',
11422 11422
     'description' => 'Returns part of a string',
11423 11423
   ),
11424 11424
   'substr_replace' => 
11425
-  array (
11425
+  array(
11426 11426
     'return' => 'mixed',
11427 11427
     'params' => 'mixed str, mixed repl, mixed start [, mixed length]',
11428 11428
     'description' => 'Replaces part of a string with another string',
11429 11429
   ),
11430 11430
   'quotemeta' => 
11431
-  array (
11431
+  array(
11432 11432
     'return' => 'string',
11433 11433
     'params' => 'string str',
11434 11434
     'description' => 'Quotes meta characters',
11435 11435
   ),
11436 11436
   'ord' => 
11437
-  array (
11437
+  array(
11438 11438
     'return' => 'int',
11439 11439
     'params' => 'string character',
11440 11440
     'description' => 'Returns ASCII value of character',
11441 11441
   ),
11442 11442
   'chr' => 
11443
-  array (
11443
+  array(
11444 11444
     'return' => 'string',
11445 11445
     'params' => 'int ascii',
11446 11446
     'description' => 'Converts ASCII code to a character',
11447 11447
   ),
11448 11448
   'ucfirst' => 
11449
-  array (
11449
+  array(
11450 11450
     'return' => 'string',
11451 11451
     'params' => 'string str',
11452 11452
     'description' => 'Makes a string\'s first character uppercase',
11453 11453
   ),
11454 11454
   'ucwords' => 
11455
-  array (
11455
+  array(
11456 11456
     'return' => 'string',
11457 11457
     'params' => 'string str',
11458 11458
     'description' => 'Uppercase the first character of every word in a string',
11459 11459
   ),
11460 11460
   'strtr' => 
11461
-  array (
11461
+  array(
11462 11462
     'return' => 'string',
11463 11463
     'params' => 'string str, string from, string to',
11464 11464
     'description' => 'Translates characters in str using given translation tables',
11465 11465
   ),
11466 11466
   'strrev' => 
11467
-  array (
11467
+  array(
11468 11468
     'return' => 'string',
11469 11469
     'params' => 'string str',
11470 11470
     'description' => 'Reverse a string',
11471 11471
   ),
11472 11472
   'similar_text' => 
11473
-  array (
11473
+  array(
11474 11474
     'return' => 'int',
11475 11475
     'params' => 'string str1, string str2 [, float percent]',
11476 11476
     'description' => 'Calculates the similarity between two strings',
11477 11477
   ),
11478 11478
   'addcslashes' => 
11479
-  array (
11479
+  array(
11480 11480
     'return' => 'string',
11481 11481
     'params' => 'string str, string charlist',
11482 11482
     'description' => 'Escapes all chars mentioned in charlist with backslash. It creates octal representations if asked to backslash characters with 8th bit set or with ASCII<32 (except \'\\n\', \'\\r\', \'\\t\' etc...)',
11483 11483
   ),
11484 11484
   'addslashes' => 
11485
-  array (
11485
+  array(
11486 11486
     'return' => 'string',
11487 11487
     'params' => 'string str',
11488 11488
     'description' => 'Escapes single quote, double quotes and backslash characters in a string with backslashes',
11489 11489
   ),
11490 11490
   'stripcslashes' => 
11491
-  array (
11491
+  array(
11492 11492
     'return' => 'string',
11493 11493
     'params' => 'string str',
11494 11494
     'description' => 'Strips backslashes from a string. Uses C-style conventions',
11495 11495
   ),
11496 11496
   'stripslashes' => 
11497
-  array (
11497
+  array(
11498 11498
     'return' => 'string',
11499 11499
     'params' => 'string str',
11500 11500
     'description' => 'Strips backslashes from a string',
11501 11501
   ),
11502 11502
   'str_replace' => 
11503
-  array (
11503
+  array(
11504 11504
     'return' => 'mixed',
11505 11505
     'params' => 'mixed search, mixed replace, mixed subject [, int &replace_count]',
11506 11506
     'description' => 'Replaces all occurrences of search in haystack with replace',
11507 11507
   ),
11508 11508
   'str_ireplace' => 
11509
-  array (
11509
+  array(
11510 11510
     'return' => 'mixed',
11511 11511
     'params' => 'mixed search, mixed replace, mixed subject [, int &replace_count]',
11512 11512
     'description' => 'Replaces all occurrences of search in haystack with replace / case-insensitive',
11513 11513
   ),
11514 11514
   'hebrev' => 
11515
-  array (
11515
+  array(
11516 11516
     'return' => 'string',
11517 11517
     'params' => 'string str [, int max_chars_per_line]',
11518 11518
     'description' => 'Converts logical Hebrew text to visual text',
11519 11519
   ),
11520 11520
   'hebrevc' => 
11521
-  array (
11521
+  array(
11522 11522
     'return' => 'string',
11523 11523
     'params' => 'string str [, int max_chars_per_line]',
11524 11524
     'description' => 'Converts logical Hebrew text to visual text with newline conversion',
11525 11525
   ),
11526 11526
   'nl2br' => 
11527
-  array (
11527
+  array(
11528 11528
     'return' => 'string',
11529 11529
     'params' => 'string str',
11530 11530
     'description' => 'Converts newlines to HTML line breaks',
11531 11531
   ),
11532 11532
   'strip_tags' => 
11533
-  array (
11533
+  array(
11534 11534
     'return' => 'string',
11535 11535
     'params' => 'string str [, string allowable_tags]',
11536 11536
     'description' => 'Strips HTML and PHP tags from a string',
11537 11537
   ),
11538 11538
   'setlocale' => 
11539
-  array (
11539
+  array(
11540 11540
     'return' => 'string',
11541 11541
     'params' => 'mixed category, string locale [, string ...]',
11542 11542
     'description' => 'Set locale information',
11543 11543
   ),
11544 11544
   'parse_str' => 
11545
-  array (
11545
+  array(
11546 11546
     'return' => 'void',
11547 11547
     'params' => 'string encoded_string [, array result]',
11548 11548
     'description' => 'Parses GET/POST/COOKIE data and sets global variables',
11549 11549
   ),
11550 11550
   'str_repeat' => 
11551
-  array (
11551
+  array(
11552 11552
     'return' => 'string',
11553 11553
     'params' => 'string input, int mult',
11554 11554
     'description' => 'Returns the input string repeat mult times',
11555 11555
   ),
11556 11556
   'count_chars' => 
11557
-  array (
11557
+  array(
11558 11558
     'return' => 'mixed',
11559 11559
     'params' => 'string input [, int mode]',
11560 11560
     'description' => 'Returns info about what characters are used in input',
11561 11561
   ),
11562 11562
   'strnatcmp' => 
11563
-  array (
11563
+  array(
11564 11564
     'return' => 'int',
11565 11565
     'params' => 'string s1, string s2',
11566 11566
     'description' => 'Returns the result of string comparison using \'natural\' algorithm',
11567 11567
   ),
11568 11568
   'localeconv' => 
11569
-  array (
11569
+  array(
11570 11570
     'return' => 'array',
11571 11571
     'params' => 'void',
11572 11572
     'description' => 'Returns numeric formatting information based on the current locale',
11573 11573
   ),
11574 11574
   'strnatcasecmp' => 
11575
-  array (
11575
+  array(
11576 11576
     'return' => 'int',
11577 11577
     'params' => 'string s1, string s2',
11578 11578
     'description' => 'Returns the result of case-insensitive string comparison using \'natural\' algorithm',
11579 11579
   ),
11580 11580
   'substr_count' => 
11581
-  array (
11581
+  array(
11582 11582
     'return' => 'int',
11583 11583
     'params' => 'string haystack, string needle [, int offset [, int length]]',
11584 11584
     'description' => 'Returns the number of times a substring occurs in the string',
11585 11585
   ),
11586 11586
   'str_pad' => 
11587
-  array (
11587
+  array(
11588 11588
     'return' => 'string',
11589 11589
     'params' => 'string input, int pad_length [, string pad_string [, int pad_type]]',
11590 11590
     'description' => 'Returns input string padded on the left or right to specified length with pad_string',
11591 11591
   ),
11592 11592
   'sscanf' => 
11593
-  array (
11593
+  array(
11594 11594
     'return' => 'mixed',
11595 11595
     'params' => 'string str, string format [, string ...]',
11596 11596
     'description' => 'Implements an ANSI C compatible sscanf',
11597 11597
   ),
11598 11598
   'str_rot13' => 
11599
-  array (
11599
+  array(
11600 11600
     'return' => 'string',
11601 11601
     'params' => 'string str',
11602 11602
     'description' => 'Perform the rot13 transform on a string',
11603 11603
   ),
11604 11604
   'str_shuffle' => 
11605
-  array (
11605
+  array(
11606 11606
     'return' => 'void',
11607 11607
     'params' => 'string str',
11608 11608
     'description' => 'Shuffles string. One permutation of all possible is created',
11609 11609
   ),
11610 11610
   'str_word_count' => 
11611
-  array (
11611
+  array(
11612 11612
     'return' => 'mixed',
11613 11613
     'params' => 'string str, [int format [, string charlist]]',
11614 11614
     'description' => 'Counts the number of words inside a string. If format of 1 is specified,then the function will return an array containing all the wordsfound inside the string. If format of 2 is specified, then the functionwill return an associated array where the position of the word is the keyand the word itself is the value.For the purpose of this function, \'word\' is defined as a locale dependentstring containing alphabetic characters, which also may contain, but not startwith "\'" and "-" characters.',
11615 11615
   ),
11616 11616
   'money_format' => 
11617
-  array (
11617
+  array(
11618 11618
     'return' => 'string',
11619 11619
     'params' => 'string format , float value',
11620 11620
     'description' => 'Convert monetary value(s) to string',
11621 11621
   ),
11622 11622
   'str_split' => 
11623
-  array (
11623
+  array(
11624 11624
     'return' => 'array',
11625 11625
     'params' => 'string str [, int split_length]',
11626 11626
     'description' => 'Convert a string to an array. If split_length is specified, break the string down into chunks each split_length characters long.',
11627 11627
   ),
11628 11628
   'strpbrk' => 
11629
-  array (
11629
+  array(
11630 11630
     'return' => 'array',
11631 11631
     'params' => 'string haystack, string char_list',
11632 11632
     'description' => 'Search a string for any of a set of characters',
11633 11633
   ),
11634 11634
   'substr_compare' => 
11635
-  array (
11635
+  array(
11636 11636
     'return' => 'int',
11637 11637
     'params' => 'string main_str, string str, int offset [, int length [, bool case_sensitivity]]',
11638 11638
     'description' => 'Binary safe optionally case insensitive comparison of 2 strings from an offset, up to length characters',
11639 11639
   ),
11640 11640
   'fsockopen' => 
11641
-  array (
11641
+  array(
11642 11642
     'return' => 'resource',
11643 11643
     'params' => 'string hostname, int port [, int errno [, string errstr [, float timeout]]]',
11644 11644
     'description' => 'Open Internet or Unix domain socket connection',
11645 11645
   ),
11646 11646
   'pfsockopen' => 
11647
-  array (
11647
+  array(
11648 11648
     'return' => 'resource',
11649 11649
     'params' => 'string hostname, int port [, int errno [, string errstr [, float timeout]]]',
11650 11650
     'description' => 'Open persistent Internet or Unix domain socket connection',
11651 11651
   ),
11652 11652
   'readlink' => 
11653
-  array (
11653
+  array(
11654 11654
     'return' => 'string',
11655 11655
     'params' => 'string filename',
11656 11656
     'description' => 'Return the target of a symbolic link',
11657 11657
   ),
11658 11658
   'linkinfo' => 
11659
-  array (
11659
+  array(
11660 11660
     'return' => 'int',
11661 11661
     'params' => 'string filename',
11662 11662
     'description' => 'Returns the st_dev field of the UNIX C stat structure describing the link',
11663 11663
   ),
11664 11664
   'symlink' => 
11665
-  array (
11665
+  array(
11666 11666
     'return' => 'int',
11667 11667
     'params' => 'string target, string link',
11668 11668
     'description' => 'Create a symbolic link',
11669 11669
   ),
11670 11670
   'link' => 
11671
-  array (
11671
+  array(
11672 11672
     'return' => 'int',
11673 11673
     'params' => 'string target, string link',
11674 11674
     'description' => 'Create a hard link',
11675 11675
   ),
11676 11676
   'getmyuid' => 
11677
-  array (
11677
+  array(
11678 11678
     'return' => 'int',
11679 11679
     'params' => 'void',
11680 11680
     'description' => 'Get PHP script owner\'s UID',
11681 11681
   ),
11682 11682
   'getmygid' => 
11683
-  array (
11683
+  array(
11684 11684
     'return' => 'int',
11685 11685
     'params' => 'void',
11686 11686
     'description' => 'Get PHP script owner\'s GID',
11687 11687
   ),
11688 11688
   'getmypid' => 
11689
-  array (
11689
+  array(
11690 11690
     'return' => 'int',
11691 11691
     'params' => 'void',
11692 11692
     'description' => 'Get current process ID',
11693 11693
   ),
11694 11694
   'getmyinode' => 
11695
-  array (
11695
+  array(
11696 11696
     'return' => 'int',
11697 11697
     'params' => 'void',
11698 11698
     'description' => 'Get the inode of the current script being parsed',
11699 11699
   ),
11700 11700
   'getlastmod' => 
11701
-  array (
11701
+  array(
11702 11702
     'return' => 'int',
11703 11703
     'params' => 'void',
11704 11704
     'description' => 'Get time of last page modification',
11705 11705
   ),
11706 11706
   'var_dump' => 
11707
-  array (
11707
+  array(
11708 11708
     'return' => 'void',
11709 11709
     'params' => 'mixed var',
11710 11710
     'description' => 'Dumps a string representation of variable to output',
11711 11711
   ),
11712 11712
   'debug_zval_dump' => 
11713
-  array (
11713
+  array(
11714 11714
     'return' => 'void',
11715 11715
     'params' => 'mixed var',
11716 11716
     'description' => 'Dumps a string representation of an internal zend value to output.',
11717 11717
   ),
11718 11718
   'var_export' => 
11719
-  array (
11719
+  array(
11720 11720
     'return' => 'mixed',
11721 11721
     'params' => 'mixed var [, bool return]',
11722 11722
     'description' => 'Outputs or returns a string representation of a variable',
11723 11723
   ),
11724 11724
   'serialize' => 
11725
-  array (
11725
+  array(
11726 11726
     'return' => 'string',
11727 11727
     'params' => 'mixed variable',
11728 11728
     'description' => 'Returns a string representation of variable (which can later be unserialized)',
11729 11729
   ),
11730 11730
   'unserialize' => 
11731
-  array (
11731
+  array(
11732 11732
     'return' => 'mixed',
11733 11733
     'params' => 'string variable_representation',
11734 11734
     'description' => 'Takes a string representation of variable and recreates it',
11735 11735
   ),
11736 11736
   'memory_get_usage' => 
11737
-  array (
11737
+  array(
11738 11738
     'return' => 'int',
11739 11739
     'params' => '',
11740 11740
     'description' => 'Returns the allocated by PHP memory',
11741 11741
   ),
11742 11742
   'ereg' => 
11743
-  array (
11743
+  array(
11744 11744
     'return' => 'int',
11745 11745
     'params' => 'string pattern, string string [, array registers]',
11746 11746
     'description' => 'Regular expression match',
11747 11747
   ),
11748 11748
   'eregi' => 
11749
-  array (
11749
+  array(
11750 11750
     'return' => 'int',
11751 11751
     'params' => 'string pattern, string string [, array registers]',
11752 11752
     'description' => 'Case-insensitive regular expression match',
11753 11753
   ),
11754 11754
   'ereg_replace' => 
11755
-  array (
11755
+  array(
11756 11756
     'return' => 'string',
11757 11757
     'params' => 'string pattern, string replacement, string string',
11758 11758
     'description' => 'Replace regular expression',
11759 11759
   ),
11760 11760
   'eregi_replace' => 
11761
-  array (
11761
+  array(
11762 11762
     'return' => 'string',
11763 11763
     'params' => 'string pattern, string replacement, string string',
11764 11764
     'description' => 'Case insensitive replace regular expression',
11765 11765
   ),
11766 11766
   'split' => 
11767
-  array (
11767
+  array(
11768 11768
     'return' => 'array',
11769 11769
     'params' => 'string pattern, string string [, int limit]',
11770 11770
     'description' => 'Split string into array by regular expression',
11771 11771
   ),
11772 11772
   'spliti' => 
11773
-  array (
11773
+  array(
11774 11774
     'return' => 'array',
11775 11775
     'params' => 'string pattern, string string [, int limit]',
11776 11776
     'description' => 'Split string into array by regular expression case-insensitive',
11777 11777
   ),
11778 11778
   'sql_regcase' => 
11779
-  array (
11779
+  array(
11780 11780
     'return' => 'string',
11781 11781
     'params' => 'string string',
11782 11782
     'description' => 'Make regular expression for case insensitive match',
11783 11783
   ),
11784 11784
   'crypt' => 
11785
-  array (
11785
+  array(
11786 11786
     'return' => 'string',
11787 11787
     'params' => 'string str [, string salt]',
11788 11788
     'description' => 'Encrypt a string',
11789 11789
   ),
11790 11790
   'ezmlm_hash' => 
11791
-  array (
11791
+  array(
11792 11792
     'return' => 'int',
11793 11793
     'params' => 'string addr',
11794 11794
     'description' => 'Calculate EZMLM list hash value.',
11795 11795
   ),
11796 11796
   'mail' => 
11797
-  array (
11797
+  array(
11798 11798
     'return' => 'int',
11799 11799
     'params' => 'string to, string subject, string message [, string additional_headers [, string additional_parameters]]',
11800 11800
     'description' => 'Send an email message',
11801 11801
   ),
11802 11802
   'srand' => 
11803
-  array (
11803
+  array(
11804 11804
     'return' => 'void',
11805 11805
     'params' => '[int seed]',
11806 11806
     'description' => 'Seeds random number generator',
11807 11807
   ),
11808 11808
   'mt_srand' => 
11809
-  array (
11809
+  array(
11810 11810
     'return' => 'void',
11811 11811
     'params' => '[int seed]',
11812 11812
     'description' => 'Seeds Mersenne Twister random number generator',
11813 11813
   ),
11814 11814
   'rand' => 
11815
-  array (
11815
+  array(
11816 11816
     'return' => 'int',
11817 11817
     'params' => '[int min, int max]',
11818 11818
     'description' => 'Returns a random number',
11819 11819
   ),
11820 11820
   'mt_rand' => 
11821
-  array (
11821
+  array(
11822 11822
     'return' => 'int',
11823 11823
     'params' => '[int min, int max]',
11824 11824
     'description' => 'Returns a random number from Mersenne Twister',
11825 11825
   ),
11826 11826
   'getrandmax' => 
11827
-  array (
11827
+  array(
11828 11828
     'return' => 'int',
11829 11829
     'params' => 'void',
11830 11830
     'description' => 'Returns the maximum value a random number can have',
11831 11831
   ),
11832 11832
   'mt_getrandmax' => 
11833
-  array (
11833
+  array(
11834 11834
     'return' => 'int',
11835 11835
     'params' => 'void',
11836 11836
     'description' => 'Returns the maximum value a random number from Mersenne Twister can have',
11837 11837
   ),
11838 11838
   'get_browser' => 
11839
-  array (
11839
+  array(
11840 11840
     'return' => 'mixed',
11841 11841
     'params' => '[string browser_name [, bool return_array]]',
11842 11842
     'description' => 'Get information about the capabilities of a browser. If browser_name is omittedor null, HTTP_USER_AGENT is used. Returns an object by default; if return_arrayis true, returns an array.',
11843 11843
   ),
11844 11844
   'iptcembed' => 
11845
-  array (
11845
+  array(
11846 11846
     'return' => 'array',
11847 11847
     'params' => 'string iptcdata, string jpeg_file_name [, int spool]',
11848 11848
     'description' => 'Embed binary IPTC data into a JPEG image.',
11849 11849
   ),
11850 11850
   'iptcparse' => 
11851
-  array (
11851
+  array(
11852 11852
     'return' => 'array',
11853 11853
     'params' => 'string iptcdata',
11854 11854
     'description' => 'Parse binary IPTC-data into associative array',
11855 11855
   ),
11856 11856
   'quoted_printable_decode' => 
11857
-  array (
11857
+  array(
11858 11858
     'return' => 'string',
11859 11859
     'params' => 'string str',
11860 11860
     'description' => 'Convert a quoted-printable string to an 8 bit string',
11861 11861
   ),
11862 11862
   'pack' => 
11863
-  array (
11863
+  array(
11864 11864
     'return' => 'string',
11865 11865
     'params' => 'string format, mixed arg1 [, mixed arg2 [, mixed ...]]',
11866 11866
     'description' => 'Takes one or more arguments and packs them into a binary string according to the format argument',
11867 11867
   ),
11868 11868
   'unpack' => 
11869
-  array (
11869
+  array(
11870 11870
     'return' => 'array',
11871 11871
     'params' => 'string format, string input',
11872 11872
     'description' => 'Unpack binary string into named array elements according to format argument',
11873 11873
   ),
11874 11874
   'base64_encode' => 
11875
-  array (
11875
+  array(
11876 11876
     'return' => 'string',
11877 11877
     'params' => 'string str',
11878 11878
     'description' => 'Encodes string using MIME base64 algorithm',
11879 11879
   ),
11880 11880
   'base64_decode' => 
11881
-  array (
11881
+  array(
11882 11882
     'return' => 'string',
11883 11883
     'params' => 'string str',
11884 11884
     'description' => 'Decodes string using MIME base64 algorithm',
11885 11885
   ),
11886 11886
   'gettype' => 
11887
-  array (
11887
+  array(
11888 11888
     'return' => 'string',
11889 11889
     'params' => 'mixed var',
11890 11890
     'description' => 'Returns the type of the variable',
11891 11891
   ),
11892 11892
   'settype' => 
11893
-  array (
11893
+  array(
11894 11894
     'return' => 'bool',
11895 11895
     'params' => 'mixed var, string type',
11896 11896
     'description' => 'Set the type of the variable',
11897 11897
   ),
11898 11898
   'intval' => 
11899
-  array (
11899
+  array(
11900 11900
     'return' => 'int',
11901 11901
     'params' => 'mixed var [, int base]',
11902 11902
     'description' => 'Get the integer value of a variable using the optional base for the conversion',
11903 11903
   ),
11904 11904
   'floatval' => 
11905
-  array (
11905
+  array(
11906 11906
     'return' => 'float',
11907 11907
     'params' => 'mixed var',
11908 11908
     'description' => 'Get the float value of a variable',
11909 11909
   ),
11910 11910
   'strval' => 
11911
-  array (
11911
+  array(
11912 11912
     'return' => 'string',
11913 11913
     'params' => 'mixed var',
11914 11914
     'description' => 'Get the string value of a variable',
11915 11915
   ),
11916 11916
   'is_null' => 
11917
-  array (
11917
+  array(
11918 11918
     'return' => 'bool',
11919 11919
     'params' => 'mixed var',
11920 11920
     'description' => 'Returns true if variable is null',
11921 11921
   ),
11922 11922
   'is_resource' => 
11923
-  array (
11923
+  array(
11924 11924
     'return' => 'bool',
11925 11925
     'params' => 'mixed var',
11926 11926
     'description' => 'Returns true if variable is a resource',
11927 11927
   ),
11928 11928
   'is_bool' => 
11929
-  array (
11929
+  array(
11930 11930
     'return' => 'bool',
11931 11931
     'params' => 'mixed var',
11932 11932
     'description' => 'Returns true if variable is a boolean',
11933 11933
   ),
11934 11934
   'is_long' => 
11935
-  array (
11935
+  array(
11936 11936
     'return' => 'bool',
11937 11937
     'params' => 'mixed var',
11938 11938
     'description' => 'Returns true if variable is a long (integer)',
11939 11939
   ),
11940 11940
   'is_float' => 
11941
-  array (
11941
+  array(
11942 11942
     'return' => 'bool',
11943 11943
     'params' => 'mixed var',
11944 11944
     'description' => 'Returns true if variable is float point',
11945 11945
   ),
11946 11946
   'is_string' => 
11947
-  array (
11947
+  array(
11948 11948
     'return' => 'bool',
11949 11949
     'params' => 'mixed var',
11950 11950
     'description' => 'Returns true if variable is a string',
11951 11951
   ),
11952 11952
   'is_array' => 
11953
-  array (
11953
+  array(
11954 11954
     'return' => 'bool',
11955 11955
     'params' => 'mixed var',
11956 11956
     'description' => 'Returns true if variable is an array',
11957 11957
   ),
11958 11958
   'is_object' => 
11959
-  array (
11959
+  array(
11960 11960
     'return' => 'bool',
11961 11961
     'params' => 'mixed var',
11962 11962
     'description' => 'Returns true if variable is an object',
11963 11963
   ),
11964 11964
   'is_numeric' => 
11965
-  array (
11965
+  array(
11966 11966
     'return' => 'bool',
11967 11967
     'params' => 'mixed value',
11968 11968
     'description' => 'Returns true if value is a number or a numeric string',
11969 11969
   ),
11970 11970
   'is_scalar' => 
11971
-  array (
11971
+  array(
11972 11972
     'return' => 'bool',
11973 11973
     'params' => 'mixed value',
11974 11974
     'description' => 'Returns true if value is a scalar',
11975 11975
   ),
11976 11976
   'is_callable' => 
11977
-  array (
11977
+  array(
11978 11978
     'return' => 'bool',
11979 11979
     'params' => 'mixed var [, bool syntax_only [, string callable_name]]',
11980 11980
     'description' => 'Returns true if var is callable.',
11981 11981
   ),
11982 11982
   'version_compare' => 
11983
-  array (
11983
+  array(
11984 11984
     'return' => 'int',
11985 11985
     'params' => 'string ver1, string ver2 [, string oper]',
11986 11986
     'description' => 'Compares two "PHP-standardized" version number strings',
11987 11987
   ),
11988 11988
   'exec' => 
11989
-  array (
11989
+  array(
11990 11990
     'return' => 'string',
11991 11991
     'params' => 'string command [, array &output [, int &return_value]]',
11992 11992
     'description' => 'Execute an external program',
11993 11993
   ),
11994 11994
   'system' => 
11995
-  array (
11995
+  array(
11996 11996
     'return' => 'int',
11997 11997
     'params' => 'string command [, int &return_value]',
11998 11998
     'description' => 'Execute an external program and display output',
11999 11999
   ),
12000 12000
   'passthru' => 
12001
-  array (
12001
+  array(
12002 12002
     'return' => 'void',
12003 12003
     'params' => 'string command [, int &return_value]',
12004 12004
     'description' => 'Execute an external program and display raw output',
12005 12005
   ),
12006 12006
   'escapeshellcmd' => 
12007
-  array (
12007
+  array(
12008 12008
     'return' => 'string',
12009 12009
     'params' => 'string command',
12010 12010
     'description' => 'Escape shell metacharacters',
12011 12011
   ),
12012 12012
   'escapeshellarg' => 
12013
-  array (
12013
+  array(
12014 12014
     'return' => 'string',
12015 12015
     'params' => 'string arg',
12016 12016
     'description' => 'Quote and escape an argument for use in a shell command',
12017 12017
   ),
12018 12018
   'shell_exec' => 
12019
-  array (
12019
+  array(
12020 12020
     'return' => 'string',
12021 12021
     'params' => 'string cmd',
12022 12022
     'description' => 'Execute command via shell and return complete output as string',
12023 12023
   ),
12024 12024
   'proc_nice' => 
12025
-  array (
12025
+  array(
12026 12026
     'return' => 'bool',
12027 12027
     'params' => 'int priority',
12028 12028
     'description' => 'Change the priority of the current process',
12029 12029
   ),
12030 12030
   'constant' => 
12031
-  array (
12031
+  array(
12032 12032
     'return' => 'mixed',
12033 12033
     'params' => 'string const_name',
12034 12034
     'description' => 'Given the name of a constant this function will return the constants associated value',
12035 12035
   ),
12036 12036
   'inet_ntop' => 
12037
-  array (
12037
+  array(
12038 12038
     'return' => 'string',
12039 12039
     'params' => 'string in_addr',
12040 12040
     'description' => 'Converts a packed inet address to a human readable IP address string',
12041 12041
   ),
12042 12042
   'inet_pton' => 
12043
-  array (
12043
+  array(
12044 12044
     'return' => 'string',
12045 12045
     'params' => 'string ip_address',
12046 12046
     'description' => 'Converts a human readable IP address to a packed binary string',
12047 12047
   ),
12048 12048
   'ip2long' => 
12049
-  array (
12049
+  array(
12050 12050
     'return' => 'int',
12051 12051
     'params' => 'string ip_address',
12052 12052
     'description' => 'Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address',
12053 12053
   ),
12054 12054
   'long2ip' => 
12055
-  array (
12055
+  array(
12056 12056
     'return' => 'string',
12057 12057
     'params' => 'int proper_address',
12058 12058
     'description' => 'Converts an (IPv4) Internet network address into a string in Internet standard dotted format',
12059 12059
   ),
12060 12060
   'getenv' => 
12061
-  array (
12061
+  array(
12062 12062
     'return' => 'string',
12063 12063
     'params' => 'string varname',
12064 12064
     'description' => 'Get the value of an environment variable',
12065 12065
   ),
12066 12066
   'putenv' => 
12067
-  array (
12067
+  array(
12068 12068
     'return' => 'bool',
12069 12069
     'params' => 'string setting',
12070 12070
     'description' => 'Set the value of an environment variable',
12071 12071
   ),
12072 12072
   'getopt' => 
12073
-  array (
12073
+  array(
12074 12074
     'return' => 'array',
12075 12075
     'params' => 'string options [, array longopts]',
12076 12076
     'description' => 'Get options from the command line argument list',
12077 12077
   ),
12078 12078
   'flush' => 
12079
-  array (
12079
+  array(
12080 12080
     'return' => 'void',
12081 12081
     'params' => 'void',
12082 12082
     'description' => 'Flush the output buffer',
12083 12083
   ),
12084 12084
   'sleep' => 
12085
-  array (
12085
+  array(
12086 12086
     'return' => 'void',
12087 12087
     'params' => 'int seconds',
12088 12088
     'description' => 'Delay for a given number of seconds',
12089 12089
   ),
12090 12090
   'usleep' => 
12091
-  array (
12091
+  array(
12092 12092
     'return' => 'void',
12093 12093
     'params' => 'int micro_seconds',
12094 12094
     'description' => 'Delay for a given number of micro seconds',
12095 12095
   ),
12096 12096
   'time_nanosleep' => 
12097
-  array (
12097
+  array(
12098 12098
     'return' => 'mixed',
12099 12099
     'params' => 'long seconds, long nanoseconds',
12100 12100
     'description' => 'Delay for a number of seconds and nano seconds',
12101 12101
   ),
12102 12102
   'time_sleep_until' => 
12103
-  array (
12103
+  array(
12104 12104
     'return' => 'mixed',
12105 12105
     'params' => 'float timestamp',
12106 12106
     'description' => 'Make the script sleep until the specified time',
12107 12107
   ),
12108 12108
   'get_current_user' => 
12109
-  array (
12109
+  array(
12110 12110
     'return' => 'string',
12111 12111
     'params' => 'void',
12112 12112
     'description' => 'Get the name of the owner of the current PHP script',
12113 12113
   ),
12114 12114
   'get_cfg_var' => 
12115
-  array (
12115
+  array(
12116 12116
     'return' => 'string',
12117 12117
     'params' => 'string option_name',
12118 12118
     'description' => 'Get the value of a PHP configuration option',
12119 12119
   ),
12120 12120
   'set_magic_quotes_runtime' => 
12121
-  array (
12121
+  array(
12122 12122
     'return' => 'bool',
12123 12123
     'params' => 'int new_setting',
12124 12124
     'description' => 'Set the current active configuration setting of magic_quotes_runtime and return previous',
12125 12125
   ),
12126 12126
   'get_magic_quotes_runtime' => 
12127
-  array (
12127
+  array(
12128 12128
     'return' => 'int',
12129 12129
     'params' => 'void',
12130 12130
     'description' => 'Get the current active configuration setting of magic_quotes_runtime',
12131 12131
   ),
12132 12132
   'get_magic_quotes_gpc' => 
12133
-  array (
12133
+  array(
12134 12134
     'return' => 'int',
12135 12135
     'params' => 'void',
12136 12136
     'description' => 'Get the current active configuration setting of magic_quotes_gpc',
12137 12137
   ),
12138 12138
   'error_log' => 
12139
-  array (
12139
+  array(
12140 12140
     'return' => 'bool',
12141 12141
     'params' => 'string message [, int message_type [, string destination [, string extra_headers]]]',
12142 12142
     'description' => 'Send an error message somewhere',
12143 12143
   ),
12144 12144
   'call_user_func' => 
12145
-  array (
12145
+  array(
12146 12146
     'return' => 'mixed',
12147 12147
     'params' => 'string function_name [, mixed parmeter] [, mixed ...]',
12148 12148
     'description' => 'Call a user function which is the first parameter',
12149 12149
   ),
12150 12150
   'call_user_func_array' => 
12151
-  array (
12151
+  array(
12152 12152
     'return' => 'mixed',
12153 12153
     'params' => 'string function_name, array parameters',
12154 12154
     'description' => 'Call a user function which is the first parameter with the arguments contained in array',
12155 12155
   ),
12156 12156
   'call_user_method' => 
12157
-  array (
12157
+  array(
12158 12158
     'return' => 'mixed',
12159 12159
     'params' => 'string method_name, mixed object [, mixed parameter] [, mixed ...]',
12160 12160
     'description' => 'Call a user method on a specific object or class',
12161 12161
   ),
12162 12162
   'call_user_method_array' => 
12163
-  array (
12163
+  array(
12164 12164
     'return' => 'mixed',
12165 12165
     'params' => 'string method_name, mixed object, array params',
12166 12166
     'description' => 'Call a user method on a specific object or class using a parameter array',
12167 12167
   ),
12168 12168
   'register_shutdown_function' => 
12169
-  array (
12169
+  array(
12170 12170
     'return' => 'void',
12171 12171
     'params' => 'string function_name',
12172 12172
     'description' => 'Register a user-level function to be called on request termination',
12173 12173
   ),
12174 12174
   'highlight_file' => 
12175
-  array (
12175
+  array(
12176 12176
     'return' => 'bool',
12177 12177
     'params' => 'string file_name [, bool return] ',
12178 12178
     'description' => 'Syntax highlight a source file',
12179 12179
   ),
12180 12180
   'php_strip_whitespace' => 
12181
-  array (
12181
+  array(
12182 12182
     'return' => 'string',
12183 12183
     'params' => 'string file_name',
12184 12184
     'description' => 'Return source with stripped comments and whitespace',
12185 12185
   ),
12186 12186
   'highlight_string' => 
12187
-  array (
12187
+  array(
12188 12188
     'return' => 'bool',
12189 12189
     'params' => 'string string [, bool return] ',
12190 12190
     'description' => 'Syntax highlight a string or optionally return it',
12191 12191
   ),
12192 12192
   'ini_get' => 
12193
-  array (
12193
+  array(
12194 12194
     'return' => 'string',
12195 12195
     'params' => 'string varname',
12196 12196
     'description' => 'Get a configuration option',
12197 12197
   ),
12198 12198
   'ini_get_all' => 
12199
-  array (
12199
+  array(
12200 12200
     'return' => 'array',
12201 12201
     'params' => '[string extension]',
12202 12202
     'description' => 'Get all configuration options',
12203 12203
   ),
12204 12204
   'ini_set' => 
12205
-  array (
12205
+  array(
12206 12206
     'return' => 'string',
12207 12207
     'params' => 'string varname, string newvalue',
12208 12208
     'description' => 'Set a configuration option, returns false on error and the old value of the configuration option on success',
12209 12209
   ),
12210 12210
   'ini_restore' => 
12211
-  array (
12211
+  array(
12212 12212
     'return' => 'void',
12213 12213
     'params' => 'string varname',
12214 12214
     'description' => 'Restore the value of a configuration option specified by varname',
12215 12215
   ),
12216 12216
   'set_include_path' => 
12217
-  array (
12217
+  array(
12218 12218
     'return' => 'string',
12219 12219
     'params' => 'string new_include_path',
12220 12220
     'description' => 'Sets the include_path configuration option',
12221 12221
   ),
12222 12222
   'get_include_path' => 
12223
-  array (
12223
+  array(
12224 12224
     'return' => 'string',
12225 12225
     'params' => '',
12226 12226
     'description' => 'Get the current include_path configuration option',
12227 12227
   ),
12228 12228
   'restore_include_path' => 
12229
-  array (
12229
+  array(
12230 12230
     'return' => 'void',
12231 12231
     'params' => '',
12232 12232
     'description' => 'Restore the value of the include_path configuration option',
12233 12233
   ),
12234 12234
   'print_r' => 
12235
-  array (
12235
+  array(
12236 12236
     'return' => 'mixed',
12237 12237
     'params' => 'mixed var [, bool return]',
12238 12238
     'description' => 'Prints out or returns information about the specified variable',
12239 12239
   ),
12240 12240
   'connection_aborted' => 
12241
-  array (
12241
+  array(
12242 12242
     'return' => 'int',
12243 12243
     'params' => 'void',
12244 12244
     'description' => 'Returns true if client disconnected',
12245 12245
   ),
12246 12246
   'connection_status' => 
12247
-  array (
12247
+  array(
12248 12248
     'return' => 'int',
12249 12249
     'params' => 'void',
12250 12250
     'description' => 'Returns the connection status bitfield',
12251 12251
   ),
12252 12252
   'ignore_user_abort' => 
12253
-  array (
12253
+  array(
12254 12254
     'return' => 'int',
12255 12255
     'params' => 'bool value',
12256 12256
     'description' => 'Set whether we want to ignore a user abort event or not',
12257 12257
   ),
12258 12258
   'getservbyname' => 
12259
-  array (
12259
+  array(
12260 12260
     'return' => 'int',
12261 12261
     'params' => 'string service, string protocol',
12262 12262
     'description' => 'Returns port associated with service. Protocol must be "tcp" or "udp"',
12263 12263
   ),
12264 12264
   'getservbyport' => 
12265
-  array (
12265
+  array(
12266 12266
     'return' => 'string',
12267 12267
     'params' => 'int port, string protocol',
12268 12268
     'description' => 'Returns service name associated with port. Protocol must be "tcp" or "udp"',
12269 12269
   ),
12270 12270
   'getprotobyname' => 
12271
-  array (
12271
+  array(
12272 12272
     'return' => 'int',
12273 12273
     'params' => 'string name',
12274 12274
     'description' => 'Returns protocol number associated with name as per /etc/protocols',
12275 12275
   ),
12276 12276
   'getprotobynumber' => 
12277
-  array (
12277
+  array(
12278 12278
     'return' => 'string',
12279 12279
     'params' => 'int proto',
12280 12280
     'description' => 'Returns protocol name associated with protocol number proto',
12281 12281
   ),
12282 12282
   'register_tick_function' => 
12283
-  array (
12283
+  array(
12284 12284
     'return' => 'bool',
12285 12285
     'params' => 'string function_name [, mixed arg [, mixed ... ]]',
12286 12286
     'description' => 'Registers a tick callback function',
12287 12287
   ),
12288 12288
   'unregister_tick_function' => 
12289
-  array (
12289
+  array(
12290 12290
     'return' => 'void',
12291 12291
     'params' => 'string function_name',
12292 12292
     'description' => 'Unregisters a tick callback function',
12293 12293
   ),
12294 12294
   'is_uploaded_file' => 
12295
-  array (
12295
+  array(
12296 12296
     'return' => 'bool',
12297 12297
     'params' => 'string path',
12298 12298
     'description' => 'Check if file was created by rfc1867 upload',
12299 12299
   ),
12300 12300
   'move_uploaded_file' => 
12301
-  array (
12301
+  array(
12302 12302
     'return' => 'bool',
12303 12303
     'params' => 'string path, string new_path',
12304 12304
     'description' => 'Move a file if and only if it was created by an upload',
12305 12305
   ),
12306 12306
   'parse_ini_file' => 
12307
-  array (
12307
+  array(
12308 12308
     'return' => 'array',
12309 12309
     'params' => 'string filename [, bool process_sections]',
12310 12310
     'description' => 'Parse configuration file',
12311 12311
   ),
12312 12312
   'import_request_variables' => 
12313
-  array (
12313
+  array(
12314 12314
     'return' => 'bool',
12315 12315
     'params' => 'string types [, string prefix]',
12316 12316
     'description' => 'Import GET/POST/Cookie variables into the global scope',
12317 12317
   ),
12318 12318
   'define_syslog_variables' => 
12319
-  array (
12319
+  array(
12320 12320
     'return' => 'void',
12321 12321
     'params' => 'void',
12322 12322
     'description' => 'Initializes all syslog-related variables',
12323 12323
   ),
12324 12324
   'openlog' => 
12325
-  array (
12325
+  array(
12326 12326
     'return' => 'bool',
12327 12327
     'params' => 'string ident, int option, int facility',
12328 12328
     'description' => 'Open connection to system logger',
12329 12329
   ),
12330 12330
   'closelog' => 
12331
-  array (
12331
+  array(
12332 12332
     'return' => 'bool',
12333 12333
     'params' => 'void',
12334 12334
     'description' => 'Close connection to system logger',
12335 12335
   ),
12336 12336
   'syslog' => 
12337
-  array (
12337
+  array(
12338 12338
     'return' => 'bool',
12339 12339
     'params' => 'int priority, string message',
12340 12340
     'description' => 'Generate a system log message',
12341 12341
   ),
12342 12342
   'phpinfo' => 
12343
-  array (
12343
+  array(
12344 12344
     'return' => 'void',
12345 12345
     'params' => '[int what]',
12346 12346
     'description' => 'Output a page of useful information about PHP and the current request',
12347 12347
   ),
12348 12348
   'phpversion' => 
12349
-  array (
12349
+  array(
12350 12350
     'return' => 'string',
12351 12351
     'params' => '[string extension]',
12352 12352
     'description' => 'Return the current PHP version',
12353 12353
   ),
12354 12354
   'phpcredits' => 
12355
-  array (
12355
+  array(
12356 12356
     'return' => 'void',
12357 12357
     'params' => '[int flag]',
12358 12358
     'description' => 'Prints the list of people who\'ve contributed to the PHP project',
12359 12359
   ),
12360 12360
   'php_logo_guid' => 
12361
-  array (
12361
+  array(
12362 12362
     'return' => 'string',
12363 12363
     'params' => 'void',
12364 12364
     'description' => 'Return the special ID used to request the PHP logo in phpinfo screens',
12365 12365
   ),
12366 12366
   'php_real_logo_guid' => 
12367
-  array (
12367
+  array(
12368 12368
     'return' => 'string',
12369 12369
     'params' => 'void',
12370 12370
     'description' => 'Return the special ID used to request the PHP logo in phpinfo screens',
12371 12371
   ),
12372 12372
   'php_egg_logo_guid' => 
12373
-  array (
12373
+  array(
12374 12374
     'return' => 'string',
12375 12375
     'params' => 'void',
12376 12376
     'description' => 'Return the special ID used to request the PHP logo in phpinfo screens',
12377 12377
   ),
12378 12378
   'zend_logo_guid' => 
12379
-  array (
12379
+  array(
12380 12380
     'return' => 'string',
12381 12381
     'params' => 'void',
12382 12382
     'description' => 'Return the special ID used to request the Zend logo in phpinfo screens',
12383 12383
   ),
12384 12384
   'php_sapi_name' => 
12385
-  array (
12385
+  array(
12386 12386
     'return' => 'string',
12387 12387
     'params' => 'void',
12388 12388
     'description' => 'Return the current SAPI module name',
12389 12389
   ),
12390 12390
   'php_uname' => 
12391
-  array (
12391
+  array(
12392 12392
     'return' => 'string',
12393 12393
     'params' => 'void',
12394 12394
     'description' => 'Return information about the system PHP was built on',
12395 12395
   ),
12396 12396
   'php_ini_scanned_files' => 
12397
-  array (
12397
+  array(
12398 12398
     'return' => 'string',
12399 12399
     'params' => 'void',
12400 12400
     'description' => 'Return comma-separated string of .ini files parsed from the additional ini dir',
12401 12401
   ),
12402 12402
   'levenshtein' => 
12403
-  array (
12403
+  array(
12404 12404
     'return' => 'int',
12405 12405
     'params' => 'string str1, string str2',
12406 12406
     'description' => 'Calculate Levenshtein distance between two strings',
12407 12407
   ),
12408 12408
   'lcg_value' => 
12409
-  array (
12409
+  array(
12410 12410
     'return' => 'float',
12411 12411
     'params' => '',
12412 12412
     'description' => 'Returns a value from the combined linear congruential generator',
12413 12413
   ),
12414 12414
   'http_build_query' => 
12415
-  array (
12415
+  array(
12416 12416
     'return' => 'string',
12417 12417
     'params' => 'mixed formdata [, string prefix [, string arg_separator]]',
12418 12418
     'description' => 'Generates a form-encoded query string from an associative array or object.',
12419 12419
   ),
12420 12420
   'microtime' => 
12421
-  array (
12421
+  array(
12422 12422
     'return' => 'mixed',
12423 12423
     'params' => '[bool get_as_float]',
12424 12424
     'description' => 'Returns either a string or a float containing the current time in seconds and microseconds',
12425 12425
   ),
12426 12426
   'gettimeofday' => 
12427
-  array (
12427
+  array(
12428 12428
     'return' => 'array',
12429 12429
     'params' => '[bool get_as_float]',
12430 12430
     'description' => 'Returns the current time as array',
12431 12431
   ),
12432 12432
   'getrusage' => 
12433
-  array (
12433
+  array(
12434 12434
     'return' => 'array',
12435 12435
     'params' => '[int who]',
12436 12436
     'description' => 'Returns an array of usage statistics',
12437 12437
   ),
12438 12438
   'metaphone' => 
12439
-  array (
12439
+  array(
12440 12440
     'return' => 'string',
12441 12441
     'params' => 'string text, int phones',
12442 12442
     'description' => 'Break english phrases down into their phonemes',
12443 12443
   ),
12444 12444
   'htmlspecialchars' => 
12445
-  array (
12445
+  array(
12446 12446
     'return' => 'string',
12447 12447
     'params' => 'string string [, int quote_style]',
12448 12448
     'description' => 'Convert special HTML entities back to characters',
12449 12449
   ),
12450 12450
   'html_entity_decode' => 
12451
-  array (
12451
+  array(
12452 12452
     'return' => 'string',
12453 12453
     'params' => 'string string [, int quote_style][, string charset]',
12454 12454
     'description' => 'Convert all HTML entities to their applicable characters',
12455 12455
   ),
12456 12456
   'htmlentities' => 
12457
-  array (
12457
+  array(
12458 12458
     'return' => 'string',
12459 12459
     'params' => 'string string [, int quote_style][, string charset]',
12460 12460
     'description' => 'Convert all applicable characters to HTML entities',
12461 12461
   ),
12462 12462
   'get_html_translation_table' => 
12463
-  array (
12463
+  array(
12464 12464
     'return' => 'array',
12465 12465
     'params' => '[int table [, int quote_style]]',
12466 12466
     'description' => 'Returns the internal translation table used by htmlspecialchars and htmlentities',
12467 12467
   ),
12468 12468
   'stream_bucket_make_writeable' => 
12469
-  array (
12469
+  array(
12470 12470
     'return' => 'object',
12471 12471
     'params' => 'resource brigade',
12472 12472
     'description' => 'Return a bucket object from the brigade for operating on',
12473 12473
   ),
12474 12474
   'stream_bucket_prepend' => 
12475
-  array (
12475
+  array(
12476 12476
     'return' => 'void',
12477 12477
     'params' => 'resource brigade, resource bucket',
12478 12478
     'description' => 'Prepend bucket to brigade',
12479 12479
   ),
12480 12480
   'stream_bucket_append' => 
12481
-  array (
12481
+  array(
12482 12482
     'return' => 'void',
12483 12483
     'params' => 'resource brigade, resource bucket',
12484 12484
     'description' => 'Append bucket to brigade',
12485 12485
   ),
12486 12486
   'stream_bucket_new' => 
12487
-  array (
12487
+  array(
12488 12488
     'return' => 'resource',
12489 12489
     'params' => 'resource stream, string buffer',
12490 12490
     'description' => 'Create a new bucket for use on the current stream',
12491 12491
   ),
12492 12492
   'stream_get_filters' => 
12493
-  array (
12493
+  array(
12494 12494
     'return' => 'array',
12495 12495
     'params' => 'void',
12496 12496
     'description' => 'Returns a list of registered filters',
12497 12497
   ),
12498 12498
   'stream_filter_register' => 
12499
-  array (
12499
+  array(
12500 12500
     'return' => 'bool',
12501 12501
     'params' => 'string filtername, string classname',
12502 12502
     'description' => 'Registers a custom filter handler class',
12503 12503
   ),
12504 12504
   'sha1' => 
12505
-  array (
12505
+  array(
12506 12506
     'return' => 'string',
12507 12507
     'params' => 'string str [, bool raw_output]',
12508 12508
     'description' => 'Calculate the sha1 hash of a string',
12509 12509
   ),
12510 12510
   'sha1_file' => 
12511
-  array (
12511
+  array(
12512 12512
     'return' => 'string',
12513 12513
     'params' => 'string filename [, bool raw_output]',
12514 12514
     'description' => 'Calculate the sha1 hash of given filename',
12515 12515
   ),
12516 12516
   'image_type_to_mime_type' => 
12517
-  array (
12517
+  array(
12518 12518
     'return' => 'string',
12519 12519
     'params' => 'int imagetype',
12520 12520
     'description' => 'Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype',
12521 12521
   ),
12522 12522
   'image_type_to_extension' => 
12523
-  array (
12523
+  array(
12524 12524
     'return' => 'string',
12525 12525
     'params' => 'int imagetype [, bool include_dot]',
12526 12526
     'description' => 'Get file extension for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype',
12527 12527
   ),
12528 12528
   'getimagesize' => 
12529
-  array (
12529
+  array(
12530 12530
     'return' => 'array',
12531 12531
     'params' => 'string imagefile [, array info]',
12532 12532
     'description' => 'Get the size of an image as 4-element array',
12533 12533
   ),
12534 12534
   'uniqid' => 
12535
-  array (
12535
+  array(
12536 12536
     'return' => 'string',
12537 12537
     'params' => '[string prefix , bool more_entropy]',
12538 12538
     'description' => 'Generates a unique ID',
12539 12539
   ),
12540 12540
   'parse_url' => 
12541
-  array (
12541
+  array(
12542 12542
     'return' => 'mixed',
12543 12543
     'params' => 'string url, [int url_component]',
12544 12544
     'description' => 'Parse a URL and return its components',
12545 12545
   ),
12546 12546
   'urlencode' => 
12547
-  array (
12547
+  array(
12548 12548
     'return' => 'string',
12549 12549
     'params' => 'string str',
12550 12550
     'description' => 'URL-encodes string',
12551 12551
   ),
12552 12552
   'urldecode' => 
12553
-  array (
12553
+  array(
12554 12554
     'return' => 'string',
12555 12555
     'params' => 'string str',
12556 12556
     'description' => 'Decodes URL-encoded string',
12557 12557
   ),
12558 12558
   'rawurlencode' => 
12559
-  array (
12559
+  array(
12560 12560
     'return' => 'string',
12561 12561
     'params' => 'string str',
12562 12562
     'description' => 'URL-encodes string',
12563 12563
   ),
12564 12564
   'rawurldecode' => 
12565
-  array (
12565
+  array(
12566 12566
     'return' => 'string',
12567 12567
     'params' => 'string str',
12568 12568
     'description' => 'Decodes URL-encodes string',
12569 12569
   ),
12570 12570
   'get_headers' => 
12571
-  array (
12571
+  array(
12572 12572
     'return' => 'array',
12573 12573
     'params' => 'string url',
12574 12574
     'description' => 'fetches all the headers sent by the server in response to a HTTP request',
12575 12575
   ),
12576 12576
   'uuencode' => 
12577
-  array (
12577
+  array(
12578 12578
     'return' => 'string',
12579 12579
     'params' => 'string data',
12580 12580
     'description' => 'uuencode a string',
12581 12581
   ),
12582 12582
   'uudecode' => 
12583
-  array (
12583
+  array(
12584 12584
     'return' => 'string',
12585 12585
     'params' => 'string data',
12586 12586
     'description' => 'decode a uuencoded string',
12587 12587
   ),
12588 12588
   'flock' => 
12589
-  array (
12589
+  array(
12590 12590
     'return' => 'bool',
12591 12591
     'params' => 'resource fp, int operation [, int &wouldblock]',
12592 12592
     'description' => 'Portable file locking',
12593 12593
   ),
12594 12594
   'get_meta_tags' => 
12595
-  array (
12595
+  array(
12596 12596
     'return' => 'array',
12597 12597
     'params' => 'string filename [, bool use_include_path]',
12598 12598
     'description' => 'Extracts all meta tag content attributes from a file and returns an array',
12599 12599
   ),
12600 12600
   'file_get_contents' => 
12601
-  array (
12601
+  array(
12602 12602
     'return' => 'string',
12603 12603
     'params' => 'string filename [, bool use_include_path [, resource context [, long offset [, long maxlen]]]]',
12604 12604
     'description' => 'Read the entire file into a string',
12605 12605
   ),
12606 12606
   'file_put_contents' => 
12607
-  array (
12607
+  array(
12608 12608
     'return' => 'int',
12609 12609
     'params' => 'string file, mixed data [, int flags [, resource context]]',
12610 12610
     'description' => 'Write/Create a file with contents data and return the number of bytes written',
12611 12611
   ),
12612 12612
   'file' => 
12613
-  array (
12613
+  array(
12614 12614
     'return' => 'array',
12615 12615
     'params' => 'string filename [, int flags[, resource context]]',
12616 12616
     'description' => 'Read entire file into an array',
12617 12617
   ),
12618 12618
   'tempnam' => 
12619
-  array (
12619
+  array(
12620 12620
     'return' => 'string',
12621 12621
     'params' => 'string dir, string prefix',
12622 12622
     'description' => 'Create a unique filename in a directory',
12623 12623
   ),
12624 12624
   'tmpfile' => 
12625
-  array (
12625
+  array(
12626 12626
     'return' => 'resource',
12627 12627
     'params' => 'void',
12628 12628
     'description' => 'Create a temporary file that will be deleted automatically after use',
12629 12629
   ),
12630 12630
   'fopen' => 
12631
-  array (
12631
+  array(
12632 12632
     'return' => 'resource',
12633 12633
     'params' => 'string filename, string mode [, bool use_include_path [, resource context]]',
12634 12634
     'description' => 'Open a file or a URL and return a file pointer',
12635 12635
   ),
12636 12636
   'fclose' => 
12637
-  array (
12637
+  array(
12638 12638
     'return' => 'bool',
12639 12639
     'params' => 'resource fp',
12640 12640
     'description' => 'Close an open file pointer',
12641 12641
   ),
12642 12642
   'popen' => 
12643
-  array (
12643
+  array(
12644 12644
     'return' => 'resource',
12645 12645
     'params' => 'string command, string mode',
12646 12646
     'description' => 'Execute a command and open either a read or a write pipe to it',
12647 12647
   ),
12648 12648
   'pclose' => 
12649
-  array (
12649
+  array(
12650 12650
     'return' => 'int',
12651 12651
     'params' => 'resource fp',
12652 12652
     'description' => 'Close a file pointer opened by popen()',
12653 12653
   ),
12654 12654
   'feof' => 
12655
-  array (
12655
+  array(
12656 12656
     'return' => 'bool',
12657 12657
     'params' => 'resource fp',
12658 12658
     'description' => 'Test for end-of-file on a file pointer',
12659 12659
   ),
12660 12660
   'fgets' => 
12661
-  array (
12661
+  array(
12662 12662
     'return' => 'string',
12663 12663
     'params' => 'resource fp[, int length]',
12664 12664
     'description' => 'Get a line from file pointer',
12665 12665
   ),
12666 12666
   'fgetc' => 
12667
-  array (
12667
+  array(
12668 12668
     'return' => 'string',
12669 12669
     'params' => 'resource fp',
12670 12670
     'description' => 'Get a character from file pointer',
12671 12671
   ),
12672 12672
   'fgetss' => 
12673
-  array (
12673
+  array(
12674 12674
     'return' => 'string',
12675 12675
     'params' => 'resource fp [, int length, string allowable_tags]',
12676 12676
     'description' => 'Get a line from file pointer and strip HTML tags',
12677 12677
   ),
12678 12678
   'fscanf' => 
12679
-  array (
12679
+  array(
12680 12680
     'return' => 'mixed',
12681 12681
     'params' => 'resource stream, string format [, string ...]',
12682 12682
     'description' => 'Implements a mostly ANSI compatible fscanf()',
12683 12683
   ),
12684 12684
   'fwrite' => 
12685
-  array (
12685
+  array(
12686 12686
     'return' => 'int',
12687 12687
     'params' => 'resource fp, string str [, int length]',
12688 12688
     'description' => 'Binary-safe file write',
12689 12689
   ),
12690 12690
   'fflush' => 
12691
-  array (
12691
+  array(
12692 12692
     'return' => 'bool',
12693 12693
     'params' => 'resource fp',
12694 12694
     'description' => 'Flushes output',
12695 12695
   ),
12696 12696
   'rewind' => 
12697
-  array (
12697
+  array(
12698 12698
     'return' => 'bool',
12699 12699
     'params' => 'resource fp',
12700 12700
     'description' => 'Rewind the position of a file pointer',
12701 12701
   ),
12702 12702
   'ftell' => 
12703
-  array (
12703
+  array(
12704 12704
     'return' => 'int',
12705 12705
     'params' => 'resource fp',
12706 12706
     'description' => 'Get file pointer\'s read/write position',
12707 12707
   ),
12708 12708
   'fseek' => 
12709
-  array (
12709
+  array(
12710 12710
     'return' => 'int',
12711 12711
     'params' => 'resource fp, int offset [, int whence]',
12712 12712
     'description' => 'Seek on a file pointer',
12713 12713
   ),
12714 12714
   'mkdir' => 
12715
-  array (
12715
+  array(
12716 12716
     'return' => 'bool',
12717 12717
     'params' => 'string pathname [, int mode [, bool recursive [, resource context]]]',
12718 12718
     'description' => 'Create a directory',
12719 12719
   ),
12720 12720
   'rmdir' => 
12721
-  array (
12721
+  array(
12722 12722
     'return' => 'bool',
12723 12723
     'params' => 'string dirname[, resource context]',
12724 12724
     'description' => 'Remove a directory',
12725 12725
   ),
12726 12726
   'readfile' => 
12727
-  array (
12727
+  array(
12728 12728
     'return' => 'int',
12729 12729
     'params' => 'string filename [, bool use_include_path[, resource context]]',
12730 12730
     'description' => 'Output a file or a URL',
12731 12731
   ),
12732 12732
   'umask' => 
12733
-  array (
12733
+  array(
12734 12734
     'return' => 'int',
12735 12735
     'params' => '[int mask]',
12736 12736
     'description' => 'Return or change the umask',
12737 12737
   ),
12738 12738
   'fpassthru' => 
12739
-  array (
12739
+  array(
12740 12740
     'return' => 'int',
12741 12741
     'params' => 'resource fp',
12742 12742
     'description' => 'Output all remaining data from a file pointer',
12743 12743
   ),
12744 12744
   'rename' => 
12745
-  array (
12745
+  array(
12746 12746
     'return' => 'bool',
12747 12747
     'params' => 'string old_name, string new_name[, resource context]',
12748 12748
     'description' => 'Rename a file',
12749 12749
   ),
12750 12750
   'unlink' => 
12751
-  array (
12751
+  array(
12752 12752
     'return' => 'bool',
12753 12753
     'params' => 'string filename[, context context]',
12754 12754
     'description' => 'Delete a file',
12755 12755
   ),
12756 12756
   'ftruncate' => 
12757
-  array (
12757
+  array(
12758 12758
     'return' => 'bool',
12759 12759
     'params' => 'resource fp, int size',
12760 12760
     'description' => 'Truncate file to \'size\' length',
12761 12761
   ),
12762 12762
   'fstat' => 
12763
-  array (
12763
+  array(
12764 12764
     'return' => 'array',
12765 12765
     'params' => 'resource fp',
12766 12766
     'description' => 'Stat() on a filehandle',
12767 12767
   ),
12768 12768
   'copy' => 
12769
-  array (
12769
+  array(
12770 12770
     'return' => 'bool',
12771 12771
     'params' => 'string source_file, string destination_file',
12772 12772
     'description' => 'Copy a file',
12773 12773
   ),
12774 12774
   'fread' => 
12775
-  array (
12775
+  array(
12776 12776
     'return' => 'string',
12777 12777
     'params' => 'resource fp, int length',
12778 12778
     'description' => 'Binary-safe file read',
12779 12779
   ),
12780 12780
   'fputcsv' => 
12781
-  array (
12781
+  array(
12782 12782
     'return' => 'int',
12783 12783
     'params' => 'resource fp, array fields [, string delimiter [, string enclosure]]',
12784 12784
     'description' => 'Format line as CSV and write to file pointer',
12785 12785
   ),
12786 12786
   'fgetcsv' => 
12787
-  array (
12787
+  array(
12788 12788
     'return' => 'array',
12789 12789
     'params' => 'resource fp [,int length [, string delimiter [, string enclosure]]]',
12790 12790
     'description' => 'Get line from file pointer and parse for CSV fields',
12791 12791
   ),
12792 12792
   'realpath' => 
12793
-  array (
12793
+  array(
12794 12794
     'return' => 'string',
12795 12795
     'params' => 'string path',
12796 12796
     'description' => 'Return the resolved path',
12797 12797
   ),
12798 12798
   'fnmatch' => 
12799
-  array (
12799
+  array(
12800 12800
     'return' => 'bool',
12801 12801
     'params' => 'string pattern, string filename [, int flags]',
12802 12802
     'description' => 'Match filename against pattern',
12803 12803
   ),
12804 12804
   'xmlwriter_set_indent' => 
12805
-  array (
12805
+  array(
12806 12806
     'return' => 'bool',
12807 12807
     'params' => 'resource xmlwriter, bool indent',
12808 12808
     'description' => 'Toggle indentation on/off - returns FALSE on error',
12809 12809
   ),
12810 12810
   'xmlwriter_set_indent_string' => 
12811
-  array (
12811
+  array(
12812 12812
     'return' => 'bool',
12813 12813
     'params' => 'resource xmlwriter, string indentString',
12814 12814
     'description' => 'Set string used for indenting - returns FALSE on error',
12815 12815
   ),
12816 12816
   'xmlwriter_start_attribute' => 
12817
-  array (
12817
+  array(
12818 12818
     'return' => 'bool',
12819 12819
     'params' => 'resource xmlwriter, string name',
12820 12820
     'description' => 'Create start attribute - returns FALSE on error',
12821 12821
   ),
12822 12822
   'xmlwriter_end_attribute' => 
12823
-  array (
12823
+  array(
12824 12824
     'return' => 'bool',
12825 12825
     'params' => 'resource xmlwriter',
12826 12826
     'description' => 'End attribute - returns FALSE on error',
12827 12827
   ),
12828 12828
   'xmlwriter_start_attribute_ns' => 
12829
-  array (
12829
+  array(
12830 12830
     'return' => 'bool',
12831 12831
     'params' => 'resource xmlwriter, string prefix, string name, string uri',
12832 12832
     'description' => 'Create start namespaced attribute - returns FALSE on error',
12833 12833
   ),
12834 12834
   'xmlwriter_write_attribute' => 
12835
-  array (
12835
+  array(
12836 12836
     'return' => 'bool',
12837 12837
     'params' => 'resource xmlwriter, string name, string content',
12838 12838
     'description' => 'Write full attribute - returns FALSE on error',
12839 12839
   ),
12840 12840
   'xmlwriter_write_attribute_ns' => 
12841
-  array (
12841
+  array(
12842 12842
     'return' => 'bool',
12843 12843
     'params' => 'resource xmlwriter, string prefix, string name, string uri, string content',
12844 12844
     'description' => 'Write full namespaced attribute - returns FALSE on error',
12845 12845
   ),
12846 12846
   'xmlwriter_start_element' => 
12847
-  array (
12847
+  array(
12848 12848
     'return' => 'bool',
12849 12849
     'params' => 'resource xmlwriter, string name',
12850 12850
     'description' => 'Create start element tag - returns FALSE on error',
12851 12851
   ),
12852 12852
   'xmlwriter_start_element_ns' => 
12853
-  array (
12853
+  array(
12854 12854
     'return' => 'bool',
12855 12855
     'params' => 'resource xmlwriter, string prefix, string name, string uri',
12856 12856
     'description' => 'Create start namespaced element tag - returns FALSE on error',
12857 12857
   ),
12858 12858
   'xmlwriter_end_element' => 
12859
-  array (
12859
+  array(
12860 12860
     'return' => 'bool',
12861 12861
     'params' => 'resource xmlwriter',
12862 12862
     'description' => 'End current element - returns FALSE on error',
12863 12863
   ),
12864 12864
   'xmlwriter_write_element' => 
12865
-  array (
12865
+  array(
12866 12866
     'return' => 'bool',
12867 12867
     'params' => 'resource xmlwriter, string name, string content',
12868 12868
     'description' => 'Write full element tag - returns FALSE on error',
12869 12869
   ),
12870 12870
   'xmlwriter_write_element_ns' => 
12871
-  array (
12871
+  array(
12872 12872
     'return' => 'bool',
12873 12873
     'params' => 'resource xmlwriter, string prefix, string name, string uri, string content',
12874 12874
     'description' => 'Write full namesapced element tag - returns FALSE on error',
12875 12875
   ),
12876 12876
   'xmlwriter_start_pi' => 
12877
-  array (
12877
+  array(
12878 12878
     'return' => 'bool',
12879 12879
     'params' => 'resource xmlwriter, string target',
12880 12880
     'description' => 'Create start PI tag - returns FALSE on error',
12881 12881
   ),
12882 12882
   'xmlwriter_end_pi' => 
12883
-  array (
12883
+  array(
12884 12884
     'return' => 'bool',
12885 12885
     'params' => 'resource xmlwriter',
12886 12886
     'description' => 'End current PI - returns FALSE on error',
12887 12887
   ),
12888 12888
   'xmlwriter_write_pi' => 
12889
-  array (
12889
+  array(
12890 12890
     'return' => 'bool',
12891 12891
     'params' => 'resource xmlwriter, string target, string content',
12892 12892
     'description' => 'Write full PI tag - returns FALSE on error',
12893 12893
   ),
12894 12894
   'xmlwriter_start_cdata' => 
12895
-  array (
12895
+  array(
12896 12896
     'return' => 'bool',
12897 12897
     'params' => 'resource xmlwriter',
12898 12898
     'description' => 'Create start CDATA tag - returns FALSE on error',
12899 12899
   ),
12900 12900
   'xmlwriter_end_cdata' => 
12901
-  array (
12901
+  array(
12902 12902
     'return' => 'bool',
12903 12903
     'params' => 'resource xmlwriter',
12904 12904
     'description' => 'End current CDATA - returns FALSE on error',
12905 12905
   ),
12906 12906
   'xmlwriter_write_cdata' => 
12907
-  array (
12907
+  array(
12908 12908
     'return' => 'bool',
12909 12909
     'params' => 'resource xmlwriter, string content',
12910 12910
     'description' => 'Write full CDATA tag - returns FALSE on error',
12911 12911
   ),
12912 12912
   'xmlwriter_text' => 
12913
-  array (
12913
+  array(
12914 12914
     'return' => 'bool',
12915 12915
     'params' => 'resource xmlwriter, string content',
12916 12916
     'description' => 'Write text - returns FALSE on error',
12917 12917
   ),
12918 12918
   'xmlwriter_start_comment' => 
12919
-  array (
12919
+  array(
12920 12920
     'return' => 'bool',
12921 12921
     'params' => 'resource xmlwriter',
12922 12922
     'description' => 'Create start comment - returns FALSE on error',
12923 12923
   ),
12924 12924
   'xmlwriter_end_comment' => 
12925
-  array (
12925
+  array(
12926 12926
     'return' => 'bool',
12927 12927
     'params' => 'resource xmlwriter',
12928 12928
     'description' => 'Create end comment - returns FALSE on error',
12929 12929
   ),
12930 12930
   'xmlwriter_write_comment' => 
12931
-  array (
12931
+  array(
12932 12932
     'return' => 'bool',
12933 12933
     'params' => 'resource xmlwriter, string content',
12934 12934
     'description' => 'Write full comment tag - returns FALSE on error',
12935 12935
   ),
12936 12936
   'xmlwriter_start_document' => 
12937
-  array (
12937
+  array(
12938 12938
     'return' => 'bool',
12939 12939
     'params' => 'resource xmlwriter, string version, string encoding, string standalone',
12940 12940
     'description' => 'Create document tag - returns FALSE on error',
12941 12941
   ),
12942 12942
   'xmlwriter_end_document' => 
12943
-  array (
12943
+  array(
12944 12944
     'return' => 'bool',
12945 12945
     'params' => 'resource xmlwriter',
12946 12946
     'description' => 'End current document - returns FALSE on error',
12947 12947
   ),
12948 12948
   'xmlwriter_start_dtd' => 
12949
-  array (
12949
+  array(
12950 12950
     'return' => 'bool',
12951 12951
     'params' => 'resource xmlwriter, string name, string pubid, string sysid',
12952 12952
     'description' => 'Create start DTD tag - returns FALSE on error',
12953 12953
   ),
12954 12954
   'xmlwriter_end_dtd' => 
12955
-  array (
12955
+  array(
12956 12956
     'return' => 'bool',
12957 12957
     'params' => 'resource xmlwriter',
12958 12958
     'description' => 'End current DTD - returns FALSE on error',
12959 12959
   ),
12960 12960
   'xmlwriter_write_dtd' => 
12961
-  array (
12961
+  array(
12962 12962
     'return' => 'bool',
12963 12963
     'params' => 'resource xmlwriter, string name, string pubid, string sysid, string subset',
12964 12964
     'description' => 'Write full DTD tag - returns FALSE on error',
12965 12965
   ),
12966 12966
   'xmlwriter_start_dtd_element' => 
12967
-  array (
12967
+  array(
12968 12968
     'return' => 'bool',
12969 12969
     'params' => 'resource xmlwriter, string name',
12970 12970
     'description' => 'Create start DTD element - returns FALSE on error',
12971 12971
   ),
12972 12972
   'xmlwriter_end_dtd_element' => 
12973
-  array (
12973
+  array(
12974 12974
     'return' => 'bool',
12975 12975
     'params' => 'resource xmlwriter',
12976 12976
     'description' => 'End current DTD element - returns FALSE on error',
12977 12977
   ),
12978 12978
   'xmlwriter_write_dtd_element' => 
12979
-  array (
12979
+  array(
12980 12980
     'return' => 'bool',
12981 12981
     'params' => 'resource xmlwriter, string name, string content',
12982 12982
     'description' => 'Write full DTD element tag - returns FALSE on error',
12983 12983
   ),
12984 12984
   'xmlwriter_start_dtd_attlist' => 
12985
-  array (
12985
+  array(
12986 12986
     'return' => 'bool',
12987 12987
     'params' => 'resource xmlwriter, string name',
12988 12988
     'description' => 'Create start DTD AttList - returns FALSE on error',
12989 12989
   ),
12990 12990
   'xmlwriter_end_dtd_attlist' => 
12991
-  array (
12991
+  array(
12992 12992
     'return' => 'bool',
12993 12993
     'params' => 'resource xmlwriter',
12994 12994
     'description' => 'End current DTD AttList - returns FALSE on error',
12995 12995
   ),
12996 12996
   'xmlwriter_write_dtd_attlist' => 
12997
-  array (
12997
+  array(
12998 12998
     'return' => 'bool',
12999 12999
     'params' => 'resource xmlwriter, string name, string content',
13000 13000
     'description' => 'Write full DTD AttList tag - returns FALSE on error',
13001 13001
   ),
13002 13002
   'xmlwriter_start_dtd_entity' => 
13003
-  array (
13003
+  array(
13004 13004
     'return' => 'bool',
13005 13005
     'params' => 'resource xmlwriter, string name, bool isparam',
13006 13006
     'description' => 'Create start DTD Entity - returns FALSE on error',
13007 13007
   ),
13008 13008
   'xmlwriter_end_dtd_entity' => 
13009
-  array (
13009
+  array(
13010 13010
     'return' => 'bool',
13011 13011
     'params' => 'resource xmlwriter',
13012 13012
     'description' => 'End current DTD Entity - returns FALSE on error',
13013 13013
   ),
13014 13014
   'xmlwriter_write_dtd_entity' => 
13015
-  array (
13015
+  array(
13016 13016
     'return' => 'bool',
13017 13017
     'params' => 'resource xmlwriter, string name, string content',
13018 13018
     'description' => 'Write full DTD Entity tag - returns FALSE on error',
13019 13019
   ),
13020 13020
   'xmlwriter_open_uri' => 
13021
-  array (
13021
+  array(
13022 13022
     'return' => 'resource',
13023 13023
     'params' => 'resource xmlwriter, string source',
13024 13024
     'description' => 'Create new xmlwriter using source uri for output',
13025 13025
   ),
13026 13026
   'xmlwriter_open_memory' => 
13027
-  array (
13027
+  array(
13028 13028
     'return' => 'resource',
13029 13029
     'params' => '',
13030 13030
     'description' => 'Create new xmlwriter using memory for string output',
13031 13031
   ),
13032 13032
   'xmlwriter_output_memory' => 
13033
-  array (
13033
+  array(
13034 13034
     'return' => 'string',
13035 13035
     'params' => 'resource xmlwriter [,bool flush]',
13036 13036
     'description' => 'Output current buffer as string',
13037 13037
   ),
13038 13038
   'xmlwriter_flush' => 
13039
-  array (
13039
+  array(
13040 13040
     'return' => 'mixed',
13041 13041
     'params' => 'resource xmlwriter [,bool empty]',
13042 13042
     'description' => 'Output current buffer',
13043 13043
   ),
13044 13044
   'easter_date' => 
13045
-  array (
13045
+  array(
13046 13046
     'return' => 'int',
13047 13047
     'params' => '[int year]',
13048 13048
     'description' => 'Return the timestamp of midnight on Easter of a given year (defaults to current year)',
13049 13049
   ),
13050 13050
   'easter_days' => 
13051
-  array (
13051
+  array(
13052 13052
     'return' => 'int',
13053 13053
     'params' => '[int year, [int method]]',
13054 13054
     'description' => 'Return the number of days after March 21 that Easter falls on for a given year (defaults to current year)',
13055 13055
   ),
13056 13056
   'cal_info' => 
13057
-  array (
13057
+  array(
13058 13058
     'return' => 'array',
13059 13059
     'params' => 'int calendar',
13060 13060
     'description' => 'Returns information about a particular calendar',
13061 13061
   ),
13062 13062
   'cal_days_in_month' => 
13063
-  array (
13063
+  array(
13064 13064
     'return' => 'int',
13065 13065
     'params' => 'int calendar, int month, int year',
13066 13066
     'description' => 'Returns the number of days in a month for a given year and calendar',
13067 13067
   ),
13068 13068
   'cal_to_jd' => 
13069
-  array (
13069
+  array(
13070 13070
     'return' => 'int',
13071 13071
     'params' => 'int calendar, int month, int day, int year',
13072 13072
     'description' => 'Converts from a supported calendar to Julian Day Count',
13073 13073
   ),
13074 13074
   'cal_from_jd' => 
13075
-  array (
13075
+  array(
13076 13076
     'return' => 'array',
13077 13077
     'params' => 'int jd, int calendar',
13078 13078
     'description' => 'Converts from Julian Day Count to a supported calendar and return extended information',
13079 13079
   ),
13080 13080
   'jdtogregorian' => 
13081
-  array (
13081
+  array(
13082 13082
     'return' => 'string',
13083 13083
     'params' => 'int juliandaycount',
13084 13084
     'description' => 'Converts a julian day count to a gregorian calendar date',
13085 13085
   ),
13086 13086
   'gregoriantojd' => 
13087
-  array (
13087
+  array(
13088 13088
     'return' => 'int',
13089 13089
     'params' => 'int month, int day, int year',
13090 13090
     'description' => 'Converts a gregorian calendar date to julian day count',
13091 13091
   ),
13092 13092
   'jdtojulian' => 
13093
-  array (
13093
+  array(
13094 13094
     'return' => 'string',
13095 13095
     'params' => 'int juliandaycount',
13096 13096
     'description' => 'Convert a julian day count to a julian calendar date',
13097 13097
   ),
13098 13098
   'juliantojd' => 
13099
-  array (
13099
+  array(
13100 13100
     'return' => 'int',
13101 13101
     'params' => 'int month, int day, int year',
13102 13102
     'description' => 'Converts a julian calendar date to julian day count',
13103 13103
   ),
13104 13104
   'jdtojewish' => 
13105
-  array (
13105
+  array(
13106 13106
     'return' => 'string',
13107 13107
     'params' => 'int juliandaycount [, bool hebrew [, int fl]]',
13108 13108
     'description' => 'Converts a julian day count to a jewish calendar date',
13109 13109
   ),
13110 13110
   'jewishtojd' => 
13111
-  array (
13111
+  array(
13112 13112
     'return' => 'int',
13113 13113
     'params' => 'int month, int day, int year',
13114 13114
     'description' => 'Converts a jewish calendar date to a julian day count',
13115 13115
   ),
13116 13116
   'jdtofrench' => 
13117
-  array (
13117
+  array(
13118 13118
     'return' => 'string',
13119 13119
     'params' => 'int juliandaycount',
13120 13120
     'description' => 'Converts a julian day count to a french republic calendar date',
13121 13121
   ),
13122 13122
   'frenchtojd' => 
13123
-  array (
13123
+  array(
13124 13124
     'return' => 'int',
13125 13125
     'params' => 'int month, int day, int year',
13126 13126
     'description' => 'Converts a french republic calendar date to julian day count',
13127 13127
   ),
13128 13128
   'jddayofweek' => 
13129
-  array (
13129
+  array(
13130 13130
     'return' => 'mixed',
13131 13131
     'params' => 'int juliandaycount [, int mode]',
13132 13132
     'description' => 'Returns name or number of day of week from julian day count',
13133 13133
   ),
13134 13134
   'jdmonthname' => 
13135
-  array (
13135
+  array(
13136 13136
     'return' => 'string',
13137 13137
     'params' => 'int juliandaycount, int mode',
13138 13138
     'description' => 'Returns name of month for julian day count',
13139 13139
   ),
13140 13140
   'unixtojd' => 
13141
-  array (
13141
+  array(
13142 13142
     'return' => 'int',
13143 13143
     'params' => '[int timestamp]',
13144 13144
     'description' => 'Convert UNIX timestamp to Julian Day',
13145 13145
   ),
13146 13146
   'jdtounix' => 
13147
-  array (
13147
+  array(
13148 13148
     'return' => 'int',
13149 13149
     'params' => 'int jday',
13150 13150
     'description' => 'Convert Julian Day to UNIX timestamp',
13151 13151
   ),
13152 13152
   'mime_content_type' => 
13153
-  array (
13153
+  array(
13154 13154
     'return' => 'string',
13155 13155
     'params' => 'string filename|resource stream',
13156 13156
     'description' => 'Return content-type for file',
13157 13157
   ),
13158 13158
   'exif_tagname' => 
13159
-  array (
13159
+  array(
13160 13160
     'return' => 'string',
13161 13161
     'params' => 'index',
13162 13162
     'description' => 'Get headername for index or false if not defined',
13163 13163
   ),
13164 13164
   'exif_read_data' => 
13165
-  array (
13165
+  array(
13166 13166
     'return' => 'array',
13167 13167
     'params' => 'string filename [, sections_needed [, sub_arrays[, read_thumbnail]]]',
13168 13168
     'description' => 'Reads header data from the JPEG/TIFF image filename and optionally reads the internal thumbnails',
13169 13169
   ),
13170 13170
   'exif_thumbnail' => 
13171
-  array (
13171
+  array(
13172 13172
     'return' => 'string',
13173 13173
     'params' => 'string filename [, &width, &height [, &imagetype]]',
13174 13174
     'description' => 'Reads the embedded thumbnail',
13175 13175
   ),
13176 13176
   'exif_imagetype' => 
13177
-  array (
13177
+  array(
13178 13178
     'return' => 'int',
13179 13179
     'params' => 'string imagefile',
13180 13180
     'description' => 'Get the type of an image',
13181 13181
   ),
13182 13182
   'ming_setscale' => 
13183
-  array (
13183
+  array(
13184 13184
     'return' => 'void',
13185 13185
     'params' => 'int scale',
13186 13186
     'description' => 'Set scale (?)',
13187 13187
   ),
13188 13188
   'ming_useswfversion' => 
13189
-  array (
13189
+  array(
13190 13190
     'return' => 'void',
13191 13191
     'params' => 'int version',
13192 13192
     'description' => 'Use SWF version (?)',
13193 13193
   ),
13194 13194
   'ming_useconstants' => 
13195
-  array (
13195
+  array(
13196 13196
     'return' => 'void',
13197 13197
     'params' => 'int use',
13198 13198
     'description' => 'Use constant pool (?)',
13199 13199
   ),
13200 13200
   'swfaction::__construct' => 
13201
-  array (
13201
+  array(
13202 13202
     'return' => 'void',
13203 13203
     'params' => 'string',
13204 13204
     'description' => 'Creates a new SWFAction object, compiling the given script',
13205 13205
   ),
13206 13206
   'swfbitmap::__construct' => 
13207
-  array (
13207
+  array(
13208 13208
     'return' => 'void',
13209 13209
     'params' => 'mixed file [, mixed maskfile]',
13210 13210
     'description' => 'Creates a new SWFBitmap object from jpg (with optional mask) or dbl file',
13211 13211
   ),
13212 13212
   'swfbitmap::getWidth' => 
13213
-  array (
13213
+  array(
13214 13214
     'return' => 'float',
13215 13215
     'params' => '',
13216 13216
     'description' => 'Returns the width of this bitmap',
13217 13217
   ),
13218 13218
   'swfbitmap::getHeight' => 
13219
-  array (
13219
+  array(
13220 13220
     'return' => 'float',
13221 13221
     'params' => '',
13222 13222
     'description' => 'Returns the height of this bitmap',
13223 13223
   ),
13224 13224
   'swfbutton::__construct' => 
13225
-  array (
13225
+  array(
13226 13226
     'return' => 'void',
13227 13227
     'params' => '',
13228 13228
     'description' => 'Creates a new SWFButton object',
13229 13229
   ),
13230 13230
   'swfbutton::setHit' => 
13231
-  array (
13231
+  array(
13232 13232
     'return' => 'void',
13233 13233
     'params' => 'object SWFCharacter',
13234 13234
     'description' => 'Sets the character for this button\'s hit test state',
13235 13235
   ),
13236 13236
   'swfbutton::setOver' => 
13237
-  array (
13237
+  array(
13238 13238
     'return' => 'void',
13239 13239
     'params' => 'object SWFCharacter',
13240 13240
     'description' => 'Sets the character for this button\'s over state',
13241 13241
   ),
13242 13242
   'swfbutton::setUp' => 
13243
-  array (
13243
+  array(
13244 13244
     'return' => 'void',
13245 13245
     'params' => 'object SWFCharacter',
13246 13246
     'description' => 'Sets the character for this button\'s up state',
13247 13247
   ),
13248 13248
   'swfbutton::setDown' => 
13249
-  array (
13249
+  array(
13250 13250
     'return' => 'void',
13251 13251
     'params' => 'object SWFCharacter',
13252 13252
     'description' => 'Sets the character for this button\'s down state',
13253 13253
   ),
13254 13254
   'swfbutton::addShape' => 
13255
-  array (
13255
+  array(
13256 13256
     'return' => 'void',
13257 13257
     'params' => 'object SWFCharacter, int flags',
13258 13258
     'description' => 'Sets the character to display for the condition described in flags',
13259 13259
   ),
13260 13260
   'swfbutton::setMenu' => 
13261
-  array (
13261
+  array(
13262 13262
     'return' => 'void',
13263 13263
     'params' => 'int flag',
13264 13264
     'description' => 'enable track as menu button behaviour',
13265 13265
   ),
13266 13266
   'swfbutton::setAction' => 
13267
-  array (
13267
+  array(
13268 13268
     'return' => 'void',
13269 13269
     'params' => 'object SWFAction',
13270 13270
     'description' => 'Sets the action to perform when button is pressed',
13271 13271
   ),
13272 13272
   'swfbutton::addASound' => 
13273
-  array (
13273
+  array(
13274 13274
     'return' => 'SWFSoundInstance',
13275 13275
     'params' => 'SWFSound sound, int flags',
13276 13276
     'description' => 'associates a sound with a button transitionNOTE: the transitions are all wrong _UP, _OVER, _DOWN _HIT',
13277 13277
   ),
13278 13278
   'swfbutton::addAction' => 
13279
-  array (
13279
+  array(
13280 13280
     'return' => 'void',
13281 13281
     'params' => 'object SWFAction, int flags',
13282 13282
     'description' => 'Sets the action to perform when conditions described in flags is met',
13283 13283
   ),
13284 13284
   'ming_keypress' => 
13285
-  array (
13285
+  array(
13286 13286
     'return' => 'int',
13287 13287
     'params' => 'string str',
13288 13288
     'description' => 'Returns the action flag for keyPress(char)',
13289 13289
   ),
13290 13290
   'swfdisplayitem::moveTo' => 
13291
-  array (
13291
+  array(
13292 13292
     'return' => 'void',
13293 13293
     'params' => 'int x, int y',
13294 13294
     'description' => 'Moves this SWFDisplayItem to movie coordinates (x, y)',
13295 13295
   ),
13296 13296
   'swfdisplayitem::move' => 
13297
-  array (
13297
+  array(
13298 13298
     'return' => 'void',
13299 13299
     'params' => 'float dx, float dy',
13300 13300
     'description' => 'Displaces this SWFDisplayItem by (dx, dy) in movie coordinates',
13301 13301
   ),
13302 13302
   'swfdisplayitem::scaleTo' => 
13303
-  array (
13303
+  array(
13304 13304
     'return' => 'void',
13305 13305
     'params' => 'float xScale [, float yScale]',
13306 13306
     'description' => 'Scales this SWFDisplayItem by xScale in the x direction, yScale in the y, or both to xScale if only one arg',
13307 13307
   ),
13308 13308
   'swfdisplayitem::scale' => 
13309
-  array (
13309
+  array(
13310 13310
     'return' => 'void',
13311 13311
     'params' => 'float xScale, float yScale',
13312 13312
     'description' => 'Multiplies this SWFDisplayItem\'s current x scale by xScale, its y scale by yScale',
13313 13313
   ),
13314 13314
   'swfdisplayitem::rotateTo' => 
13315
-  array (
13315
+  array(
13316 13316
     'return' => 'void',
13317 13317
     'params' => 'float degrees',
13318 13318
     'description' => 'Rotates this SWFDisplayItem the given (clockwise) degrees from its original orientation',
13319 13319
   ),
13320 13320
   'swfdisplayitem::rotate' => 
13321
-  array (
13321
+  array(
13322 13322
     'return' => 'void',
13323 13323
     'params' => 'float degrees',
13324 13324
     'description' => 'Rotates this SWFDisplayItem the given (clockwise) degrees from its current orientation',
13325 13325
   ),
13326 13326
   'swfdisplayitem::skewXTo' => 
13327
-  array (
13327
+  array(
13328 13328
     'return' => 'void',
13329 13329
     'params' => 'float xSkew',
13330 13330
     'description' => 'Sets this SWFDisplayItem\'s x skew value to xSkew',
13331 13331
   ),
13332 13332
   'swfdisplayitem::skewX' => 
13333
-  array (
13333
+  array(
13334 13334
     'return' => 'void',
13335 13335
     'params' => 'float xSkew',
13336 13336
     'description' => 'Adds xSkew to this SWFDisplayItem\'s x skew value',
13337 13337
   ),
13338 13338
   'swfdisplayitem::skewYTo' => 
13339
-  array (
13339
+  array(
13340 13340
     'return' => 'void',
13341 13341
     'params' => 'float ySkew',
13342 13342
     'description' => 'Sets this SWFDisplayItem\'s y skew value to ySkew',
13343 13343
   ),
13344 13344
   'swfdisplayitem::skewY' => 
13345
-  array (
13345
+  array(
13346 13346
     'return' => 'void',
13347 13347
     'params' => 'float ySkew',
13348 13348
     'description' => 'Adds ySkew to this SWFDisplayItem\'s y skew value',
13349 13349
   ),
13350 13350
   'swfdisplayitem::setMatrix' => 
13351
-  array (
13351
+  array(
13352 13352
     'return' => 'void',
13353 13353
     'params' => 'float a, float b, float c, float d, float x, float y',
13354 13354
     'description' => 'Sets the item\'s transform matrix',
13355 13355
   ),
13356 13356
   'swfdisplayitem::setDepth' => 
13357
-  array (
13357
+  array(
13358 13358
     'return' => 'void',
13359 13359
     'params' => 'int depth',
13360 13360
     'description' => 'Sets this SWFDisplayItem\'s z-depth to depth.  Items with higher depth values are drawn on top of those with lower values',
13361 13361
   ),
13362 13362
   'swfdisplayitem::setRatio' => 
13363
-  array (
13363
+  array(
13364 13364
     'return' => 'void',
13365 13365
     'params' => 'float ratio',
13366 13366
     'description' => 'Sets this SWFDisplayItem\'s ratio to ratio.  Obviously only does anything if displayitem was created from an SWFMorph',
13367 13367
   ),
13368 13368
   'swfdisplayitem::addColor' => 
13369
-  array (
13369
+  array(
13370 13370
     'return' => 'void',
13371 13371
     'params' => 'int r, int g, int b [, int a]',
13372 13372
     'description' => 'Sets the add color part of this SWFDisplayItem\'s CXform to (r, g, b [, a]), a defaults to 0',
13373 13373
   ),
13374 13374
   'swfdisplayitem::multColor' => 
13375
-  array (
13375
+  array(
13376 13376
     'return' => 'void',
13377 13377
     'params' => 'float r, float g, float b [, float a]',
13378 13378
     'description' => 'Sets the multiply color part of this SWFDisplayItem\'s CXform to (r, g, b [, a]), a defaults to 1.0',
13379 13379
   ),
13380 13380
   'swfdisplayitem::setName' => 
13381
-  array (
13381
+  array(
13382 13382
     'return' => 'void',
13383 13383
     'params' => 'string name',
13384 13384
     'description' => 'Sets this SWFDisplayItem\'s name to name',
13385 13385
   ),
13386 13386
   'swfdisplayitem::addAction' => 
13387
-  array (
13387
+  array(
13388 13388
     'return' => 'void',
13389 13389
     'params' => 'object SWFAction, int flags',
13390 13390
     'description' => 'Adds this SWFAction to the given SWFSprite instance',
13391 13391
   ),
13392 13392
   'swfdisplayitem::setMaskLevel' => 
13393
-  array (
13393
+  array(
13394 13394
     'return' => 'void',
13395 13395
     'params' => 'int level',
13396 13396
     'description' => 'defines a MASK layer at level',
13397 13397
   ),
13398 13398
   'swfdisplayitem::endMask' => 
13399
-  array (
13399
+  array(
13400 13400
     'return' => 'void',
13401 13401
     'params' => '',
13402 13402
     'description' => 'another way of defining a MASK layer',
13403 13403
   ),
13404 13404
   'swffill::__construct' => 
13405
-  array (
13405
+  array(
13406 13406
     'return' => 'void',
13407 13407
     'params' => '',
13408 13408
     'description' => 'Creates a new SWFFill object',
13409 13409
   ),
13410 13410
   'swffill::moveTo' => 
13411
-  array (
13411
+  array(
13412 13412
     'return' => 'void',
13413 13413
     'params' => 'float x, float y',
13414 13414
     'description' => 'Moves this SWFFill to shape coordinates (x,y)',
13415 13415
   ),
13416 13416
   'swffill::scaleTo' => 
13417
-  array (
13417
+  array(
13418 13418
     'return' => 'void',
13419 13419
     'params' => 'float xScale [, float yScale]',
13420 13420
     'description' => 'Scales this SWFFill by xScale in the x direction, yScale in the y, or both to xScale if only one arg',
13421 13421
   ),
13422 13422
   'swffill::rotateTo' => 
13423
-  array (
13423
+  array(
13424 13424
     'return' => 'void',
13425 13425
     'params' => 'float degrees',
13426 13426
     'description' => 'Rotates this SWFFill the given (clockwise) degrees from its original orientation',
13427 13427
   ),
13428 13428
   'swffill::skewXTo' => 
13429
-  array (
13429
+  array(
13430 13430
     'return' => 'void',
13431 13431
     'params' => 'float xSkew',
13432 13432
     'description' => 'Sets this SWFFill\'s x skew value to xSkew',
13433 13433
   ),
13434 13434
   'swffill::skewYTo' => 
13435
-  array (
13435
+  array(
13436 13436
     'return' => 'void',
13437 13437
     'params' => 'float ySkew',
13438 13438
     'description' => 'Sets this SWFFill\'s y skew value to ySkew',
13439 13439
   ),
13440 13440
   'swffontcha::raddChars' => 
13441
-  array (
13441
+  array(
13442 13442
     'return' => 'void',
13443 13443
     'params' => 'string',
13444 13444
     'description' => 'adds characters to a font for exporting font',
13445 13445
   ),
13446 13446
   'swffontchar::addChars' => 
13447
-  array (
13447
+  array(
13448 13448
     'return' => 'void',
13449 13449
     'params' => 'string',
13450 13450
     'description' => 'adds characters to a font for exporting font',
13451 13451
   ),
13452 13452
   'swffont::__construct' => 
13453
-  array (
13453
+  array(
13454 13454
     'return' => 'void',
13455 13455
     'params' => 'string filename',
13456 13456
     'description' => 'Creates a new SWFFont object from given file',
13457 13457
   ),
13458 13458
   'swffont::getWidth' => 
13459
-  array (
13459
+  array(
13460 13460
     'return' => 'float',
13461 13461
     'params' => 'string str',
13462 13462
     'description' => 'Calculates the width of the given string in this font at full height',
13463 13463
   ),
13464 13464
   'swffont::getUTF8Width' => 
13465
-  array (
13465
+  array(
13466 13466
     'return' => 'int',
13467 13467
     'params' => 'string',
13468 13468
     'description' => 'Calculates the width of the given string in this font at full height',
13469 13469
   ),
13470 13470
   'swffont::getWideWidth' => 
13471
-  array (
13471
+  array(
13472 13472
     'return' => 'int',
13473 13473
     'params' => 'string',
13474 13474
     'description' => 'Calculates the width of the given string in this font at full height',
13475 13475
   ),
13476 13476
   'swffont::getAscent' => 
13477
-  array (
13477
+  array(
13478 13478
     'return' => 'float',
13479 13479
     'params' => '',
13480 13480
     'description' => 'Returns the ascent of the font, or 0 if not available',
13481 13481
   ),
13482 13482
   'swffont::getDescent' => 
13483
-  array (
13483
+  array(
13484 13484
     'return' => 'float',
13485 13485
     'params' => '',
13486 13486
     'description' => 'Returns the descent of the font, or 0 if not available',
13487 13487
   ),
13488 13488
   'swffont::getLeading' => 
13489
-  array (
13489
+  array(
13490 13490
     'return' => 'float',
13491 13491
     'params' => '',
13492 13492
     'description' => 'Returns the leading of the font, or 0 if not available',
13493 13493
   ),
13494 13494
   'swffont::addChars' => 
13495
-  array (
13495
+  array(
13496 13496
     'return' => 'void',
13497 13497
     'params' => 'string',
13498 13498
     'description' => 'adds characters to a font required within textfields',
13499 13499
   ),
13500 13500
   'swffont::getShape' => 
13501
-  array (
13501
+  array(
13502 13502
     'return' => 'string',
13503 13503
     'params' => 'code',
13504 13504
     'description' => 'Returns the glyph shape of a char as a text string',
13505 13505
   ),
13506 13506
   'swfgradient::__construct' => 
13507
-  array (
13507
+  array(
13508 13508
     'return' => 'void',
13509 13509
     'params' => '',
13510 13510
     'description' => 'Creates a new SWFGradient object',
13511 13511
   ),
13512 13512
   'swfgradient::addEntry' => 
13513
-  array (
13513
+  array(
13514 13514
     'return' => 'void',
13515 13515
     'params' => 'float ratio, int r, int g, int b [, int a]',
13516 13516
     'description' => 'Adds given entry to the gradient',
13517 13517
   ),
13518 13518
   'swfmorph::__construct' => 
13519
-  array (
13519
+  array(
13520 13520
     'return' => 'void',
13521 13521
     'params' => '',
13522 13522
     'description' => 'Creates a new SWFMorph object',
13523 13523
   ),
13524 13524
   'swfmorph::getShape1' => 
13525
-  array (
13525
+  array(
13526 13526
     'return' => 'object',
13527 13527
     'params' => '',
13528 13528
     'description' => 'Return\'s this SWFMorph\'s start shape object',
13529 13529
   ),
13530 13530
   'swfmorph::getShape2' => 
13531
-  array (
13531
+  array(
13532 13532
     'return' => 'object',
13533 13533
     'params' => '',
13534 13534
     'description' => 'Return\'s this SWFMorph\'s start shape object',
13535 13535
   ),
13536 13536
   'swfsound::__construct' => 
13537
-  array (
13537
+  array(
13538 13538
     'return' => 'void',
13539 13539
     'params' => 'string filename, int flags',
13540 13540
     'description' => 'Creates a new SWFSound object from given file',
13541 13541
   ),
13542 13542
   'swfvideostream_init' => 
13543
-  array (
13543
+  array(
13544 13544
     'return' => 'class',
13545 13545
     'params' => '[file]',
13546 13546
     'description' => 'Returns a SWVideoStream object',
13547 13547
   ),
13548 13548
   'swfprebuiltclip_init' => 
13549
-  array (
13549
+  array(
13550 13550
     'return' => 'class',
13551 13551
     'params' => '[file]',
13552 13552
     'description' => 'Returns a SWFPrebuiltClip object',
13553 13553
   ),
13554 13554
   'swfmovie::__construct' => 
13555
-  array (
13555
+  array(
13556 13556
     'return' => 'void',
13557 13557
     'params' => 'int version',
13558 13558
     'description' => 'Creates swfmovie object according to the passed version',
13559 13559
   ),
13560 13560
   'swfmovie::nextframe' => 
13561
-  array (
13561
+  array(
13562 13562
     'return' => 'void',
13563 13563
     'params' => '',
13564 13564
     'description' => '',
13565 13565
   ),
13566 13566
   'swfmovie::labelframe' => 
13567
-  array (
13567
+  array(
13568 13568
     'return' => 'void',
13569 13569
     'params' => 'object SWFBlock',
13570 13570
     'description' => '',
13571 13571
   ),
13572 13572
   'swfmovie::add' => 
13573
-  array (
13573
+  array(
13574 13574
     'return' => 'object',
13575 13575
     'params' => 'object SWFBlock',
13576 13576
     'description' => '',
13577 13577
   ),
13578 13578
   'swfmovie::output' => 
13579
-  array (
13579
+  array(
13580 13580
     'return' => 'int',
13581 13581
     'params' => '[int compression]',
13582 13582
     'description' => '',
13583 13583
   ),
13584 13584
   'swfmovie::saveToFile' => 
13585
-  array (
13585
+  array(
13586 13586
     'return' => 'int',
13587 13587
     'params' => 'stream x [, int compression]',
13588 13588
     'description' => '',
13589 13589
   ),
13590 13590
   'swfmovie::save' => 
13591
-  array (
13591
+  array(
13592 13592
     'return' => 'int',
13593 13593
     'params' => 'mixed where [, int compression]',
13594 13594
     'description' => 'Saves the movie. \'where\' can be stream and the movie will be saved there otherwise it is treated as string and written in file with that name',
13595 13595
   ),
13596 13596
   'swfmovie::setBackground' => 
13597
-  array (
13597
+  array(
13598 13598
     'return' => 'void',
13599 13599
     'params' => 'int r, int g, int b',
13600 13600
     'description' => 'Sets background color (r,g,b)',
13601 13601
   ),
13602 13602
   'swfmovie::setRate' => 
13603
-  array (
13603
+  array(
13604 13604
     'return' => 'void',
13605 13605
     'params' => 'float rate',
13606 13606
     'description' => 'Sets movie rate',
13607 13607
   ),
13608 13608
   'swfmovie::setDimension' => 
13609
-  array (
13609
+  array(
13610 13610
     'return' => 'void',
13611 13611
     'params' => 'float x, float y',
13612 13612
     'description' => 'Sets movie dimension',
13613 13613
   ),
13614 13614
   'swfmovie::setFrames' => 
13615
-  array (
13615
+  array(
13616 13616
     'return' => 'void',
13617 13617
     'params' => 'int frames',
13618 13618
     'description' => 'Sets number of frames',
13619 13619
   ),
13620 13620
   'swfmovie::streamMP3' => 
13621
-  array (
13621
+  array(
13622 13622
     'return' => 'void',
13623 13623
     'params' => 'mixed file',
13624 13624
     'description' => 'Sets sound stream of the SWF movie. The parameter can be stream or string.',
13625 13625
   ),
13626 13626
   'swfshape::__construct' => 
13627
-  array (
13627
+  array(
13628 13628
     'return' => 'void',
13629 13629
     'params' => '',
13630 13630
     'description' => 'Creates a new SWFShape object',
13631 13631
   ),
13632 13632
   'swfshape::setline' => 
13633
-  array (
13633
+  array(
13634 13634
     'return' => 'void',
13635 13635
     'params' => 'int width, int r, int g, int b [, int a]',
13636 13636
     'description' => 'Sets the current line style for this SWFShape',
13637 13637
   ),
13638 13638
   'swfshape::addfill' => 
13639
-  array (
13639
+  array(
13640 13640
     'return' => 'object',
13641 13641
     'params' => 'mixed arg1, int arg2, [int b [, int a]]',
13642 13642
     'description' => 'Returns a fill object, for use with swfshape_setleftfill and swfshape_setrightfill. If 1 or 2 parameter(s) is (are) passed first should be object (from gradient class) and the second int (flags). Gradient fill is performed. If 3 or 4 parameters are passed : r, g, b [, a]. Solid fill is performed.',
13643 13643
   ),
13644 13644
   'swfshape::setleftfill' => 
13645
-  array (
13645
+  array(
13646 13646
     'return' => 'void',
13647 13647
     'params' => 'int arg1 [, int g ,int b [,int a]]',
13648 13648
     'description' => 'Sets the right side fill style to fill in case only one parameter is passed. When 3 or 4 parameters are passed they are treated as : int r, int g, int b, int a . Solid fill is performed in this case before setting right side fill type.',
13649 13649
   ),
13650 13650
   'swfshape::movepento' => 
13651
-  array (
13651
+  array(
13652 13652
     'return' => 'void',
13653 13653
     'params' => 'float x, float y',
13654 13654
     'description' => 'Moves the pen to shape coordinates (x, y)',
13655 13655
   ),
13656 13656
   'swfshape::movepen' => 
13657
-  array (
13657
+  array(
13658 13658
     'return' => 'void',
13659 13659
     'params' => 'float x, float y',
13660 13660
     'description' => 'Moves the pen from its current location by vector (x, y)',
13661 13661
   ),
13662 13662
   'swfshape::drawlineto' => 
13663
-  array (
13663
+  array(
13664 13664
     'return' => 'void',
13665 13665
     'params' => 'float x, float y',
13666 13666
     'description' => 'Draws a line from the current pen position to shape coordinates (x, y) in the current line style',
13667 13667
   ),
13668 13668
   'swfshape::drawline' => 
13669
-  array (
13669
+  array(
13670 13670
     'return' => 'void',
13671 13671
     'params' => 'float dx, float dy',
13672 13672
     'description' => 'Draws a line from the current pen position (x, y) to the point (x+dx, y+dy) in the current line style',
13673 13673
   ),
13674 13674
   'swfshape::drawcurveto' => 
13675
-  array (
13675
+  array(
13676 13676
     'return' => 'void',
13677 13677
     'params' => 'float ax, float ay, float bx, float by [, float dx, float dy]',
13678 13678
     'description' => 'Draws a curve from the current pen position (x,y) to the point (bx, by) in the current line style, using point (ax, ay) as a control point. Or draws a cubic bezier to point (dx, dy) with control points (ax, ay) and (bx, by)',
13679 13679
   ),
13680 13680
   'swfshape::drawcurve' => 
13681
-  array (
13681
+  array(
13682 13682
     'return' => 'void',
13683 13683
     'params' => 'float adx, float ady, float bdx, float bdy [, float cdx, float cdy]',
13684 13684
     'description' => 'Draws a curve from the current pen position (x, y) to the point (x+bdx, y+bdy) in the current line style, using point (x+adx, y+ady) as a control point or draws a cubic bezier to point (x+cdx, x+cdy) with control points (x+adx, y+ady) and (x+bdx, y+bdy)',
13685 13685
   ),
13686 13686
   'swfshape::drawglyph' => 
13687
-  array (
13687
+  array(
13688 13688
     'return' => 'void',
13689 13689
     'params' => 'SWFFont font, string character [, int size]',
13690 13690
     'description' => 'Draws the first character in the given string into the shape using the glyph definition from the given font',
13691 13691
   ),
13692 13692
   'swfshape::drawcircle' => 
13693
-  array (
13693
+  array(
13694 13694
     'return' => 'void',
13695 13695
     'params' => 'float r',
13696 13696
     'description' => 'Draws a circle of radius r centered at the current location, in a counter-clockwise fashion',
13697 13697
   ),
13698 13698
   'swfshape::drawarc' => 
13699
-  array (
13699
+  array(
13700 13700
     'return' => 'void',
13701 13701
     'params' => 'float r, float startAngle, float endAngle',
13702 13702
     'description' => 'Draws an arc of radius r centered at the current location, from angle startAngle to angle endAngle measured clockwise from 12 o\'clock',
13703 13703
   ),
13704 13704
   'swfshape::drawcubic' => 
13705
-  array (
13705
+  array(
13706 13706
     'return' => 'void',
13707 13707
     'params' => 'float bx, float by, float cx, float cy, float dx, float dy',
13708 13708
     'description' => 'Draws a cubic bezier curve using the current position and the three given points as control points',
13709 13709
   ),
13710 13710
   'swfsprite::__construct' => 
13711
-  array (
13711
+  array(
13712 13712
     'return' => 'void',
13713 13713
     'params' => '',
13714 13714
     'description' => 'Creates a new SWFSprite object',
13715 13715
   ),
13716 13716
   'swfsprite::add' => 
13717
-  array (
13717
+  array(
13718 13718
     'return' => 'object',
13719 13719
     'params' => 'object SWFCharacter',
13720 13720
     'description' => 'Adds the character to the sprite, returns a displayitem object',
13721 13721
   ),
13722 13722
   'swfsprite::remove' => 
13723
-  array (
13723
+  array(
13724 13724
     'return' => 'void',
13725 13725
     'params' => 'object SWFDisplayItem',
13726 13726
     'description' => 'Remove the named character from the sprite\'s display list',
13727 13727
   ),
13728 13728
   'swfsprite::nextFrame' => 
13729
-  array (
13729
+  array(
13730 13730
     'return' => 'void',
13731 13731
     'params' => '',
13732 13732
     'description' => 'Moves the sprite to the next frame',
13733 13733
   ),
13734 13734
   'swfsprite::labelFrame' => 
13735
-  array (
13735
+  array(
13736 13736
     'return' => 'void',
13737 13737
     'params' => 'string label',
13738 13738
     'description' => 'Labels frame',
13739 13739
   ),
13740 13740
   'swfsprite::setFrames' => 
13741
-  array (
13741
+  array(
13742 13742
     'return' => 'void',
13743 13743
     'params' => 'int frames',
13744 13744
     'description' => 'Sets the number of frames in this SWFSprite',
13745 13745
   ),
13746 13746
   'swftext::__construct' => 
13747
-  array (
13747
+  array(
13748 13748
     'return' => 'void',
13749 13749
     'params' => '',
13750 13750
     'description' => 'Creates new SWFText object',
13751 13751
   ),
13752 13752
   'swftext::setFont' => 
13753
-  array (
13753
+  array(
13754 13754
     'return' => 'void',
13755 13755
     'params' => 'object font',
13756 13756
     'description' => 'Sets this SWFText object\'s current font to given font',
13757 13757
   ),
13758 13758
   'swftext::setHeight' => 
13759
-  array (
13759
+  array(
13760 13760
     'return' => 'void',
13761 13761
     'params' => 'float height',
13762 13762
     'description' => 'Sets this SWFText object\'s current height to given height',
13763 13763
   ),
13764 13764
   'swftext::setSpacing' => 
13765
-  array (
13765
+  array(
13766 13766
     'return' => 'void',
13767 13767
     'params' => 'float spacing',
13768 13768
     'description' => 'Sets this SWFText object\'s current letterspacing to given spacing',
13769 13769
   ),
13770 13770
   'swftext::setColor' => 
13771
-  array (
13771
+  array(
13772 13772
     'return' => 'void',
13773 13773
     'params' => 'int r, int g, int b [, int a]',
13774 13774
     'description' => 'Sets this SWFText object\'s current color to the given color',
13775 13775
   ),
13776 13776
   'swftext::moveTo' => 
13777
-  array (
13777
+  array(
13778 13778
     'return' => 'void',
13779 13779
     'params' => 'float x, float y',
13780 13780
     'description' => 'Moves this SWFText object\'s current pen position to (x, y) in text coordinates',
13781 13781
   ),
13782 13782
   'swftext::addString' => 
13783
-  array (
13783
+  array(
13784 13784
     'return' => 'void',
13785 13785
     'params' => 'string text',
13786 13786
     'description' => 'Writes the given text into this SWFText object at the current pen position, using the current font, height, spacing, and color',
13787 13787
   ),
13788 13788
   'swftext::addUTF8String' => 
13789
-  array (
13789
+  array(
13790 13790
     'return' => 'void',
13791 13791
     'params' => 'string text',
13792 13792
     'description' => 'Writes the given text into this SWFText object at the current pen position,using the current font, height, spacing, and color',
13793 13793
   ),
13794 13794
   'swftext::addWideString' => 
13795
-  array (
13795
+  array(
13796 13796
     'return' => 'void',
13797 13797
     'params' => 'string text',
13798 13798
     'description' => 'Writes the given text into this SWFText object at the current pen position,using the current font, height, spacing, and color',
13799 13799
   ),
13800 13800
   'swftext::getWidth' => 
13801
-  array (
13801
+  array(
13802 13802
     'return' => 'float',
13803 13803
     'params' => 'string str',
13804 13804
     'description' => 'Calculates the width of the given string in this text objects current font and size',
13805 13805
   ),
13806 13806
   'swftext::getUTF8Width' => 
13807
-  array (
13807
+  array(
13808 13808
     'return' => 'double',
13809 13809
     'params' => 'string',
13810 13810
     'description' => 'calculates the width of the given string in this text objects current font and size',
13811 13811
   ),
13812 13812
   'swftext::getWideWidth' => 
13813
-  array (
13813
+  array(
13814 13814
     'return' => 'double',
13815 13815
     'params' => 'string',
13816 13816
     'description' => 'calculates the width of the given string in this text objects current font and size',
13817 13817
   ),
13818 13818
   'swftext::getAscent' => 
13819
-  array (
13819
+  array(
13820 13820
     'return' => 'float',
13821 13821
     'params' => '',
13822 13822
     'description' => 'Returns the ascent of the current font at its current size, or 0 if not available',
13823 13823
   ),
13824 13824
   'swftext::getDescent' => 
13825
-  array (
13825
+  array(
13826 13826
     'return' => 'float',
13827 13827
     'params' => '',
13828 13828
     'description' => 'Returns the descent of the current font at its current size, or 0 if not available',
13829 13829
   ),
13830 13830
   'swftext::getLeading' => 
13831
-  array (
13831
+  array(
13832 13832
     'return' => 'float',
13833 13833
     'params' => '',
13834 13834
     'description' => 'Returns the leading of the current font at its current size, or 0 if not available',
13835 13835
   ),
13836 13836
   'swftextfield::__construct' => 
13837
-  array (
13837
+  array(
13838 13838
     'return' => 'void',
13839 13839
     'params' => '[int flags]',
13840 13840
     'description' => 'Creates a new SWFTextField object',
13841 13841
   ),
13842 13842
   'swftextfield::setFont' => 
13843
-  array (
13843
+  array(
13844 13844
     'return' => 'void',
13845 13845
     'params' => 'object font',
13846 13846
     'description' => 'Sets the font for this textfield',
13847 13847
   ),
13848 13848
   'swftextfield::setBounds' => 
13849
-  array (
13849
+  array(
13850 13850
     'return' => 'void',
13851 13851
     'params' => 'float width, float height',
13852 13852
     'description' => 'Sets the width and height of this textfield',
13853 13853
   ),
13854 13854
   'swftextfield::align' => 
13855
-  array (
13855
+  array(
13856 13856
     'return' => 'void',
13857 13857
     'params' => 'int alignment',
13858 13858
     'description' => 'Sets the alignment of this textfield',
13859 13859
   ),
13860 13860
   'swftextfield::setHeight' => 
13861
-  array (
13861
+  array(
13862 13862
     'return' => 'void',
13863 13863
     'params' => 'float height',
13864 13864
     'description' => 'Sets the font height of this textfield',
13865 13865
   ),
13866 13866
   'swftextfield::setLeftMargin' => 
13867
-  array (
13867
+  array(
13868 13868
     'return' => 'void',
13869 13869
     'params' => 'float margin',
13870 13870
     'description' => 'Sets the left margin of this textfield',
13871 13871
   ),
13872 13872
   'swftextfield::setRightMargin' => 
13873
-  array (
13873
+  array(
13874 13874
     'return' => 'void',
13875 13875
     'params' => 'float margin',
13876 13876
     'description' => 'Sets the right margin of this textfield',
13877 13877
   ),
13878 13878
   'swftextfield::setMargins' => 
13879
-  array (
13879
+  array(
13880 13880
     'return' => 'void',
13881 13881
     'params' => 'float left, float right',
13882 13882
     'description' => 'Sets both margins of this textfield',
13883 13883
   ),
13884 13884
   'swftextfield::setIndentation' => 
13885
-  array (
13885
+  array(
13886 13886
     'return' => 'void',
13887 13887
     'params' => 'float indentation',
13888 13888
     'description' => 'Sets the indentation of the first line of this textfield',
13889 13889
   ),
13890 13890
   'swftextfield::setLineSpacing' => 
13891
-  array (
13891
+  array(
13892 13892
     'return' => 'void',
13893 13893
     'params' => 'float space',
13894 13894
     'description' => 'Sets the line spacing of this textfield',
13895 13895
   ),
13896 13896
   'swftextfield::setColor' => 
13897
-  array (
13897
+  array(
13898 13898
     'return' => 'void',
13899 13899
     'params' => 'int r, int g, int b [, int a]',
13900 13900
     'description' => 'Sets the color of this textfield',
13901 13901
   ),
13902 13902
   'swftextfield::setName' => 
13903
-  array (
13903
+  array(
13904 13904
     'return' => 'void',
13905 13905
     'params' => 'string var_name',
13906 13906
     'description' => 'Sets the variable name of this textfield',
13907 13907
   ),
13908 13908
   'swftextfield::addString' => 
13909
-  array (
13909
+  array(
13910 13910
     'return' => 'void',
13911 13911
     'params' => 'string str',
13912 13912
     'description' => 'Adds the given string to this textfield',
13913 13913
   ),
13914 13914
   'swftextfield::setPadding' => 
13915
-  array (
13915
+  array(
13916 13916
     'return' => 'void',
13917 13917
     'params' => 'float padding',
13918 13918
     'description' => 'Sets the padding of this textfield',
13919 13919
   ),
13920 13920
   'swftextfield::addChars' => 
13921
-  array (
13921
+  array(
13922 13922
     'return' => 'void',
13923 13923
     'params' => 'string',
13924 13924
     'description' => 'adds characters to a font that will be available within a textfield',
13925 13925
   ),
13926 13926
   'SplObjectStorage::attach' => 
13927
-  array (
13927
+  array(
13928 13928
     'return' => 'void',
13929 13929
     'params' => '$obj',
13930 13930
     'description' => 'Attaches an object to the storage if not yet contained',
13931 13931
   ),
13932 13932
   'SplObjectStorage::detach' => 
13933
-  array (
13933
+  array(
13934 13934
     'return' => 'void',
13935 13935
     'params' => '$obj',
13936 13936
     'description' => 'Detaches an object from the storage',
13937 13937
   ),
13938 13938
   'SplObjectStorage::contains' => 
13939
-  array (
13939
+  array(
13940 13940
     'return' => 'bool',
13941 13941
     'params' => '$obj',
13942 13942
     'description' => 'Determine whethe an object is contained in the storage',
13943 13943
   ),
13944 13944
   'SplObjectStorage::count' => 
13945
-  array (
13945
+  array(
13946 13946
     'return' => 'int',
13947 13947
     'params' => '',
13948 13948
     'description' => 'Determine number of objects in storage',
13949 13949
   ),
13950 13950
   'SplObjectStorage::rewind' => 
13951
-  array (
13951
+  array(
13952 13952
     'return' => 'void',
13953 13953
     'params' => '',
13954 13954
     'description' => '',
13955 13955
   ),
13956 13956
   'SplObjectStorage::valid' => 
13957
-  array (
13957
+  array(
13958 13958
     'return' => 'bool',
13959 13959
     'params' => '',
13960 13960
     'description' => '',
13961 13961
   ),
13962 13962
   'SplObjectStorage::key' => 
13963
-  array (
13963
+  array(
13964 13964
     'return' => 'mixed',
13965 13965
     'params' => '',
13966 13966
     'description' => '',
13967 13967
   ),
13968 13968
   'SplObjectStorage::current' => 
13969
-  array (
13969
+  array(
13970 13970
     'return' => 'mixed',
13971 13971
     'params' => '',
13972 13972
     'description' => '',
13973 13973
   ),
13974 13974
   'SplObjectStorage::next' => 
13975
-  array (
13975
+  array(
13976 13976
     'return' => 'void',
13977 13977
     'params' => '',
13978 13978
     'description' => '',
13979 13979
   ),
13980 13980
   'RecursiveIteratorIterator::rewind' => 
13981
-  array (
13981
+  array(
13982 13982
     'return' => 'void',
13983 13983
     'params' => '',
13984 13984
     'description' => 'Rewind the iterator to the first element of the top level inner iterator.',
13985 13985
   ),
13986 13986
   'RecursiveIteratorIterator::valid' => 
13987
-  array (
13987
+  array(
13988 13988
     'return' => 'bool',
13989 13989
     'params' => '',
13990 13990
     'description' => 'Check whether the current position is valid',
13991 13991
   ),
13992 13992
   'RecursiveIteratorIterator::key' => 
13993
-  array (
13993
+  array(
13994 13994
     'return' => 'mixed',
13995 13995
     'params' => '',
13996 13996
     'description' => 'Access the current key',
13997 13997
   ),
13998 13998
   'RecursiveIteratorIterator::current' => 
13999
-  array (
13999
+  array(
14000 14000
     'return' => 'mixed',
14001 14001
     'params' => '',
14002 14002
     'description' => 'Access the current element value',
14003 14003
   ),
14004 14004
   'RecursiveIteratorIterator::next' => 
14005
-  array (
14005
+  array(
14006 14006
     'return' => 'void',
14007 14007
     'params' => '',
14008 14008
     'description' => 'Move forward to the next element',
14009 14009
   ),
14010 14010
   'RecursiveIteratorIterator::getDepth' => 
14011
-  array (
14011
+  array(
14012 14012
     'return' => 'int',
14013 14013
     'params' => '',
14014 14014
     'description' => 'Get the current depth of the recursive iteration',
14015 14015
   ),
14016 14016
   'RecursiveIteratorIterator::getSubIterator' => 
14017
-  array (
14017
+  array(
14018 14018
     'return' => 'RecursiveIterator',
14019 14019
     'params' => '[int level]',
14020 14020
     'description' => 'The current active sub iterator or the iterator at specified level',
14021 14021
   ),
14022 14022
   'RecursiveIteratorIterator::getInnerIterator' => 
14023
-  array (
14023
+  array(
14024 14024
     'return' => 'RecursiveIterator',
14025 14025
     'params' => '',
14026 14026
     'description' => 'The current active sub iterator',
14027 14027
   ),
14028 14028
   'RecursiveIteratorIterator::beginIteration' => 
14029
-  array (
14029
+  array(
14030 14030
     'return' => 'RecursiveIterator',
14031 14031
     'params' => '',
14032 14032
     'description' => 'Called when iteration begins (after first rewind() call)',
14033 14033
   ),
14034 14034
   'RecursiveIteratorIterator::endIteration' => 
14035
-  array (
14035
+  array(
14036 14036
     'return' => 'RecursiveIterator',
14037 14037
     'params' => '',
14038 14038
     'description' => 'Called when iteration ends (when valid() first returns false',
14039 14039
   ),
14040 14040
   'RecursiveIteratorIterator::callHasChildren' => 
14041
-  array (
14041
+  array(
14042 14042
     'return' => 'bool',
14043 14043
     'params' => '',
14044 14044
     'description' => 'Called for each element to test whether it has children',
14045 14045
   ),
14046 14046
   'RecursiveIteratorIterator::callGetChildren' => 
14047
-  array (
14047
+  array(
14048 14048
     'return' => 'RecursiveIterator',
14049 14049
     'params' => '',
14050 14050
     'description' => 'Return children of current element',
14051 14051
   ),
14052 14052
   'RecursiveIteratorIterator::beginChildren' => 
14053
-  array (
14053
+  array(
14054 14054
     'return' => 'void',
14055 14055
     'params' => '',
14056 14056
     'description' => 'Called when recursing one level down',
14057 14057
   ),
14058 14058
   'RecursiveIteratorIterator::endChildren' => 
14059
-  array (
14059
+  array(
14060 14060
     'return' => 'void',
14061 14061
     'params' => '',
14062 14062
     'description' => 'Called when end recursing one level',
14063 14063
   ),
14064 14064
   'RecursiveIteratorIterator::nextElement' => 
14065
-  array (
14065
+  array(
14066 14066
     'return' => 'void',
14067 14067
     'params' => '',
14068 14068
     'description' => 'Called when the next element is available',
14069 14069
   ),
14070 14070
   'RecursiveIteratorIterator::setMaxDepth' => 
14071
-  array (
14071
+  array(
14072 14072
     'return' => 'void',
14073 14073
     'params' => '[$max_depth = -1]',
14074 14074
     'description' => 'Set the maximum allowed depth (or any depth if pmax_depth = -1]',
14075 14075
   ),
14076 14076
   'RecursiveIteratorIterator::getMaxDepth' => 
14077
-  array (
14077
+  array(
14078 14078
     'return' => 'int|false',
14079 14079
     'params' => '',
14080 14080
     'description' => 'Return the maximum accepted depth or false if any depth is allowed',
14081 14081
   ),
14082 14082
   'FilterIterator::__construct' => 
14083
-  array (
14083
+  array(
14084 14084
     'return' => 'void',
14085 14085
     'params' => 'Iterator it',
14086 14086
     'description' => 'Create an Iterator from another iterator',
14087 14087
   ),
14088 14088
   'FilterIterator::getInnerIterator' => 
14089
-  array (
14089
+  array(
14090 14090
     'return' => 'Iterator',
14091 14091
     'params' => '',
14092 14092
     'description' => 'proto Iterator CachingIterator::getInnerIterator()proto Iterator LimitIterator::getInnerIterator()proto Iterator ParentIterator::getInnerIterator()Get the inner iterator',
14093 14093
   ),
14094 14094
   'ParentIterator::rewind' => 
14095
-  array (
14095
+  array(
14096 14096
     'return' => 'void',
14097 14097
     'params' => '',
14098 14098
     'description' => 'proto void IteratorIterator::rewind()Rewind the iterator',
14099 14099
   ),
14100 14100
   'FilterIterator::valid' => 
14101
-  array (
14101
+  array(
14102 14102
     'return' => 'bool',
14103 14103
     'params' => '',
14104 14104
     'description' => 'proto bool ParentIterator::valid()proto bool IteratorIterator::valid()proto bool NoRewindIterator::valid()Check whether the current element is valid',
14105 14105
   ),
14106 14106
   'FilterIterator::key' => 
14107
-  array (
14107
+  array(
14108 14108
     'return' => 'mixed',
14109 14109
     'params' => '',
14110 14110
     'description' => 'proto mixed CachingIterator::key()proto mixed LimitIterator::key()proto mixed ParentIterator::key()proto mixed IteratorIterator::key()proto mixed NoRewindIterator::key()proto mixed AppendIterator::key()Get the current key',
14111 14111
   ),
14112 14112
   'FilterIterator::current' => 
14113
-  array (
14113
+  array(
14114 14114
     'return' => 'mixed',
14115 14115
     'params' => '',
14116 14116
     'description' => 'proto mixed CachingIterator::current()proto mixed LimitIterator::current()proto mixed ParentIterator::current()proto mixed IteratorIterator::current()proto mixed NoRewindIterator::current()proto mixed AppendIterator::current()Get the current element value',
14117 14117
   ),
14118 14118
   'ParentIterator::next' => 
14119
-  array (
14119
+  array(
14120 14120
     'return' => 'void',
14121 14121
     'params' => '',
14122 14122
     'description' => 'proto void IteratorIterator::next()proto void NoRewindIterator::next()Move the iterator forward',
14123 14123
   ),
14124 14124
   'FilterIterator::rewind' => 
14125
-  array (
14125
+  array(
14126 14126
     'return' => 'void',
14127 14127
     'params' => '',
14128 14128
     'description' => 'Rewind the iterator',
14129 14129
   ),
14130 14130
   'FilterIterator::next' => 
14131
-  array (
14131
+  array(
14132 14132
     'return' => 'void',
14133 14133
     'params' => '',
14134 14134
     'description' => 'Move the iterator forward',
14135 14135
   ),
14136 14136
   'RecursiveFilterIterator::__construct' => 
14137
-  array (
14137
+  array(
14138 14138
     'return' => 'void',
14139 14139
     'params' => 'RecursiveIterator it',
14140 14140
     'description' => 'Create a RecursiveFilterIterator from a RecursiveIterator',
14141 14141
   ),
14142 14142
   'RecursiveFilterIterator::hasChildren' => 
14143
-  array (
14143
+  array(
14144 14144
     'return' => 'bool',
14145 14145
     'params' => '',
14146 14146
     'description' => 'Check whether the inner iterator\'s current element has children',
14147 14147
   ),
14148 14148
   'RecursiveFilterIterator::getChildren' => 
14149
-  array (
14149
+  array(
14150 14150
     'return' => 'RecursiveFilterIterator',
14151 14151
     'params' => '',
14152 14152
     'description' => 'Return the inner iterator\'s children contained in a RecursiveFilterIterator',
14153 14153
   ),
14154 14154
   'ParentIterator::__construct' => 
14155
-  array (
14155
+  array(
14156 14156
     'return' => 'void',
14157 14157
     'params' => 'RecursiveIterator it',
14158 14158
     'description' => 'Create a ParentIterator from a RecursiveIterator',
14159 14159
   ),
14160 14160
   'ParentIterator::hasChildren' => 
14161
-  array (
14161
+  array(
14162 14162
     'return' => 'bool',
14163 14163
     'params' => '',
14164 14164
     'description' => 'Check whether the inner iterator\'s current element has children',
14165 14165
   ),
14166 14166
   'ParentIterator::getChildren' => 
14167
-  array (
14167
+  array(
14168 14168
     'return' => 'ParentIterator',
14169 14169
     'params' => '',
14170 14170
     'description' => 'Return the inner iterator\'s children contained in a ParentIterator',
14171 14171
   ),
14172 14172
   'LimitIterator::rewind' => 
14173
-  array (
14173
+  array(
14174 14174
     'return' => 'void',
14175 14175
     'params' => '',
14176 14176
     'description' => 'Rewind the iterator to the specified starting offset',
14177 14177
   ),
14178 14178
   'LimitIterator::valid' => 
14179
-  array (
14179
+  array(
14180 14180
     'return' => 'bool',
14181 14181
     'params' => '',
14182 14182
     'description' => 'Check whether the current element is valid',
14183 14183
   ),
14184 14184
   'LimitIterator::next' => 
14185
-  array (
14185
+  array(
14186 14186
     'return' => 'void',
14187 14187
     'params' => '',
14188 14188
     'description' => 'Move the iterator forward',
14189 14189
   ),
14190 14190
   'LimitIterator::seek' => 
14191
-  array (
14191
+  array(
14192 14192
     'return' => 'void',
14193 14193
     'params' => 'int position',
14194 14194
     'description' => 'Seek to the given position',
14195 14195
   ),
14196 14196
   'LimitIterator::getPosition' => 
14197
-  array (
14197
+  array(
14198 14198
     'return' => 'int',
14199 14199
     'params' => '',
14200 14200
     'description' => 'Return the current position',
14201 14201
   ),
14202 14202
   'CachingIterator::__construct' => 
14203
-  array (
14203
+  array(
14204 14204
     'return' => 'void',
14205 14205
     'params' => 'Iterator it [, flags = CIT_CALL_TOSTRING]',
14206 14206
     'description' => 'Construct a CachingIterator from an Iterator',
14207 14207
   ),
14208 14208
   'CachingIterator::rewind' => 
14209
-  array (
14209
+  array(
14210 14210
     'return' => 'void',
14211 14211
     'params' => '',
14212 14212
     'description' => 'Rewind the iterator',
14213 14213
   ),
14214 14214
   'CachingIterator::valid' => 
14215
-  array (
14215
+  array(
14216 14216
     'return' => 'bool',
14217 14217
     'params' => '',
14218 14218
     'description' => 'Check whether the current element is valid',
14219 14219
   ),
14220 14220
   'CachingIterator::next' => 
14221
-  array (
14221
+  array(
14222 14222
     'return' => 'void',
14223 14223
     'params' => '',
14224 14224
     'description' => 'Move the iterator forward',
14225 14225
   ),
14226 14226
   'CachingIterator::hasNext' => 
14227
-  array (
14227
+  array(
14228 14228
     'return' => 'bool',
14229 14229
     'params' => '',
14230 14230
     'description' => 'Check whether the inner iterator has a valid next element',
14231 14231
   ),
14232 14232
   'CachingIterator::__toString' => 
14233
-  array (
14233
+  array(
14234 14234
     'return' => 'string',
14235 14235
     'params' => '',
14236 14236
     'description' => 'Return the string representation of the current element',
14237 14237
   ),
14238 14238
   'RecursiveCachingIterator::__construct' => 
14239
-  array (
14239
+  array(
14240 14240
     'return' => 'void',
14241 14241
     'params' => 'RecursiveIterator it [, flags = CIT_CALL_TOSTRING]',
14242 14242
     'description' => 'Create an iterator from a RecursiveIterator',
14243 14243
   ),
14244 14244
   'RecursiveCachingIterator::hasChildren' => 
14245
-  array (
14245
+  array(
14246 14246
     'return' => 'bool',
14247 14247
     'params' => '',
14248 14248
     'description' => 'Check whether the current element of the inner iterator has children',
14249 14249
   ),
14250 14250
   'RecursiveCachingIterator::getChildren' => 
14251
-  array (
14251
+  array(
14252 14252
     'return' => 'RecursiveCachingIterator',
14253 14253
     'params' => '',
14254 14254
     'description' => 'Return the inner iterator\'s children as a RecursiveCachingIterator',
14255 14255
   ),
14256 14256
   'IteratorIterator::__construct' => 
14257
-  array (
14257
+  array(
14258 14258
     'return' => 'void',
14259 14259
     'params' => 'Traversable it',
14260 14260
     'description' => 'Create an iterator from anything that is traversable',
14261 14261
   ),
14262 14262
   'NoRewindIterator::__construct' => 
14263
-  array (
14263
+  array(
14264 14264
     'return' => 'void',
14265 14265
     'params' => 'Iterator it',
14266 14266
     'description' => 'Create an iterator from another iterator',
14267 14267
   ),
14268 14268
   'NoRewindIterator::rewind' => 
14269
-  array (
14269
+  array(
14270 14270
     'return' => 'void',
14271 14271
     'params' => '',
14272 14272
     'description' => 'Prevent a call to inner iterators rewind()',
14273 14273
   ),
14274 14274
   'NoRewindIterator::valid' => 
14275
-  array (
14275
+  array(
14276 14276
     'return' => 'bool',
14277 14277
     'params' => '',
14278 14278
     'description' => 'Return inner iterators valid()',
14279 14279
   ),
14280 14280
   'NoRewindIterator::key' => 
14281
-  array (
14281
+  array(
14282 14282
     'return' => 'mixed',
14283 14283
     'params' => '',
14284 14284
     'description' => 'Return inner iterators key()',
14285 14285
   ),
14286 14286
   'NoRewindIterator::current' => 
14287
-  array (
14287
+  array(
14288 14288
     'return' => 'mixed',
14289 14289
     'params' => '',
14290 14290
     'description' => 'Return inner iterators current()',
14291 14291
   ),
14292 14292
   'NoRewindIterator::next' => 
14293
-  array (
14293
+  array(
14294 14294
     'return' => 'void',
14295 14295
     'params' => '',
14296 14296
     'description' => 'Return inner iterators next()',
14297 14297
   ),
14298 14298
   'InfiniteIterator::__construct' => 
14299
-  array (
14299
+  array(
14300 14300
     'return' => 'void',
14301 14301
     'params' => 'Iterator it',
14302 14302
     'description' => 'Create an iterator from another iterator',
14303 14303
   ),
14304 14304
   'InfiniteIterator::next' => 
14305
-  array (
14305
+  array(
14306 14306
     'return' => 'void',
14307 14307
     'params' => '',
14308 14308
     'description' => 'Prevent a call to inner iterators rewind() (internally the current data will be fetched if valid())',
14309 14309
   ),
14310 14310
   'EmptyIterator::rewind' => 
14311
-  array (
14311
+  array(
14312 14312
     'return' => 'void',
14313 14313
     'params' => '',
14314 14314
     'description' => 'Does nothing',
14315 14315
   ),
14316 14316
   'EmptyIterator::valid' => 
14317
-  array (
14317
+  array(
14318 14318
     'return' => 'false',
14319 14319
     'params' => '',
14320 14320
     'description' => 'Return false',
14321 14321
   ),
14322 14322
   'EmptyIterator::key' => 
14323
-  array (
14323
+  array(
14324 14324
     'return' => 'void',
14325 14325
     'params' => '',
14326 14326
     'description' => 'Throws exception BadMethodCallException',
14327 14327
   ),
14328 14328
   'EmptyIterator::current' => 
14329
-  array (
14329
+  array(
14330 14330
     'return' => 'void',
14331 14331
     'params' => '',
14332 14332
     'description' => 'Throws exception BadMethodCallException',
14333 14333
   ),
14334 14334
   'EmptyIterator::next' => 
14335
-  array (
14335
+  array(
14336 14336
     'return' => 'void',
14337 14337
     'params' => '',
14338 14338
     'description' => 'Does nothing',
14339 14339
   ),
14340 14340
   'AppendIterator::__construct' => 
14341
-  array (
14341
+  array(
14342 14342
     'return' => 'void',
14343 14343
     'params' => '',
14344 14344
     'description' => 'Create an AppendIterator',
14345 14345
   ),
14346 14346
   'AppendIterator::append' => 
14347
-  array (
14347
+  array(
14348 14348
     'return' => 'void',
14349 14349
     'params' => 'Iterator it',
14350 14350
     'description' => 'Append an iterator',
14351 14351
   ),
14352 14352
   'AppendIterator::rewind' => 
14353
-  array (
14353
+  array(
14354 14354
     'return' => 'void',
14355 14355
     'params' => '',
14356 14356
     'description' => 'Rewind to the first iterator and rewind the first iterator, too',
14357 14357
   ),
14358 14358
   'AppendIterator::valid' => 
14359
-  array (
14359
+  array(
14360 14360
     'return' => 'bool',
14361 14361
     'params' => '',
14362 14362
     'description' => 'Check if the current state is valid',
14363 14363
   ),
14364 14364
   'AppendIterator::next' => 
14365
-  array (
14365
+  array(
14366 14366
     'return' => 'void',
14367 14367
     'params' => '',
14368 14368
     'description' => 'Forward to next element',
14369 14369
   ),
14370 14370
   'iterator_to_array' => 
14371
-  array (
14371
+  array(
14372 14372
     'return' => 'array',
14373 14373
     'params' => 'Traversable it',
14374 14374
     'description' => 'Copy the iterator into an array',
14375 14375
   ),
14376 14376
   'iterator_count' => 
14377
-  array (
14377
+  array(
14378 14378
     'return' => 'int',
14379 14379
     'params' => 'Traversable it',
14380 14380
     'description' => 'Count the elements in an iterator',
14381 14381
   ),
14382 14382
   'class_parents' => 
14383
-  array (
14383
+  array(
14384 14384
     'return' => 'array',
14385 14385
     'params' => 'object instance',
14386 14386
     'description' => 'Return an array containing the names of all parent classes',
14387 14387
   ),
14388 14388
   'class_implements' => 
14389
-  array (
14389
+  array(
14390 14390
     'return' => 'array',
14391 14391
     'params' => 'mixed what [, bool autoload ]',
14392 14392
     'description' => 'Return all classes and interfaces implemented by SPL',
14393 14393
   ),
14394 14394
   'spl_classes' => 
14395
-  array (
14395
+  array(
14396 14396
     'return' => 'array',
14397 14397
     'params' => '',
14398 14398
     'description' => 'Return an array containing the names of all clsses and interfaces defined in SPL',
14399 14399
   ),
14400 14400
   'spl_autoload' => 
14401
-  array (
14401
+  array(
14402 14402
     'return' => 'void',
14403 14403
     'params' => 'string class_name [, string file_extensions]',
14404 14404
     'description' => 'Default implementation for __autoload()',
14405 14405
   ),
14406 14406
   'spl_autoload_extensions' => 
14407
-  array (
14407
+  array(
14408 14408
     'return' => 'string',
14409 14409
     'params' => '[string file_extensions]',
14410 14410
     'description' => 'Register and return default file extensions for spl_autoload',
14411 14411
   ),
14412 14412
   'spl_autoload_call' => 
14413
-  array (
14413
+  array(
14414 14414
     'return' => 'void',
14415 14415
     'params' => 'string class_name',
14416 14416
     'description' => 'Try all registerd autoload function to load the requested class',
14417 14417
   ),
14418 14418
   'spl_autoload_register' => 
14419
-  array (
14419
+  array(
14420 14420
     'return' => 'bool',
14421 14421
     'params' => '[mixed autoload_function = "spl_autoload" [, throw = true]]',
14422 14422
     'description' => 'Register given function as __autoload() implementation',
14423 14423
   ),
14424 14424
   'spl_autoload_unregister' => 
14425
-  array (
14425
+  array(
14426 14426
     'return' => 'bool',
14427 14427
     'params' => 'mixed autoload_function',
14428 14428
     'description' => 'Unregister given function as __autoload() implementation',
14429 14429
   ),
14430 14430
   'spl_autoload_functions' => 
14431
-  array (
14431
+  array(
14432 14432
     'return' => 'false|array',
14433 14433
     'params' => '',
14434 14434
     'description' => 'Return all registered __autoload() functionns',
14435 14435
   ),
14436 14436
   'SimpleXMLIterator::rewind' => 
14437
-  array (
14437
+  array(
14438 14438
     'return' => 'void',
14439 14439
     'params' => '',
14440 14440
     'description' => 'Rewind to first element',
14441 14441
   ),
14442 14442
   'SimpleXMLIterator::valid' => 
14443
-  array (
14443
+  array(
14444 14444
     'return' => 'bool',
14445 14445
     'params' => '',
14446 14446
     'description' => 'Check whether iteration is valid',
14447 14447
   ),
14448 14448
   'SimpleXMLIterator::current' => 
14449
-  array (
14449
+  array(
14450 14450
     'return' => 'SimpleXMLIterator',
14451 14451
     'params' => '',
14452 14452
     'description' => 'Get current element',
14453 14453
   ),
14454 14454
   'SimpleXMLIterator::key' => 
14455
-  array (
14455
+  array(
14456 14456
     'return' => 'string',
14457 14457
     'params' => '',
14458 14458
     'description' => 'Get name of current child element',
14459 14459
   ),
14460 14460
   'SimpleXMLIterator::next' => 
14461
-  array (
14461
+  array(
14462 14462
     'return' => 'void',
14463 14463
     'params' => '',
14464 14464
     'description' => 'Move to next element',
14465 14465
   ),
14466 14466
   'SimpleXMLIterator::hasChildren' => 
14467
-  array (
14467
+  array(
14468 14468
     'return' => 'bool',
14469 14469
     'params' => '',
14470 14470
     'description' => 'Check whether element has children (elements)',
14471 14471
   ),
14472 14472
   'SimpleXMLIterator::getChildren' => 
14473
-  array (
14473
+  array(
14474 14474
     'return' => 'SimpleXMLIterator',
14475 14475
     'params' => '',
14476 14476
     'description' => 'Get child element iterator',
14477 14477
   ),
14478 14478
   'SimpleXMLIterator::count' => 
14479
-  array (
14479
+  array(
14480 14480
     'return' => 'int',
14481 14481
     'params' => '',
14482 14482
     'description' => 'Get number of child elements',
14483 14483
   ),
14484 14484
   'DirectoryIterator::__construct' => 
14485
-  array (
14485
+  array(
14486 14486
     'return' => 'void',
14487 14487
     'params' => 'string path',
14488 14488
     'description' => 'Cronstructs a new dir iterator from a path.',
14489 14489
   ),
14490 14490
   'DirectoryIterator::rewind' => 
14491
-  array (
14491
+  array(
14492 14492
     'return' => 'void',
14493 14493
     'params' => '',
14494 14494
     'description' => 'Rewind dir back to the start',
14495 14495
   ),
14496 14496
   'DirectoryIterator::key' => 
14497
-  array (
14497
+  array(
14498 14498
     'return' => 'string',
14499 14499
     'params' => '',
14500 14500
     'description' => 'Return current dir entry',
14501 14501
   ),
14502 14502
   'DirectoryIterator::current' => 
14503
-  array (
14503
+  array(
14504 14504
     'return' => 'DirectoryIterator',
14505 14505
     'params' => '',
14506 14506
     'description' => 'Return this (needed for Iterator interface)',
14507 14507
   ),
14508 14508
   'DirectoryIterator::next' => 
14509
-  array (
14509
+  array(
14510 14510
     'return' => 'void',
14511 14511
     'params' => '',
14512 14512
     'description' => 'Move to next entry',
14513 14513
   ),
14514 14514
   'DirectoryIterator::valid' => 
14515
-  array (
14515
+  array(
14516 14516
     'return' => 'string',
14517 14517
     'params' => '',
14518 14518
     'description' => 'Check whether dir contains more entries',
14519 14519
   ),
14520 14520
   'SplFileInfo::getPath' => 
14521
-  array (
14521
+  array(
14522 14522
     'return' => 'string',
14523 14523
     'params' => '',
14524 14524
     'description' => 'Return the path',
14525 14525
   ),
14526 14526
   'SplFileInfo::getFilename' => 
14527
-  array (
14527
+  array(
14528 14528
     'return' => 'string',
14529 14529
     'params' => '',
14530 14530
     'description' => 'Return filename only',
14531 14531
   ),
14532 14532
   'DirectoryIterator::getFilename' => 
14533
-  array (
14533
+  array(
14534 14534
     'return' => 'string',
14535 14535
     'params' => '',
14536 14536
     'description' => 'Return filename of current dir entry',
14537 14537
   ),
14538 14538
   'SplFileInfo::getPathname' => 
14539
-  array (
14539
+  array(
14540 14540
     'return' => 'string',
14541 14541
     'params' => '',
14542 14542
     'description' => 'Return path and filename',
14543 14543
   ),
14544 14544
   'RecursiveDirectoryIterator::key' => 
14545
-  array (
14545
+  array(
14546 14546
     'return' => 'string',
14547 14547
     'params' => '',
14548 14548
     'description' => 'Return getPathname() or getFilename() depending on flags',
14549 14549
   ),
14550 14550
   'RecursiveDirectoryIterator::current' => 
14551
-  array (
14551
+  array(
14552 14552
     'return' => 'string',
14553 14553
     'params' => '',
14554 14554
     'description' => 'Return getFilename(), getFileInfo() or $this depending on flags',
14555 14555
   ),
14556 14556
   'DirectoryIterator::isDot' => 
14557
-  array (
14557
+  array(
14558 14558
     'return' => 'bool',
14559 14559
     'params' => '',
14560 14560
     'description' => 'Returns true if current entry is \'.\' or  \'..\'',
14561 14561
   ),
14562 14562
   'SplFileInfo::__construct' => 
14563
-  array (
14563
+  array(
14564 14564
     'return' => 'void',
14565 14565
     'params' => 'string file_name',
14566 14566
     'description' => 'Cronstructs a new SplFileInfo from a path.',
14567 14567
   ),
14568 14568
   'SplFileInfo::getPerms' => 
14569
-  array (
14569
+  array(
14570 14570
     'return' => 'int',
14571 14571
     'params' => '',
14572 14572
     'description' => 'Get file permissions',
14573 14573
   ),
14574 14574
   'SplFileInfo::getInode' => 
14575
-  array (
14575
+  array(
14576 14576
     'return' => 'int',
14577 14577
     'params' => '',
14578 14578
     'description' => 'Get file inode',
14579 14579
   ),
14580 14580
   'SplFileInfo::getSize' => 
14581
-  array (
14581
+  array(
14582 14582
     'return' => 'int',
14583 14583
     'params' => '',
14584 14584
     'description' => 'Get file size',
14585 14585
   ),
14586 14586
   'SplFileInfo::getOwner' => 
14587
-  array (
14587
+  array(
14588 14588
     'return' => 'int',
14589 14589
     'params' => '',
14590 14590
     'description' => 'Get file owner',
14591 14591
   ),
14592 14592
   'SplFileInfo::getGroup' => 
14593
-  array (
14593
+  array(
14594 14594
     'return' => 'int',
14595 14595
     'params' => '',
14596 14596
     'description' => 'Get file group',
14597 14597
   ),
14598 14598
   'SplFileInfo::getATime' => 
14599
-  array (
14599
+  array(
14600 14600
     'return' => 'int',
14601 14601
     'params' => '',
14602 14602
     'description' => 'Get last access time of file',
14603 14603
   ),
14604 14604
   'SplFileInfo::getMTime' => 
14605
-  array (
14605
+  array(
14606 14606
     'return' => 'int',
14607 14607
     'params' => '',
14608 14608
     'description' => 'Get last modification time of file',
14609 14609
   ),
14610 14610
   'SplFileInfo::getCTime' => 
14611
-  array (
14611
+  array(
14612 14612
     'return' => 'int',
14613 14613
     'params' => '',
14614 14614
     'description' => 'Get inode modification time of file',
14615 14615
   ),
14616 14616
   'SplFileInfo::getType' => 
14617
-  array (
14617
+  array(
14618 14618
     'return' => 'string',
14619 14619
     'params' => '',
14620 14620
     'description' => 'Get file type',
14621 14621
   ),
14622 14622
   'SplFileInfo::isWritable' => 
14623
-  array (
14623
+  array(
14624 14624
     'return' => 'bool',
14625 14625
     'params' => '',
14626 14626
     'description' => 'Returns true if file can be written',
14627 14627
   ),
14628 14628
   'SplFileInfo::isReadable' => 
14629
-  array (
14629
+  array(
14630 14630
     'return' => 'bool',
14631 14631
     'params' => '',
14632 14632
     'description' => 'Returns true if file can be read',
14633 14633
   ),
14634 14634
   'SplFileInfo::isExecutable' => 
14635
-  array (
14635
+  array(
14636 14636
     'return' => 'bool',
14637 14637
     'params' => '',
14638 14638
     'description' => 'Returns true if file is executable',
14639 14639
   ),
14640 14640
   'SplFileInfo::isFile' => 
14641
-  array (
14641
+  array(
14642 14642
     'return' => 'bool',
14643 14643
     'params' => '',
14644 14644
     'description' => 'Returns true if file is a regular file',
14645 14645
   ),
14646 14646
   'SplFileInfo::isDir' => 
14647
-  array (
14647
+  array(
14648 14648
     'return' => 'bool',
14649 14649
     'params' => '',
14650 14650
     'description' => 'Returns true if file is directory',
14651 14651
   ),
14652 14652
   'SplFileInfo::isLink' => 
14653
-  array (
14653
+  array(
14654 14654
     'return' => 'bool',
14655 14655
     'params' => '',
14656 14656
     'description' => 'Returns true if file is symbolic link',
14657 14657
   ),
14658 14658
   'SplFileInfo::openFile' => 
14659
-  array (
14659
+  array(
14660 14660
     'return' => 'SplFileObject',
14661 14661
     'params' => '[string mode = \'r\' [, bool use_include_path  [, resource context]]]',
14662 14662
     'description' => 'Open the current file',
14663 14663
   ),
14664 14664
   'SplFileInfo::setFileClass' => 
14665
-  array (
14665
+  array(
14666 14666
     'return' => 'void',
14667 14667
     'params' => '[string class_name]',
14668 14668
     'description' => 'Class to use in openFile()',
14669 14669
   ),
14670 14670
   'SplFileInfo::setInfoClass' => 
14671
-  array (
14671
+  array(
14672 14672
     'return' => 'void',
14673 14673
     'params' => '[string class_name]',
14674 14674
     'description' => 'Class to use in getFileInfo(), getPathInfo()',
14675 14675
   ),
14676 14676
   'SplFileInfo::getFileInfo' => 
14677
-  array (
14677
+  array(
14678 14678
     'return' => 'SplFileInfo',
14679 14679
     'params' => '[string $class_name]',
14680 14680
     'description' => 'Get/copy file info',
14681 14681
   ),
14682 14682
   'SplFileInfo::getPathInfo' => 
14683
-  array (
14683
+  array(
14684 14684
     'return' => 'SplFileInfo',
14685 14685
     'params' => '[string $class_name]',
14686 14686
     'description' => 'Get/copy file info',
14687 14687
   ),
14688 14688
   'RecursiveDirectoryIterator::__construct' => 
14689
-  array (
14689
+  array(
14690 14690
     'return' => 'void',
14691 14691
     'params' => 'string path [, int flags]',
14692 14692
     'description' => 'Cronstructs a new dir iterator from a path.',
14693 14693
   ),
14694 14694
   'RecursiveDirectoryIterator::rewind' => 
14695
-  array (
14695
+  array(
14696 14696
     'return' => 'void',
14697 14697
     'params' => '',
14698 14698
     'description' => 'Rewind dir back to the start',
14699 14699
   ),
14700 14700
   'RecursiveDirectoryIterator::next' => 
14701
-  array (
14701
+  array(
14702 14702
     'return' => 'void',
14703 14703
     'params' => '',
14704 14704
     'description' => 'Move to next entry',
14705 14705
   ),
14706 14706
   'RecursiveDirectoryIterator::hasChildren' => 
14707
-  array (
14707
+  array(
14708 14708
     'return' => 'bool',
14709 14709
     'params' => '[bool $allow_links = false]',
14710 14710
     'description' => 'Returns whether current entry is a directory and not \'.\' or \'..\'',
14711 14711
   ),
14712 14712
   'DirectoryIterator::getChildren' => 
14713
-  array (
14713
+  array(
14714 14714
     'return' => 'RecursiveDirectoryIterator',
14715 14715
     'params' => '',
14716 14716
     'description' => 'Returns an iterator for the current entry if it is a directory',
14717 14717
   ),
14718 14718
   'RecursiveDirectoryIterator::getSubPath' => 
14719
-  array (
14719
+  array(
14720 14720
     'return' => 'void',
14721 14721
     'params' => '',
14722 14722
     'description' => 'Get sub path',
14723 14723
   ),
14724 14724
   'RecursiveDirectoryIterator::getSubPathname' => 
14725
-  array (
14725
+  array(
14726 14726
     'return' => 'void',
14727 14727
     'params' => '',
14728 14728
     'description' => 'Get sub path and file name',
14729 14729
   ),
14730 14730
   'SplFileObject::__construct' => 
14731
-  array (
14731
+  array(
14732 14732
     'return' => 'void',
14733 14733
     'params' => '[int max_memory]',
14734 14734
     'description' => 'Construct a new temp file object',
14735 14735
   ),
14736 14736
   'SplFileObject::rewind' => 
14737
-  array (
14737
+  array(
14738 14738
     'return' => 'void',
14739 14739
     'params' => '',
14740 14740
     'description' => 'Rewind the file and read the first line',
14741 14741
   ),
14742 14742
   'SplFileObject::getFilename' => 
14743
-  array (
14743
+  array(
14744 14744
     'return' => 'string',
14745 14745
     'params' => '',
14746 14746
     'description' => 'Return the filename',
14747 14747
   ),
14748 14748
   'SplFileObject::eof' => 
14749
-  array (
14749
+  array(
14750 14750
     'return' => 'void',
14751 14751
     'params' => '',
14752 14752
     'description' => 'Return whether end of file is reached',
14753 14753
   ),
14754 14754
   'SplFileObject::valid' => 
14755
-  array (
14755
+  array(
14756 14756
     'return' => 'void',
14757 14757
     'params' => '',
14758 14758
     'description' => 'Return !eof()',
14759 14759
   ),
14760 14760
   'SplFileObject::fgets' => 
14761
-  array (
14761
+  array(
14762 14762
     'return' => 'string',
14763 14763
     'params' => '',
14764 14764
     'description' => 'Rturn next line from file',
14765 14765
   ),
14766 14766
   'SplFileObject::current' => 
14767
-  array (
14767
+  array(
14768 14768
     'return' => 'string',
14769 14769
     'params' => '',
14770 14770
     'description' => 'Return current line from file',
14771 14771
   ),
14772 14772
   'SplFileObject::key' => 
14773
-  array (
14773
+  array(
14774 14774
     'return' => 'int',
14775 14775
     'params' => '',
14776 14776
     'description' => 'Return line number',
14777 14777
   ),
14778 14778
   'SplFileObject::next' => 
14779
-  array (
14779
+  array(
14780 14780
     'return' => 'void',
14781 14781
     'params' => '',
14782 14782
     'description' => 'Read next line',
14783 14783
   ),
14784 14784
   'SplFileObject::setFlags' => 
14785
-  array (
14785
+  array(
14786 14786
     'return' => 'void',
14787 14787
     'params' => 'int flags',
14788 14788
     'description' => 'Set file handling flags',
14789 14789
   ),
14790 14790
   'SplFileObject::getFlags' => 
14791
-  array (
14791
+  array(
14792 14792
     'return' => 'int',
14793 14793
     'params' => '',
14794 14794
     'description' => 'Get file handling flags',
14795 14795
   ),
14796 14796
   'SplFileObject::setMaxLineLen' => 
14797
-  array (
14797
+  array(
14798 14798
     'return' => 'void',
14799 14799
     'params' => 'int max_len',
14800 14800
     'description' => 'Set maximum line length',
14801 14801
   ),
14802 14802
   'SplFileObject::getMaxLineLen' => 
14803
-  array (
14803
+  array(
14804 14804
     'return' => 'int',
14805 14805
     'params' => '',
14806 14806
     'description' => 'Get maximum line length',
14807 14807
   ),
14808 14808
   'SplFileObject::hasChildren' => 
14809
-  array (
14809
+  array(
14810 14810
     'return' => 'bool',
14811 14811
     'params' => '',
14812 14812
     'description' => 'Return false',
14813 14813
   ),
14814 14814
   'SplFileObject::getChildren' => 
14815
-  array (
14815
+  array(
14816 14816
     'return' => 'bool',
14817 14817
     'params' => '',
14818 14818
     'description' => 'Read NULL',
14819 14819
   ),
14820 14820
   'SplFileObject::fgetcsv' => 
14821
-  array (
14821
+  array(
14822 14822
     'return' => 'array',
14823 14823
     'params' => '[string delimiter [, string enclosure]]',
14824 14824
     'description' => 'Return current line as csv',
14825 14825
   ),
14826 14826
   'SplFileObject::flock' => 
14827
-  array (
14827
+  array(
14828 14828
     'return' => 'bool',
14829 14829
     'params' => 'int operation [, int &wouldblock]',
14830 14830
     'description' => 'Portable file locking',
14831 14831
   ),
14832 14832
   'SplFileObject::fflush' => 
14833
-  array (
14833
+  array(
14834 14834
     'return' => 'bool',
14835 14835
     'params' => '',
14836 14836
     'description' => 'Flush the file',
14837 14837
   ),
14838 14838
   'SplFileObject::ftell' => 
14839
-  array (
14839
+  array(
14840 14840
     'return' => 'int',
14841 14841
     'params' => '',
14842 14842
     'description' => 'Return current file position',
14843 14843
   ),
14844 14844
   'SplFileObject::fseek' => 
14845
-  array (
14845
+  array(
14846 14846
     'return' => 'int',
14847 14847
     'params' => 'int pos [, int whence = SEEK_SET]',
14848 14848
     'description' => 'Return current file position',
14849 14849
   ),
14850 14850
   'SplFileObject::fgetc' => 
14851
-  array (
14851
+  array(
14852 14852
     'return' => 'int',
14853 14853
     'params' => '',
14854 14854
     'description' => 'Get a character form the file',
14855 14855
   ),
14856 14856
   'SplFileObject::fgetss' => 
14857
-  array (
14857
+  array(
14858 14858
     'return' => 'string',
14859 14859
     'params' => '[string allowable_tags]',
14860 14860
     'description' => 'Get a line from file pointer and strip HTML tags',
14861 14861
   ),
14862 14862
   'SplFileObject::fpassthru' => 
14863
-  array (
14863
+  array(
14864 14864
     'return' => 'int',
14865 14865
     'params' => '',
14866 14866
     'description' => 'Output all remaining data from a file pointer',
14867 14867
   ),
14868 14868
   'SplFileObject::fscanf' => 
14869
-  array (
14869
+  array(
14870 14870
     'return' => 'bool',
14871 14871
     'params' => 'string format [, string ...]',
14872 14872
     'description' => 'Implements a mostly ANSI compatible fscanf()',
14873 14873
   ),
14874 14874
   'SplFileObject::fwrite' => 
14875
-  array (
14875
+  array(
14876 14876
     'return' => 'mixed',
14877 14877
     'params' => 'string str [, int length]',
14878 14878
     'description' => 'Binary-safe file write',
14879 14879
   ),
14880 14880
   'SplFileObject::fstat' => 
14881
-  array (
14881
+  array(
14882 14882
     'return' => 'bool',
14883 14883
     'params' => '',
14884 14884
     'description' => 'Stat() on a filehandle',
14885 14885
   ),
14886 14886
   'SplFileObject::ftruncate' => 
14887
-  array (
14887
+  array(
14888 14888
     'return' => 'bool',
14889 14889
     'params' => 'int size',
14890 14890
     'description' => 'Truncate file to \'size\' length',
14891 14891
   ),
14892 14892
   'SplFileObject::seek' => 
14893
-  array (
14893
+  array(
14894 14894
     'return' => 'void',
14895 14895
     'params' => 'int line_pos',
14896 14896
     'description' => 'Seek to specified line',
14897 14897
   ),
14898 14898
   'ArrayObject::offsetExists' => 
14899
-  array (
14899
+  array(
14900 14900
     'return' => 'bool',
14901 14901
     'params' => 'mixed $index',
14902 14902
     'description' => 'proto bool ArrayIterator::offsetExists(mixed $index)Returns whether the requested $index exists.',
14903 14903
   ),
14904 14904
   'ArrayObject::offsetGet' => 
14905
-  array (
14905
+  array(
14906 14906
     'return' => 'bool',
14907 14907
     'params' => 'mixed $index',
14908 14908
     'description' => 'proto bool ArrayIterator::offsetGet(mixed $index)Returns the value at the specified $index.',
14909 14909
   ),
14910 14910
   'ArrayObject::offsetSet' => 
14911
-  array (
14911
+  array(
14912 14912
     'return' => 'void',
14913 14913
     'params' => 'mixed $index, mixed $newval',
14914 14914
     'description' => 'proto void ArrayIterator::offsetSet(mixed $index, mixed $newval)Sets the value at the specified $index to $newval.',
14915 14915
   ),
14916 14916
   'ArrayObject::append' => 
14917
-  array (
14917
+  array(
14918 14918
     'return' => 'void',
14919 14919
     'params' => 'mixed $newval',
14920 14920
     'description' => 'proto void ArrayIterator::append(mixed $newval)Appends the value (cannot be called for objects).',
14921 14921
   ),
14922 14922
   'ArrayObject::offsetUnset' => 
14923
-  array (
14923
+  array(
14924 14924
     'return' => 'void',
14925 14925
     'params' => 'mixed $index',
14926 14926
     'description' => 'proto void ArrayIterator::offsetUnset(mixed $index)Unsets the value at the specified $index.',
14927 14927
   ),
14928 14928
   'ArrayObject::__construct' => 
14929
-  array (
14929
+  array(
14930 14930
     'return' => 'void',
14931 14931
     'params' => 'array|object ar = array() [, int flags = 0 [, string iterator_class = "ArrayIterator"]]',
14932 14932
     'description' => 'proto void ArrayIterator::__construct(array|object ar = array() [, int flags = 0])Cronstructs a new array iterator from a path.',
14933 14933
   ),
14934 14934
   'ArrayObject::setIteratorClass' => 
14935
-  array (
14935
+  array(
14936 14936
     'return' => 'void',
14937 14937
     'params' => 'string iterator_class',
14938 14938
     'description' => 'Set the class used in getIterator.',
14939 14939
   ),
14940 14940
   'ArrayObject::getIteratorClass' => 
14941
-  array (
14941
+  array(
14942 14942
     'return' => 'string',
14943 14943
     'params' => '',
14944 14944
     'description' => 'Get the class used in getIterator.',
14945 14945
   ),
14946 14946
   'ArrayObject::getFlags' => 
14947
-  array (
14947
+  array(
14948 14948
     'return' => 'int',
14949 14949
     'params' => '',
14950 14950
     'description' => 'Get flags',
14951 14951
   ),
14952 14952
   'ArrayObject::setFlags' => 
14953
-  array (
14953
+  array(
14954 14954
     'return' => 'void',
14955 14955
     'params' => 'int flags',
14956 14956
     'description' => 'Set flags',
14957 14957
   ),
14958 14958
   'ArrayObject::exchangeArray' => 
14959
-  array (
14959
+  array(
14960 14960
     'return' => 'Array|Object',
14961 14961
     'params' => 'Array|Object ar = array()',
14962 14962
     'description' => 'Replace the referenced array or object with a new one and return the old one (right now copy - to be changed)',
14963 14963
   ),
14964 14964
   'ArrayObject::getIterator' => 
14965
-  array (
14965
+  array(
14966 14966
     'return' => 'ArrayIterator',
14967 14967
     'params' => '',
14968 14968
     'description' => 'Create a new iterator from a ArrayObject instance',
14969 14969
   ),
14970 14970
   'ArrayIterator::rewind' => 
14971
-  array (
14971
+  array(
14972 14972
     'return' => 'void',
14973 14973
     'params' => '',
14974 14974
     'description' => 'Rewind array back to the start',
14975 14975
   ),
14976 14976
   'ArrayIterator::seek' => 
14977
-  array (
14977
+  array(
14978 14978
     'return' => 'void',
14979 14979
     'params' => 'int $position',
14980 14980
     'description' => 'Seek to position.',
14981 14981
   ),
14982 14982
   'ArrayObject::count' => 
14983
-  array (
14983
+  array(
14984 14984
     'return' => 'int',
14985 14985
     'params' => '',
14986 14986
     'description' => 'proto int ArrayIterator::count()Return the number of elements in the Iterator.',
14987 14987
   ),
14988 14988
   'ArrayIterator::current' => 
14989
-  array (
14989
+  array(
14990 14990
     'return' => 'mixed|NULL',
14991 14991
     'params' => '',
14992 14992
     'description' => 'Return current array entry',
14993 14993
   ),
14994 14994
   'ArrayIterator::key' => 
14995
-  array (
14995
+  array(
14996 14996
     'return' => 'mixed|NULL',
14997 14997
     'params' => '',
14998 14998
     'description' => 'Return current array key',
14999 14999
   ),
15000 15000
   'ArrayIterator::next' => 
15001
-  array (
15001
+  array(
15002 15002
     'return' => 'void',
15003 15003
     'params' => '',
15004 15004
     'description' => 'Move to next entry',
15005 15005
   ),
15006 15006
   'ArrayIterator::valid' => 
15007
-  array (
15007
+  array(
15008 15008
     'return' => 'bool',
15009 15009
     'params' => '',
15010 15010
     'description' => 'Check whether array contains more entries',
15011 15011
   ),
15012 15012
   'RecursiveArrayIterator::hasChildren' => 
15013
-  array (
15013
+  array(
15014 15014
     'return' => 'bool',
15015 15015
     'params' => '',
15016 15016
     'description' => 'Check whether current element has children (e.g. is an array)',
15017 15017
   ),
15018 15018
   'RecursiveArrayIterator::getChildren' => 
15019
-  array (
15019
+  array(
15020 15020
     'return' => 'object',
15021 15021
     'params' => '',
15022 15022
     'description' => 'Create a sub iterator for the current element (same class as $this)',
15023 15023
   ),
15024 15024
   'hash' => 
15025
-  array (
15025
+  array(
15026 15026
     'return' => 'string',
15027 15027
     'params' => 'string algo, string data[, bool raw_output = false]',
15028 15028
     'description' => 'Generate a hash of a given input stringReturns lowercase hexits by default',
15029 15029
   ),
15030 15030
   'hash_file' => 
15031
-  array (
15031
+  array(
15032 15032
     'return' => 'string',
15033 15033
     'params' => 'string algo, string filename[, bool raw_output = false]',
15034 15034
     'description' => 'Generate a hash of a given fileReturns lowercase hexits by default',
15035 15035
   ),
15036 15036
   'hash_hmac' => 
15037
-  array (
15037
+  array(
15038 15038
     'return' => 'string',
15039 15039
     'params' => 'string algo, string data, string key[, bool raw_output = false]',
15040 15040
     'description' => 'Generate a hash of a given input string with a key using HMACReturns lowercase hexits by default',
15041 15041
   ),
15042 15042
   'hash_hmac_file' => 
15043
-  array (
15043
+  array(
15044 15044
     'return' => 'string',
15045 15045
     'params' => 'string algo, string filename, string key[, bool raw_output = false]',
15046 15046
     'description' => 'Generate a hash of a given file with a key using HMACReturns lowercase hexits by default',
15047 15047
   ),
15048 15048
   'hash_init' => 
15049
-  array (
15049
+  array(
15050 15050
     'return' => 'resource',
15051 15051
     'params' => 'string algo[, int options, string key]',
15052 15052
     'description' => 'Initialize a hashing context',
15053 15053
   ),
15054 15054
   'hash_update' => 
15055
-  array (
15055
+  array(
15056 15056
     'return' => 'bool',
15057 15057
     'params' => 'resource context, string data',
15058 15058
     'description' => 'Pump data into the hashing algorithm',
15059 15059
   ),
15060 15060
   'hash_update_stream' => 
15061
-  array (
15061
+  array(
15062 15062
     'return' => 'int',
15063 15063
     'params' => 'resource context, resource handle[, integer length]',
15064 15064
     'description' => 'Pump data into the hashing algorithm from an open stream',
15065 15065
   ),
15066 15066
   'hash_update_file' => 
15067
-  array (
15067
+  array(
15068 15068
     'return' => 'bool',
15069 15069
     'params' => 'resource context, string filename[, resource context]',
15070 15070
     'description' => 'Pump data into the hashing algorithm from a file',
15071 15071
   ),
15072 15072
   'hash_final' => 
15073
-  array (
15073
+  array(
15074 15074
     'return' => 'string',
15075 15075
     'params' => 'resource context[, bool raw_output=false]',
15076 15076
     'description' => 'Output resulting digest',
15077 15077
   ),
15078 15078
   'hash_algos' => 
15079
-  array (
15079
+  array(
15080 15080
     'return' => 'array',
15081 15081
     'params' => 'void',
15082 15082
     'description' => 'Return a list of registered hashing algorithms',
15083 15083
   ),
15084 15084
   'sybase_unbuffered_query' => 
15085
-  array (
15085
+  array(
15086 15086
     'return' => 'int',
15087 15087
     'params' => 'string query [, int link_id]',
15088 15088
     'description' => 'Send Sybase query',
15089 15089
   ),
15090 15090
   'sybase_fetch_assoc' => 
15091
-  array (
15091
+  array(
15092 15092
     'return' => 'array',
15093 15093
     'params' => 'int result',
15094 15094
     'description' => 'Fetch row as array without numberic indices',
15095 15095
   ),
15096 15096
   'sybase_min_client_severity' => 
15097
-  array (
15097
+  array(
15098 15098
     'return' => 'void',
15099 15099
     'params' => 'int severity',
15100 15100
     'description' => 'Sets minimum client severity',
15101 15101
   ),
15102 15102
   'sybase_min_server_severity' => 
15103
-  array (
15103
+  array(
15104 15104
     'return' => 'void',
15105 15105
     'params' => 'int severity',
15106 15106
     'description' => 'Sets minimum server severity',
15107 15107
   ),
15108 15108
   'sybase_deadlock_retry_count' => 
15109
-  array (
15109
+  array(
15110 15110
     'return' => 'void',
15111 15111
     'params' => 'int retry_count',
15112 15112
     'description' => 'Sets deadlock retry count',
15113 15113
   ),
15114 15114
   'sybase_set_message_handler' => 
15115
-  array (
15115
+  array(
15116 15116
     'return' => 'bool',
15117 15117
     'params' => 'mixed error_func [, resource connection]',
15118 15118
     'description' => 'Set the error handler, to be called when a server message is raised.If error_func is NULL the handler will be deleted',
15119 15119
   ),
15120 15120
   'mhash_count' => 
15121
-  array (
15121
+  array(
15122 15122
     'return' => 'int',
15123 15123
     'params' => 'void',
15124 15124
     'description' => 'Gets the number of available hashes',
15125 15125
   ),
15126 15126
   'mhash_get_block_size' => 
15127
-  array (
15127
+  array(
15128 15128
     'return' => 'int',
15129 15129
     'params' => 'int hash',
15130 15130
     'description' => 'Gets the block size of hash',
15131 15131
   ),
15132 15132
   'mhash_get_hash_name' => 
15133
-  array (
15133
+  array(
15134 15134
     'return' => 'string',
15135 15135
     'params' => 'int hash',
15136 15136
     'description' => 'Gets the name of hash',
15137 15137
   ),
15138 15138
   'mhash' => 
15139
-  array (
15139
+  array(
15140 15140
     'return' => 'string',
15141 15141
     'params' => 'int hash, string data [, string key]',
15142 15142
     'description' => 'Hash data with hash',
15143 15143
   ),
15144 15144
   'mhash_keygen_s2k' => 
15145
-  array (
15145
+  array(
15146 15146
     'return' => 'string',
15147 15147
     'params' => 'int hash, string input_password, string salt, int bytes',
15148 15148
     'description' => 'Generates a key using hash functions',
15149 15149
   ),
15150 15150
   'tidy_parse_string' => 
15151
-  array (
15151
+  array(
15152 15152
     'return' => 'bool',
15153 15153
     'params' => 'string input [, mixed config_options [, string encoding]]',
15154 15154
     'description' => 'Parse a document stored in a string',
15155 15155
   ),
15156 15156
   'tidy_get_error_buffer' => 
15157
-  array (
15157
+  array(
15158 15158
     'return' => 'string',
15159 15159
     'params' => '[boolean detailed]',
15160 15160
     'description' => 'Return warnings and errors which occured parsing the specified document',
15161 15161
   ),
15162 15162
   'tidy_get_output' => 
15163
-  array (
15163
+  array(
15164 15164
     'return' => 'string',
15165 15165
     'params' => '',
15166 15166
     'description' => 'Return a string representing the parsed tidy markup',
15167 15167
   ),
15168 15168
   'tidy_parse_file' => 
15169
-  array (
15169
+  array(
15170 15170
     'return' => 'boolean',
15171 15171
     'params' => 'string file [, mixed config_options [, string encoding [, bool use_include_path]]]',
15172 15172
     'description' => 'Parse markup in file or URI',
15173 15173
   ),
15174 15174
   'tidy_clean_repair' => 
15175
-  array (
15175
+  array(
15176 15176
     'return' => 'boolean',
15177 15177
     'params' => '',
15178 15178
     'description' => 'Execute configured cleanup and repair operations on parsed markup',
15179 15179
   ),
15180 15180
   'tidy_repair_string' => 
15181
-  array (
15181
+  array(
15182 15182
     'return' => 'boolean',
15183 15183
     'params' => 'string data [, mixed config_file [, string encoding]]',
15184 15184
     'description' => 'Repair a string using an optionally provided configuration file',
15185 15185
   ),
15186 15186
   'tidy_repair_file' => 
15187
-  array (
15187
+  array(
15188 15188
     'return' => 'boolean',
15189 15189
     'params' => 'string filename [, mixed config_file [, string encoding [, bool use_include_path]]]',
15190 15190
     'description' => 'Repair a file using an optionally provided configuration file',
15191 15191
   ),
15192 15192
   'tidy_diagnose' => 
15193
-  array (
15193
+  array(
15194 15194
     'return' => 'boolean',
15195 15195
     'params' => '',
15196 15196
     'description' => 'Run configured diagnostics on parsed and repaired markup.',
15197 15197
   ),
15198 15198
   'tidy_get_release' => 
15199
-  array (
15199
+  array(
15200 15200
     'return' => 'string',
15201 15201
     'params' => '',
15202 15202
     'description' => 'Get release date (version) for Tidy library',
15203 15203
   ),
15204 15204
   'tidy_get_opt_doc' => 
15205
-  array (
15205
+  array(
15206 15206
     'return' => 'string',
15207 15207
     'params' => 'tidy resource, string optname',
15208 15208
     'description' => 'Returns the documentation for the given option name',
15209 15209
   ),
15210 15210
   'tidy_get_config' => 
15211
-  array (
15211
+  array(
15212 15212
     'return' => 'array',
15213 15213
     'params' => '',
15214 15214
     'description' => 'Get current Tidy configuarion',
15215 15215
   ),
15216 15216
   'tidy_get_status' => 
15217
-  array (
15217
+  array(
15218 15218
     'return' => 'int',
15219 15219
     'params' => '',
15220 15220
     'description' => 'Get status of specfied document.',
15221 15221
   ),
15222 15222
   'tidy_get_html_ver' => 
15223
-  array (
15223
+  array(
15224 15224
     'return' => 'int',
15225 15225
     'params' => '',
15226 15226
     'description' => 'Get the Detected HTML version for the specified document.',
15227 15227
   ),
15228 15228
   'tidy_is_xhtml' => 
15229
-  array (
15229
+  array(
15230 15230
     'return' => 'boolean',
15231 15231
     'params' => '',
15232 15232
     'description' => 'Indicates if the document is a generic (non HTML/XHTML) XML document.',
15233 15233
   ),
15234 15234
   'tidy_error_count' => 
15235
-  array (
15235
+  array(
15236 15236
     'return' => 'int',
15237 15237
     'params' => '',
15238 15238
     'description' => 'Returns the Number of Tidy errors encountered for specified document.',
15239 15239
   ),
15240 15240
   'tidy_warning_count' => 
15241
-  array (
15241
+  array(
15242 15242
     'return' => 'int',
15243 15243
     'params' => '',
15244 15244
     'description' => 'Returns the Number of Tidy warnings encountered for specified document.',
15245 15245
   ),
15246 15246
   'tidy_access_count' => 
15247
-  array (
15247
+  array(
15248 15248
     'return' => 'int',
15249 15249
     'params' => '',
15250 15250
     'description' => 'Returns the Number of Tidy accessibility warnings encountered for specified document.',
15251 15251
   ),
15252 15252
   'tidy_config_count' => 
15253
-  array (
15253
+  array(
15254 15254
     'return' => 'int',
15255 15255
     'params' => '',
15256 15256
     'description' => 'Returns the Number of Tidy configuration errors encountered for specified document.',
15257 15257
   ),
15258 15258
   'tidy_getopt' => 
15259
-  array (
15259
+  array(
15260 15260
     'return' => 'mixed',
15261 15261
     'params' => 'string option',
15262 15262
     'description' => 'Returns the value of the specified configuration option for the tidy document.',
15263 15263
   ),
15264 15264
   'tidy_get_root' => 
15265
-  array (
15265
+  array(
15266 15266
     'return' => 'TidyNode',
15267 15267
     'params' => '',
15268 15268
     'description' => 'Returns a TidyNode Object representing the root of the tidy parse tree',
15269 15269
   ),
15270 15270
   'tidy_get_html' => 
15271
-  array (
15271
+  array(
15272 15272
     'return' => 'TidyNode',
15273 15273
     'params' => '',
15274 15274
     'description' => 'Returns a TidyNode Object starting from the <HTML> tag of the tidy parse tree',
15275 15275
   ),
15276 15276
   'tidy_get_head' => 
15277
-  array (
15277
+  array(
15278 15278
     'return' => 'TidyNode',
15279 15279
     'params' => '',
15280 15280
     'description' => 'Returns a TidyNode Object starting from the <HEAD> tag of the tidy parse tree',
15281 15281
   ),
15282 15282
   'tidy_get_body' => 
15283
-  array (
15283
+  array(
15284 15284
     'return' => 'TidyNode',
15285 15285
     'params' => 'resource tidy',
15286 15286
     'description' => 'Returns a TidyNode Object starting from the <BODY> tag of the tidy parse tree',
15287 15287
   ),
15288 15288
   'tidyNode::hasChildren' => 
15289
-  array (
15289
+  array(
15290 15290
     'return' => 'boolean',
15291 15291
     'params' => '',
15292 15292
     'description' => 'Returns true if this node has children',
15293 15293
   ),
15294 15294
   'tidyNode::hasSiblings' => 
15295
-  array (
15295
+  array(
15296 15296
     'return' => 'boolean',
15297 15297
     'params' => '',
15298 15298
     'description' => 'Returns true if this node has siblings',
15299 15299
   ),
15300 15300
   'tidyNode::isComment' => 
15301
-  array (
15301
+  array(
15302 15302
     'return' => 'boolean',
15303 15303
     'params' => '',
15304 15304
     'description' => 'Returns true if this node represents a comment',
15305 15305
   ),
15306 15306
   'tidyNode::isHtml' => 
15307
-  array (
15307
+  array(
15308 15308
     'return' => 'boolean',
15309 15309
     'params' => '',
15310 15310
     'description' => 'Returns true if this node is part of a HTML document',
15311 15311
   ),
15312 15312
   'tidyNode::isXhtml' => 
15313
-  array (
15313
+  array(
15314 15314
     'return' => 'boolean',
15315 15315
     'params' => '',
15316 15316
     'description' => 'Returns true if this node is part of a XHTML document',
15317 15317
   ),
15318 15318
   'tidyNode::isXml' => 
15319
-  array (
15319
+  array(
15320 15320
     'return' => 'boolean',
15321 15321
     'params' => '',
15322 15322
     'description' => 'Returns true if this node is part of a XML document',
15323 15323
   ),
15324 15324
   'tidyNode::isText' => 
15325
-  array (
15325
+  array(
15326 15326
     'return' => 'boolean',
15327 15327
     'params' => '',
15328 15328
     'description' => 'Returns true if this node represents text (no markup)',
15329 15329
   ),
15330 15330
   'tidyNode::isJste' => 
15331
-  array (
15331
+  array(
15332 15332
     'return' => 'boolean',
15333 15333
     'params' => '',
15334 15334
     'description' => 'Returns true if this node is JSTE',
15335 15335
   ),
15336 15336
   'tidyNode::isAsp' => 
15337
-  array (
15337
+  array(
15338 15338
     'return' => 'boolean',
15339 15339
     'params' => '',
15340 15340
     'description' => 'Returns true if this node is ASP',
15341 15341
   ),
15342 15342
   'tidyNode::isPhp' => 
15343
-  array (
15343
+  array(
15344 15344
     'return' => 'boolean',
15345 15345
     'params' => '',
15346 15346
     'description' => 'Returns true if this node is PHP',
15347 15347
   ),
15348 15348
   'smfi_setflags' => 
15349
-  array (
15349
+  array(
15350 15350
     'return' => 'string',
15351 15351
     'params' => 'long flags',
15352 15352
     'description' => 'Sets the flags describing the actions the filter may take.',
15353 15353
   ),
15354 15354
   'smfi_settimeout' => 
15355
-  array (
15355
+  array(
15356 15356
     'return' => 'string',
15357 15357
     'params' => 'long timeout',
15358 15358
     'description' => 'Sets the number of seconds libmilter will wait for an MTA connection before timing out a socket.',
15359 15359
   ),
15360 15360
   'smfi_getsymval' => 
15361
-  array (
15361
+  array(
15362 15362
     'return' => 'string',
15363 15363
     'params' => 'string macro',
15364 15364
     'description' => 'Returns the value of the given macro or NULL if the macro is not defined.',
15365 15365
   ),
15366 15366
   'smfi_setreply' => 
15367
-  array (
15367
+  array(
15368 15368
     'return' => 'string',
15369 15369
     'params' => 'string rcode, string xcode, string message',
15370 15370
     'description' => 'Directly set the SMTP error reply code for this connection.This code will be used on subsequent error replies resulting from actions taken by this filter.',
15371 15371
   ),
15372 15372
   'smfi_addheader' => 
15373
-  array (
15373
+  array(
15374 15374
     'return' => 'string',
15375 15375
     'params' => 'string headerf, string headerv',
15376 15376
     'description' => 'Adds a header to the current message.',
15377 15377
   ),
15378 15378
   'smfi_chgheader' => 
15379
-  array (
15379
+  array(
15380 15380
     'return' => 'string',
15381 15381
     'params' => 'string headerf, string headerv',
15382 15382
     'description' => 'Changes a header\'s value for the current message.',
15383 15383
   ),
15384 15384
   'smfi_addrcpt' => 
15385
-  array (
15385
+  array(
15386 15386
     'return' => 'string',
15387 15387
     'params' => 'string rcpt',
15388 15388
     'description' => 'Add a recipient to the message envelope.',
15389 15389
   ),
15390 15390
   'smfi_delrcpt' => 
15391
-  array (
15391
+  array(
15392 15392
     'return' => 'string',
15393 15393
     'params' => 'string rcpt',
15394 15394
     'description' => 'Removes the named recipient from the current message\'s envelope.',
15395 15395
   ),
15396 15396
   'smfi_replacebody' => 
15397
-  array (
15397
+  array(
15398 15398
     'return' => 'string',
15399 15399
     'params' => 'string body',
15400 15400
     'description' => 'Replaces the body of the current message. If called more than once,subsequent calls result in data being appended to the new body.',
15401 15401
   ),
15402 15402
   'virtual' => 
15403
-  array (
15403
+  array(
15404 15404
     'return' => 'bool',
15405 15405
     'params' => 'string filename',
15406 15406
     'description' => 'Perform an Apache sub-request',
15407 15407
   ),
15408 15408
   'getallheaders' => 
15409
-  array (
15409
+  array(
15410 15410
     'return' => 'array',
15411 15411
     'params' => 'void',
15412 15412
     'description' => 'Alias for apache_request_headers()',
15413 15413
   ),
15414 15414
   'apache_response_headers' => 
15415
-  array (
15415
+  array(
15416 15416
     'return' => 'array',
15417 15417
     'params' => 'void',
15418 15418
     'description' => 'Fetch all HTTP response headers',
15419 15419
   ),
15420 15420
   'apache_note' => 
15421
-  array (
15421
+  array(
15422 15422
     'return' => 'string',
15423 15423
     'params' => 'string note_name [, string note_value]',
15424 15424
     'description' => 'Get and set Apache request notes',
15425 15425
   ),
15426 15426
   'apache_setenv' => 
15427
-  array (
15427
+  array(
15428 15428
     'return' => 'bool',
15429 15429
     'params' => 'string variable, string value [, bool walk_to_top]',
15430 15430
     'description' => 'Set an Apache subprocess_env variable',
15431 15431
   ),
15432 15432
   'apache_getenv' => 
15433
-  array (
15433
+  array(
15434 15434
     'return' => 'bool',
15435 15435
     'params' => 'string variable [, bool walk_to_top]',
15436 15436
     'description' => 'Get an Apache subprocess_env variable',
15437 15437
   ),
15438 15438
   'apache_get_version' => 
15439
-  array (
15439
+  array(
15440 15440
     'return' => 'string',
15441 15441
     'params' => 'void',
15442 15442
     'description' => 'Fetch Apache version',
15443 15443
   ),
15444 15444
   'apache_get_modules' => 
15445
-  array (
15445
+  array(
15446 15446
     'return' => 'array',
15447 15447
     'params' => 'void',
15448 15448
     'description' => 'Get a list of loaded Apache modules',
15449 15449
   ),
15450 15450
   'nsapi_virtual' => 
15451
-  array (
15451
+  array(
15452 15452
     'return' => 'bool',
15453 15453
     'params' => 'string uri',
15454 15454
     'description' => 'Perform an NSAPI sub-request',
15455 15455
   ),
15456 15456
   'nsapi_request_headers' => 
15457
-  array (
15457
+  array(
15458 15458
     'return' => 'array',
15459 15459
     'params' => 'void',
15460 15460
     'description' => 'Get all headers from the request',
15461 15461
   ),
15462 15462
   'nsapi_response_headers' => 
15463
-  array (
15463
+  array(
15464 15464
     'return' => 'array',
15465 15465
     'params' => 'void',
15466 15466
     'description' => 'Get all headers from the response',
15467 15467
   ),
15468 15468
   'ApacheRequest::filename' => 
15469
-  array (
15469
+  array(
15470 15470
     'return' => 'string',
15471 15471
     'params' => '[string new_filename]',
15472 15472
     'description' => '',
15473 15473
   ),
15474 15474
   'ApacheRequest::uri' => 
15475
-  array (
15475
+  array(
15476 15476
     'return' => 'string',
15477 15477
     'params' => '[string new_uri]',
15478 15478
     'description' => '',
15479 15479
   ),
15480 15480
   'ApacheRequest::unparsed_uri' => 
15481
-  array (
15481
+  array(
15482 15482
     'return' => 'string',
15483 15483
     'params' => '[string new_unparsed_uri]',
15484 15484
     'description' => '',
15485 15485
   ),
15486 15486
   'ApacheRequest::path_info' => 
15487
-  array (
15487
+  array(
15488 15488
     'return' => 'string',
15489 15489
     'params' => '[string new_path_info]',
15490 15490
     'description' => '',
15491 15491
   ),
15492 15492
   'ApacheRequest::args' => 
15493
-  array (
15493
+  array(
15494 15494
     'return' => 'string',
15495 15495
     'params' => '[string new_args]',
15496 15496
     'description' => '',
15497 15497
   ),
15498 15498
   'ApacheRequest::boundary' => 
15499
-  array (
15499
+  array(
15500 15500
     'return' => 'string',
15501 15501
     'params' => '',
15502 15502
     'description' => '',
15503 15503
   ),
15504 15504
   'ApacheRequest::content_type' => 
15505
-  array (
15505
+  array(
15506 15506
     'return' => 'string',
15507 15507
     'params' => '[string new_type]',
15508 15508
     'description' => '',
15509 15509
   ),
15510 15510
   'ApacheRequest::content_encoding' => 
15511
-  array (
15511
+  array(
15512 15512
     'return' => 'string',
15513 15513
     'params' => '[string new_encoding]',
15514 15514
     'description' => '',
15515 15515
   ),
15516 15516
   'ApacheRequest::handler' => 
15517
-  array (
15517
+  array(
15518 15518
     'return' => 'string',
15519 15519
     'params' => '[string new_handler]',
15520 15520
     'description' => '',
15521 15521
   ),
15522 15522
   'ApacheRequest::the_request' => 
15523
-  array (
15523
+  array(
15524 15524
     'return' => 'string',
15525 15525
     'params' => '',
15526 15526
     'description' => '',
15527 15527
   ),
15528 15528
   'ApacheRequest::protocol' => 
15529
-  array (
15529
+  array(
15530 15530
     'return' => 'string',
15531 15531
     'params' => '',
15532 15532
     'description' => '',
15533 15533
   ),
15534 15534
   'ApacheRequest::hostname' => 
15535
-  array (
15535
+  array(
15536 15536
     'return' => 'string',
15537 15537
     'params' => '',
15538 15538
     'description' => '',
15539 15539
   ),
15540 15540
   'ApacheRequest::status_line' => 
15541
-  array (
15541
+  array(
15542 15542
     'return' => 'string',
15543 15543
     'params' => '[string new_status_line]',
15544 15544
     'description' => '',
15545 15545
   ),
15546 15546
   'ApacheRequest::method' => 
15547
-  array (
15547
+  array(
15548 15548
     'return' => 'string',
15549 15549
     'params' => '',
15550 15550
     'description' => '',
15551 15551
   ),
15552 15552
   'ApacheRequest::proto_num' => 
15553
-  array (
15553
+  array(
15554 15554
     'return' => 'int',
15555 15555
     'params' => '',
15556 15556
     'description' => '',
15557 15557
   ),
15558 15558
   'ApacheRequest::assbackwards' => 
15559
-  array (
15559
+  array(
15560 15560
     'return' => 'int',
15561 15561
     'params' => '',
15562 15562
     'description' => '',
15563 15563
   ),
15564 15564
   'ApacheRequest::proxyreq' => 
15565
-  array (
15565
+  array(
15566 15566
     'return' => 'int',
15567 15567
     'params' => '[int new_proxyreq]',
15568 15568
     'description' => '',
15569 15569
   ),
15570 15570
   'ApacheRequest::chunked' => 
15571
-  array (
15571
+  array(
15572 15572
     'return' => 'int',
15573 15573
     'params' => '',
15574 15574
     'description' => '',
15575 15575
   ),
15576 15576
   'ApacheRequest::header_only' => 
15577
-  array (
15577
+  array(
15578 15578
     'return' => 'int',
15579 15579
     'params' => '',
15580 15580
     'description' => '',
15581 15581
   ),
15582 15582
   'ApacheRequest::request_time' => 
15583
-  array (
15583
+  array(
15584 15584
     'return' => 'int',
15585 15585
     'params' => '',
15586 15586
     'description' => '',
15587 15587
   ),
15588 15588
   'ApacheRequest::status' => 
15589
-  array (
15589
+  array(
15590 15590
     'return' => 'int',
15591 15591
     'params' => '[int new_status]',
15592 15592
     'description' => '',
15593 15593
   ),
15594 15594
   'ApacheRequest::method_number' => 
15595
-  array (
15595
+  array(
15596 15596
     'return' => 'int',
15597 15597
     'params' => '[int method_number]',
15598 15598
     'description' => '',
15599 15599
   ),
15600 15600
   'ApacheRequest::allowed' => 
15601
-  array (
15601
+  array(
15602 15602
     'return' => 'int',
15603 15603
     'params' => '[int allowed]',
15604 15604
     'description' => '',
15605 15605
   ),
15606 15606
   'ApacheRequest::bytes_sent' => 
15607
-  array (
15607
+  array(
15608 15608
     'return' => 'int',
15609 15609
     'params' => '',
15610 15610
     'description' => '',
15611 15611
   ),
15612 15612
   'ApacheRequest::mtime' => 
15613
-  array (
15613
+  array(
15614 15614
     'return' => 'int',
15615 15615
     'params' => '',
15616 15616
     'description' => '',
15617 15617
   ),
15618 15618
   'ApacheRequest::content_length' => 
15619
-  array (
15619
+  array(
15620 15620
     'return' => 'int',
15621 15621
     'params' => '[int new_content_length]',
15622 15622
     'description' => '',
15623 15623
   ),
15624 15624
   'ApacheRequest::remaining' => 
15625
-  array (
15625
+  array(
15626 15626
     'return' => 'int',
15627 15627
     'params' => '',
15628 15628
     'description' => '',
15629 15629
   ),
15630 15630
   'ApacheRequest::no_cache' => 
15631
-  array (
15631
+  array(
15632 15632
     'return' => 'int',
15633 15633
     'params' => '',
15634 15634
     'description' => '',
15635 15635
   ),
15636 15636
   'ApacheRequest::no_local_copy' => 
15637
-  array (
15637
+  array(
15638 15638
     'return' => 'int',
15639 15639
     'params' => '',
15640 15640
     'description' => '',
15641 15641
   ),
15642 15642
   'ApacheRequest::read_body' => 
15643
-  array (
15643
+  array(
15644 15644
     'return' => 'int',
15645 15645
     'params' => '',
15646 15646
     'description' => '',
15647 15647
   ),
15648 15648
   'apache_request_headers_in' => 
15649
-  array (
15649
+  array(
15650 15650
     'return' => 'array',
15651 15651
     'params' => '',
15652 15652
     'description' => '* fetch all incoming request headers',
15653 15653
   ),
15654 15654
   'apache_request_headers_out' => 
15655
-  array (
15655
+  array(
15656 15656
     'return' => 'array',
15657 15657
     'params' => '[{string name|array list} [, string value [, bool replace = false]]]',
15658 15658
     'description' => '* fetch all outgoing request headers',
15659 15659
   ),
15660 15660
   'apache_request_err_headers_out' => 
15661
-  array (
15661
+  array(
15662 15662
     'return' => 'array',
15663 15663
     'params' => '[{string name|array list} [, string value [, bool replace = false]]]',
15664 15664
     'description' => '* fetch all headers that go out in case of an error or a subrequest',
15665 15665
   ),
15666 15666
   'apache_request_server_port' => 
15667
-  array (
15667
+  array(
15668 15668
     'return' => 'int',
15669 15669
     'params' => '',
15670 15670
     'description' => '',
15671 15671
   ),
15672 15672
   'apache_request_remote_host' => 
15673
-  array (
15673
+  array(
15674 15674
     'return' => 'int',
15675 15675
     'params' => '[int type]',
15676 15676
     'description' => '',
15677 15677
   ),
15678 15678
   'apache_request_update_mtime' => 
15679
-  array (
15679
+  array(
15680 15680
     'return' => 'long',
15681 15681
     'params' => '[int dependency_mtime]',
15682 15682
     'description' => '',
15683 15683
   ),
15684 15684
   'apache_request_set_etag' => 
15685
-  array (
15685
+  array(
15686 15686
     'return' => 'void',
15687 15687
     'params' => '',
15688 15688
     'description' => '',
15689 15689
   ),
15690 15690
   'apache_request_set_last_modified' => 
15691
-  array (
15691
+  array(
15692 15692
     'return' => 'void',
15693 15693
     'params' => '',
15694 15694
     'description' => '',
15695 15695
   ),
15696 15696
   'apache_request_meets_conditions' => 
15697
-  array (
15697
+  array(
15698 15698
     'return' => 'long',
15699 15699
     'params' => '',
15700 15700
     'description' => '',
15701 15701
   ),
15702 15702
   'apache_request_discard_request_body' => 
15703
-  array (
15703
+  array(
15704 15704
     'return' => 'long',
15705 15705
     'params' => '',
15706 15706
     'description' => '',
15707 15707
   ),
15708 15708
   'apache_request_satisfies' => 
15709
-  array (
15709
+  array(
15710 15710
     'return' => 'long',
15711 15711
     'params' => '',
15712 15712
     'description' => '',
15713 15713
   ),
15714 15714
   'apache_request_is_initial_req' => 
15715
-  array (
15715
+  array(
15716 15716
     'return' => 'bool',
15717 15717
     'params' => '',
15718 15718
     'description' => '',
15719 15719
   ),
15720 15720
   'apache_request_some_auth_required' => 
15721
-  array (
15721
+  array(
15722 15722
     'return' => 'bool',
15723 15723
     'params' => '',
15724 15724
     'description' => '',
15725 15725
   ),
15726 15726
   'apache_request_auth_type' => 
15727
-  array (
15727
+  array(
15728 15728
     'return' => 'string',
15729 15729
     'params' => '',
15730 15730
     'description' => '',
15731 15731
   ),
15732 15732
   'apache_request_auth_name' => 
15733
-  array (
15733
+  array(
15734 15734
     'return' => 'string',
15735 15735
     'params' => '',
15736 15736
     'description' => '',
15737 15737
   ),
15738 15738
   'apache_request_log_error' => 
15739
-  array (
15739
+  array(
15740 15740
     'return' => 'boolean',
15741 15741
     'params' => 'string message, [long facility]',
15742 15742
     'description' => '',
15743 15743
   ),
15744 15744
   'apache_request_sub_req_lookup_uri' => 
15745
-  array (
15745
+  array(
15746 15746
     'return' => 'object',
15747 15747
     'params' => 'string uri',
15748 15748
     'description' => 'Returns sub-request for the specified uri.  You wouldneed to run it yourself with run()',
15749 15749
   ),
15750 15750
   'apache_request_sub_req_lookup_file' => 
15751
-  array (
15751
+  array(
15752 15752
     'return' => 'object',
15753 15753
     'params' => 'string file',
15754 15754
     'description' => 'Returns sub-request for the specified file.  You wouldneed to run it yourself with run().',
15755 15755
   ),
15756 15756
   'apache_request_sub_req_method_uri' => 
15757
-  array (
15757
+  array(
15758 15758
     'return' => 'object',
15759 15759
     'params' => 'string method, string uri',
15760 15760
     'description' => 'Returns sub-request for the specified file.  You wouldneed to run it yourself with run().',
15761 15761
   ),
15762 15762
   'apache_request_run' => 
15763
-  array (
15763
+  array(
15764 15764
     'return' => 'long',
15765 15765
     'params' => '',
15766 15766
     'description' => 'This is a wrapper for ap_sub_run_req and ap_destory_sub_req.  It takessub_request, runs it, destroys it, and returns it\'s status.',
15767 15767
   ),
15768 15768
   'apache_child_terminate' => 
15769
-  array (
15769
+  array(
15770 15770
     'return' => 'bool',
15771 15771
     'params' => 'void',
15772 15772
     'description' => 'Terminate apache process after this request',
15773 15773
   ),
15774 15774
   'apache_request_headers' => 
15775
-  array (
15775
+  array(
15776 15776
     'return' => 'array',
15777 15777
     'params' => 'void',
15778 15778
     'description' => 'Fetch all HTTP request headers',
15779 15779
   ),
15780 15780
   'apache_lookup_uri' => 
15781
-  array (
15781
+  array(
15782 15782
     'return' => 'object',
15783 15783
     'params' => 'string URI',
15784 15784
     'description' => 'Perform a partial request of the given URI to obtain information about it',
15785 15785
   ),
15786 15786
   'apache_reset_timeout' => 
15787
-  array (
15787
+  array(
15788 15788
     'return' => 'bool',
15789 15789
     'params' => 'void',
15790 15790
     'description' => 'Reset the Apache write timer',
15791 15791
   ),
15792 15792
   'stream_wrapper_register' => 
15793
-  array (
15793
+  array(
15794 15794
     'return' => 'bool',
15795 15795
     'params' => 'string protocol, string classname',
15796 15796
     'description' => 'Registers a custom URL protocol handler class',
15797 15797
   ),
15798 15798
   'stream_wrapper_unregister' => 
15799
-  array (
15799
+  array(
15800 15800
     'return' => 'bool',
15801 15801
     'params' => 'string protocol',
15802 15802
     'description' => 'Unregister a wrapper for the life of the current request.',
15803 15803
   ),
15804 15804
   'stream_wrapper_restore' => 
15805
-  array (
15805
+  array(
15806 15806
     'return' => 'bool',
15807 15807
     'params' => 'string protocol',
15808 15808
     'description' => 'Restore the original protocol handler, overriding if necessary',
15809 15809
   ),
15810 15810
   'set_time_limit' => 
15811
-  array (
15811
+  array(
15812 15812
     'return' => 'bool',
15813 15813
     'params' => 'int seconds',
15814 15814
     'description' => 'Sets the maximum time a script can run',
15815 15815
   ),
15816 15816
   'ob_list_handlers' => 
15817
-  array (
15817
+  array(
15818 15818
     'return' => 'false|array',
15819 15819
     'params' => '',
15820 15820
     'description' => '*  List all output_buffers in an array',
15821 15821
   ),
15822 15822
   'ob_start' => 
15823
-  array (
15823
+  array(
15824 15824
     'return' => 'bool',
15825 15825
     'params' => '[ string|array user_function [, int chunk_size [, bool erase]]]',
15826 15826
     'description' => 'Turn on Output Buffering (specifying an optional output handler).',
15827 15827
   ),
15828 15828
   'ob_flush' => 
15829
-  array (
15829
+  array(
15830 15830
     'return' => 'bool',
15831 15831
     'params' => 'void',
15832 15832
     'description' => 'Flush (send) contents of the output buffer. The last buffer content is sent to next buffer',
15833 15833
   ),
15834 15834
   'ob_clean' => 
15835
-  array (
15835
+  array(
15836 15836
     'return' => 'bool',
15837 15837
     'params' => 'void',
15838 15838
     'description' => 'Clean (delete) the current output buffer',
15839 15839
   ),
15840 15840
   'ob_end_flush' => 
15841
-  array (
15841
+  array(
15842 15842
     'return' => 'bool',
15843 15843
     'params' => 'void',
15844 15844
     'description' => 'Flush (send) the output buffer, and delete current output buffer',
15845 15845
   ),
15846 15846
   'ob_end_clean' => 
15847
-  array (
15847
+  array(
15848 15848
     'return' => 'bool',
15849 15849
     'params' => 'void',
15850 15850
     'description' => 'Clean the output buffer, and delete current output buffer',
15851 15851
   ),
15852 15852
   'ob_get_flush' => 
15853
-  array (
15853
+  array(
15854 15854
     'return' => 'bool',
15855 15855
     'params' => 'void',
15856 15856
     'description' => 'Get current buffer contents, flush (send) the output buffer, and delete current output buffer',
15857 15857
   ),
15858 15858
   'ob_get_clean' => 
15859
-  array (
15859
+  array(
15860 15860
     'return' => 'bool',
15861 15861
     'params' => 'void',
15862 15862
     'description' => 'Get current buffer contents and delete current output buffer',
15863 15863
   ),
15864 15864
   'ob_get_contents' => 
15865
-  array (
15865
+  array(
15866 15866
     'return' => 'string',
15867 15867
     'params' => 'void',
15868 15868
     'description' => 'Return the contents of the output buffer',
15869 15869
   ),
15870 15870
   'ob_get_level' => 
15871
-  array (
15871
+  array(
15872 15872
     'return' => 'int',
15873 15873
     'params' => 'void',
15874 15874
     'description' => 'Return the nesting level of the output buffer',
15875 15875
   ),
15876 15876
   'ob_get_length' => 
15877
-  array (
15877
+  array(
15878 15878
     'return' => 'int',
15879 15879
     'params' => 'void',
15880 15880
     'description' => 'Return the length of the output buffer',
15881 15881
   ),
15882 15882
   'ob_get_status' => 
15883
-  array (
15883
+  array(
15884 15884
     'return' => 'false|array',
15885 15885
     'params' => '[bool full_status]',
15886 15886
     'description' => 'Return the status of the active or all output buffers',
15887 15887
   ),
15888 15888
   'ob_implicit_flush' => 
15889
-  array (
15889
+  array(
15890 15890
     'return' => 'void',
15891 15891
     'params' => '[int flag]',
15892 15892
     'description' => 'Turn implicit flush on/off and is equivalent to calling flush() after every output call',
15893 15893
   ),
15894 15894
   'output_reset_rewrite_vars' => 
15895
-  array (
15895
+  array(
15896 15896
     'return' => 'bool',
15897 15897
     'params' => 'void',
15898 15898
     'description' => 'Reset(clear) URL rewriter values',
15899 15899
   ),
15900 15900
   'output_add_rewrite_var' => 
15901
-  array (
15901
+  array(
15902 15902
     'return' => 'bool',
15903 15903
     'params' => 'string name, string value',
15904 15904
     'description' => 'Add URL rewriter values',
15905 15905
   ),
15906 15906
   'zend_version' => 
15907
-  array (
15907
+  array(
15908 15908
     'return' => 'string',
15909 15909
     'params' => 'void',
15910 15910
     'description' => 'Get the version of the Zend Engine',
15911 15911
   ),
15912 15912
   'func_num_args' => 
15913
-  array (
15913
+  array(
15914 15914
     'return' => 'int',
15915 15915
     'params' => 'void',
15916 15916
     'description' => 'Get the number of arguments that were passed to the function',
15917 15917
   ),
15918 15918
   'func_get_arg' => 
15919
-  array (
15919
+  array(
15920 15920
     'return' => 'mixed',
15921 15921
     'params' => 'int arg_num',
15922 15922
     'description' => 'Get the $arg_num\'th argument that was passed to the function',
15923 15923
   ),
15924 15924
   'func_get_args' => 
15925
-  array (
15925
+  array(
15926 15926
     'return' => 'array',
15927 15927
     'params' => '',
15928 15928
     'description' => 'Get an array of the arguments that were passed to the function',
15929 15929
   ),
15930 15930
   'strlen' => 
15931
-  array (
15931
+  array(
15932 15932
     'return' => 'int',
15933 15933
     'params' => 'string str',
15934 15934
     'description' => 'Get string length',
15935 15935
   ),
15936 15936
   'strcmp' => 
15937
-  array (
15937
+  array(
15938 15938
     'return' => 'int',
15939 15939
     'params' => 'string str1, string str2',
15940 15940
     'description' => 'Binary safe string comparison',
15941 15941
   ),
15942 15942
   'strncmp' => 
15943
-  array (
15943
+  array(
15944 15944
     'return' => 'int',
15945 15945
     'params' => 'string str1, string str2, int len',
15946 15946
     'description' => 'Binary safe string comparison',
15947 15947
   ),
15948 15948
   'strcasecmp' => 
15949
-  array (
15949
+  array(
15950 15950
     'return' => 'int',
15951 15951
     'params' => 'string str1, string str2',
15952 15952
     'description' => 'Binary safe case-insensitive string comparison',
15953 15953
   ),
15954 15954
   'strncasecmp' => 
15955
-  array (
15955
+  array(
15956 15956
     'return' => 'int',
15957 15957
     'params' => 'string str1, string str2, int len',
15958 15958
     'description' => 'Binary safe string comparison',
15959 15959
   ),
15960 15960
   'each' => 
15961
-  array (
15961
+  array(
15962 15962
     'return' => 'array',
15963 15963
     'params' => 'array arr',
15964 15964
     'description' => 'Return the currently pointed key..value pair in the passed array, and advance the pointer to the next element',
15965 15965
   ),
15966 15966
   'error_reporting' => 
15967
-  array (
15967
+  array(
15968 15968
     'return' => 'int',
15969 15969
     'params' => 'int new_error_level=null',
15970 15970
     'description' => 'Return the current error_reporting level, and if an argument was passed - change to the new level',
15971 15971
   ),
15972 15972
   'define' => 
15973
-  array (
15973
+  array(
15974 15974
     'return' => 'bool',
15975 15975
     'params' => 'string constant_name, mixed value, boolean case_sensitive=true',
15976 15976
     'description' => 'Define a new constant',
15977 15977
   ),
15978 15978
   'defined' => 
15979
-  array (
15979
+  array(
15980 15980
     'return' => 'bool',
15981 15981
     'params' => 'string constant_name',
15982 15982
     'description' => 'Check whether a constant exists',
15983 15983
   ),
15984 15984
   'get_class' => 
15985
-  array (
15985
+  array(
15986 15986
     'return' => 'string',
15987 15987
     'params' => '[object object]',
15988 15988
     'description' => 'Retrieves the class name',
15989 15989
   ),
15990 15990
   'get_parent_class' => 
15991
-  array (
15991
+  array(
15992 15992
     'return' => 'string',
15993 15993
     'params' => '[mixed object]',
15994 15994
     'description' => 'Retrieves the parent class name for object or class or current scope.',
15995 15995
   ),
15996 15996
   'is_subclass_of' => 
15997
-  array (
15997
+  array(
15998 15998
     'return' => 'bool',
15999 15999
     'params' => 'object object, string class_name',
16000 16000
     'description' => 'Returns true if the object has this class as one of its parents',
16001 16001
   ),
16002 16002
   'is_a' => 
16003
-  array (
16003
+  array(
16004 16004
     'return' => 'bool',
16005 16005
     'params' => 'object object, string class_name',
16006 16006
     'description' => 'Returns true if the object is of this class or has this class as one of its parents',
16007 16007
   ),
16008 16008
   'get_class_vars' => 
16009
-  array (
16009
+  array(
16010 16010
     'return' => 'array',
16011 16011
     'params' => 'string class_name',
16012 16012
     'description' => 'Returns an array of default properties of the class.',
16013 16013
   ),
16014 16014
   'get_object_vars' => 
16015
-  array (
16015
+  array(
16016 16016
     'return' => 'array',
16017 16017
     'params' => 'object obj',
16018 16018
     'description' => 'Returns an array of object properties',
16019 16019
   ),
16020 16020
   'get_class_methods' => 
16021
-  array (
16021
+  array(
16022 16022
     'return' => 'array',
16023 16023
     'params' => 'mixed class',
16024 16024
     'description' => 'Returns an array of method names for class or class instance.',
16025 16025
   ),
16026 16026
   'method_exists' => 
16027
-  array (
16027
+  array(
16028 16028
     'return' => 'bool',
16029 16029
     'params' => 'object object, string method',
16030 16030
     'description' => 'Checks if the class method exists',
16031 16031
   ),
16032 16032
   'property_exists' => 
16033
-  array (
16033
+  array(
16034 16034
     'return' => 'bool',
16035 16035
     'params' => 'mixed object_or_class, string property_name',
16036 16036
     'description' => 'Checks if the object or class has a property',
16037 16037
   ),
16038 16038
   'class_exists' => 
16039
-  array (
16039
+  array(
16040 16040
     'return' => 'bool',
16041 16041
     'params' => 'string classname [, bool autoload]',
16042 16042
     'description' => 'Checks if the class exists',
16043 16043
   ),
16044 16044
   'interface_exists' => 
16045
-  array (
16045
+  array(
16046 16046
     'return' => 'bool',
16047 16047
     'params' => 'string classname [, bool autoload]',
16048 16048
     'description' => 'Checks if the class exists',
16049 16049
   ),
16050 16050
   'function_exists' => 
16051
-  array (
16051
+  array(
16052 16052
     'return' => 'bool',
16053 16053
     'params' => 'string function_name',
16054 16054
     'description' => 'Checks if the function exists',
16055 16055
   ),
16056 16056
   'leak' => 
16057
-  array (
16057
+  array(
16058 16058
     'return' => 'void',
16059 16059
     'params' => 'int num_bytes=3',
16060 16060
     'description' => 'Cause an intentional memory leak, for testing/debugging purposes',
16061 16061
   ),
16062 16062
   'get_included_files' => 
16063
-  array (
16063
+  array(
16064 16064
     'return' => 'array',
16065 16065
     'params' => 'void',
16066 16066
     'description' => 'Returns an array with the file names that were include_once()\'d',
16067 16067
   ),
16068 16068
   'trigger_error' => 
16069
-  array (
16069
+  array(
16070 16070
     'return' => 'void',
16071 16071
     'params' => 'string messsage [, int error_type]',
16072 16072
     'description' => 'Generates a user-level error/warning/notice message',
16073 16073
   ),
16074 16074
   'set_error_handler' => 
16075
-  array (
16075
+  array(
16076 16076
     'return' => 'string',
16077 16077
     'params' => 'string error_handler [, int error_types]',
16078 16078
     'description' => 'Sets a user-defined error handler function.  Returns the previously defined error handler, or false on error',
16079 16079
   ),
16080 16080
   'restore_error_handler' => 
16081
-  array (
16081
+  array(
16082 16082
     'return' => 'void',
16083 16083
     'params' => 'void',
16084 16084
     'description' => 'Restores the previously defined error handler function',
16085 16085
   ),
16086 16086
   'set_exception_handler' => 
16087
-  array (
16087
+  array(
16088 16088
     'return' => 'string',
16089 16089
     'params' => 'callable exception_handler',
16090 16090
     'description' => 'Sets a user-defined exception handler function.  Returns the previously defined exception handler, or false on error',
16091 16091
   ),
16092 16092
   'restore_exception_handler' => 
16093
-  array (
16093
+  array(
16094 16094
     'return' => 'void',
16095 16095
     'params' => 'void',
16096 16096
     'description' => 'Restores the previously defined exception handler function',
16097 16097
   ),
16098 16098
   'get_declared_classes' => 
16099
-  array (
16099
+  array(
16100 16100
     'return' => 'array',
16101 16101
     'params' => '',
16102 16102
     'description' => 'Returns an array of all declared classes.',
16103 16103
   ),
16104 16104
   'get_declared_interfaces' => 
16105
-  array (
16105
+  array(
16106 16106
     'return' => 'array',
16107 16107
     'params' => '',
16108 16108
     'description' => 'Returns an array of all declared interfaces.',
16109 16109
   ),
16110 16110
   'get_defined_functions' => 
16111
-  array (
16111
+  array(
16112 16112
     'return' => 'array',
16113 16113
     'params' => 'void',
16114 16114
     'description' => 'Returns an array of all defined functions',
16115 16115
   ),
16116 16116
   'get_defined_vars' => 
16117
-  array (
16117
+  array(
16118 16118
     'return' => 'array',
16119 16119
     'params' => 'void',
16120 16120
     'description' => 'Returns an associative array of names and values of all currently defined variable names (variables in the current scope)',
16121 16121
   ),
16122 16122
   'create_function' => 
16123
-  array (
16123
+  array(
16124 16124
     'return' => 'string',
16125 16125
     'params' => 'string args, string code',
16126 16126
     'description' => 'Creates an anonymous function, and returns its name (funny, eh?)',
16127 16127
   ),
16128 16128
   'get_resource_type' => 
16129
-  array (
16129
+  array(
16130 16130
     'return' => 'string',
16131 16131
     'params' => 'resource res',
16132 16132
     'description' => 'Get the resource type name for a given resource',
16133 16133
   ),
16134 16134
   'get_loaded_extensions' => 
16135
-  array (
16135
+  array(
16136 16136
     'return' => 'array',
16137 16137
     'params' => 'void',
16138 16138
     'description' => 'Return an array containing names of loaded extensions',
16139 16139
   ),
16140 16140
   'get_defined_constants' => 
16141
-  array (
16141
+  array(
16142 16142
     'return' => 'array',
16143 16143
     'params' => 'void',
16144 16144
     'description' => 'Return an array containing the names and values of all defined constants',
16145 16145
   ),
16146 16146
   'debug_backtrace' => 
16147
-  array (
16147
+  array(
16148 16148
     'return' => 'array',
16149 16149
     'params' => 'void',
16150 16150
     'description' => 'Return backtrace as array',
16151 16151
   ),
16152 16152
   'extension_loaded' => 
16153
-  array (
16153
+  array(
16154 16154
     'return' => 'bool',
16155 16155
     'params' => 'string extension_name',
16156 16156
     'description' => 'Returns true if the named extension is loaded',
16157 16157
   ),
16158 16158
   'get_extension_funcs' => 
16159
-  array (
16159
+  array(
16160 16160
     'return' => 'array',
16161 16161
     'params' => 'string extension_name',
16162 16162
     'description' => 'Returns an array with the names of functions belonging to the named extension',
16163 16163
   ),
16164 16164
   'Exception::__clone' => 
16165
-  array (
16165
+  array(
16166 16166
     'return' => 'Exception',
16167 16167
     'params' => '',
16168 16168
     'description' => 'Clone the exception object',
16169 16169
   ),
16170 16170
   'Exception::getFile' => 
16171
-  array (
16171
+  array(
16172 16172
     'return' => 'string',
16173 16173
     'params' => '',
16174 16174
     'description' => 'Get the file in which the exception occurred',
16175 16175
   ),
16176 16176
   'Exception::getLine' => 
16177
-  array (
16177
+  array(
16178 16178
     'return' => 'int',
16179 16179
     'params' => '',
16180 16180
     'description' => 'Get the line in which the exception occurred',
16181 16181
   ),
16182 16182
   'Exception::getMessage' => 
16183
-  array (
16183
+  array(
16184 16184
     'return' => 'string',
16185 16185
     'params' => '',
16186 16186
     'description' => 'Get the exception message',
16187 16187
   ),
16188 16188
   'Exception::getCode' => 
16189
-  array (
16189
+  array(
16190 16190
     'return' => 'int',
16191 16191
     'params' => '',
16192 16192
     'description' => 'Get the exception code',
16193 16193
   ),
16194 16194
   'Exception::getTrace' => 
16195
-  array (
16195
+  array(
16196 16196
     'return' => 'array',
16197 16197
     'params' => '',
16198 16198
     'description' => 'Get the stack trace for the location in which the exception occurred',
16199 16199
   ),
16200 16200
   'ErrorException::getSeverity' => 
16201
-  array (
16201
+  array(
16202 16202
     'return' => 'int',
16203 16203
     'params' => '',
16204 16204
     'description' => 'Get the exception severity',
16205 16205
   ),
16206 16206
   'Exception::getTraceAsString' => 
16207
-  array (
16207
+  array(
16208 16208
     'return' => 'string',
16209 16209
     'params' => '',
16210 16210
     'description' => 'Obtain the backtrace for the exception as a string (instead of an array)',
16211 16211
   ),
16212 16212
   'Exception::__toString' => 
16213
-  array (
16213
+  array(
16214 16214
     'return' => 'string',
16215 16215
     'params' => '',
16216 16216
     'description' => 'Obtain the string representation of the Exception object',
16217 16217
   ),
16218
-)    ;
16218
+);
16219 16219
 
16220 16220
     public function get($k) {
16221 16221
         if (isset($this->prototype[$k])) {
Please login to merge, or discard this patch.
framework/3rdParty/PhpShell/PHP/Shell/Options.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once(dirname(__FILE__)."/Extensions.php"); /* for the PHP_Shell_Interface */
3
+require_once(dirname(__FILE__) . "/Extensions.php"); /* for the PHP_Shell_Interface */
4 4
 
5 5
 /**
6 6
 *
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
         }
108 108
 
109 109
         if (!isset($this->options[$opt_key])) {
110
-            print (':set '.$key.' failed: unknown key');
110
+            print (':set ' . $key . ' failed: unknown key');
111 111
             return;
112 112
         }
113 113
 
Please login to merge, or discard this patch.
framework/Security/TAuthManager.php 1 patch
Spacing   +77 added lines, -77 removed lines patch added patch discarded remove patch
@@ -44,11 +44,11 @@  discard block
 block discarded – undo
44 44
 	/**
45 45
 	 * GET variable name for return url
46 46
 	 */
47
-	const RETURN_URL_VAR='ReturnUrl';
47
+	const RETURN_URL_VAR = 'ReturnUrl';
48 48
 	/**
49 49
 	 * @var boolean if the module has been initialized
50 50
 	 */
51
-	private $_initialized=false;
51
+	private $_initialized = false;
52 52
 	/**
53 53
 	 * @var IUserManager user manager instance
54 54
 	 */
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 	/**
61 61
 	 * @var boolean whether authorization should be skipped
62 62
 	 */
63
-	private $_skipAuthorization=false;
63
+	private $_skipAuthorization = false;
64 64
 	/**
65 65
 	 * @var string the session var name for storing return URL
66 66
 	 */
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 	/**
69 69
 	 * @var boolean whether to allow auto login (using cookie)
70 70
 	 */
71
-	private $_allowAutoLogin=false;
71
+	private $_allowAutoLogin = false;
72 72
 	/**
73 73
 	 * @var string variable name used to store user session or cookie
74 74
 	 */
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 	/**
77 77
 	 * @var integer authentication expiration time in seconds. Defaults to zero (no expiration)
78 78
 	 */
79
-	private $_authExpire=0;
79
+	private $_authExpire = 0;
80 80
 
81 81
 	/**
82 82
 	 * Initializes this module.
@@ -86,23 +86,23 @@  discard block
 block discarded – undo
86 86
 	 */
87 87
 	public function init($config)
88 88
 	{
89
-		if($this->_userManager===null)
89
+		if ($this->_userManager === null)
90 90
 			throw new TConfigurationException('authmanager_usermanager_required');
91
-		if($this->_returnUrlVarName===null)
92
-			$this->_returnUrlVarName=$this->getApplication()->getID().':'.self::RETURN_URL_VAR;
93
-		$application=$this->getApplication();
94
-		if(is_string($this->_userManager))
91
+		if ($this->_returnUrlVarName === null)
92
+			$this->_returnUrlVarName = $this->getApplication()->getID() . ':' . self::RETURN_URL_VAR;
93
+		$application = $this->getApplication();
94
+		if (is_string($this->_userManager))
95 95
 		{
96
-			if(($users=$application->getModule($this->_userManager))===null)
97
-				throw new TConfigurationException('authmanager_usermanager_inexistent',$this->_userManager);
98
-			if(!($users instanceof IUserManager))
99
-				throw new TConfigurationException('authmanager_usermanager_invalid',$this->_userManager);
100
-			$this->_userManager=$users;
96
+			if (($users = $application->getModule($this->_userManager)) === null)
97
+				throw new TConfigurationException('authmanager_usermanager_inexistent', $this->_userManager);
98
+			if (!($users instanceof IUserManager))
99
+				throw new TConfigurationException('authmanager_usermanager_invalid', $this->_userManager);
100
+			$this->_userManager = $users;
101 101
 		}
102
-		$application->attachEventHandler('OnAuthentication',array($this,'doAuthentication'));
103
-		$application->attachEventHandler('OnEndRequest',array($this,'leave'));
104
-		$application->attachEventHandler('OnAuthorization',array($this,'doAuthorization'));
105
-		$this->_initialized=true;
102
+		$application->attachEventHandler('OnAuthentication', array($this, 'doAuthentication'));
103
+		$application->attachEventHandler('OnEndRequest', array($this, 'leave'));
104
+		$application->attachEventHandler('OnAuthorization', array($this, 'doAuthorization'));
105
+		$this->_initialized = true;
106 106
 	}
107 107
 
108 108
 	/**
@@ -119,11 +119,11 @@  discard block
 block discarded – undo
119 119
 	 */
120 120
 	public function setUserManager($provider)
121 121
 	{
122
-		if($this->_initialized)
122
+		if ($this->_initialized)
123 123
 			throw new TInvalidOperationException('authmanager_usermanager_unchangeable');
124
-		if(!is_string($provider) && !($provider instanceof IUserManager))
125
-			throw new TConfigurationException('authmanager_usermanager_invalid',$this->_userManager);
126
-		$this->_userManager=$provider;
124
+		if (!is_string($provider) && !($provider instanceof IUserManager))
125
+			throw new TConfigurationException('authmanager_usermanager_invalid', $this->_userManager);
126
+		$this->_userManager = $provider;
127 127
 	}
128 128
 
129 129
 	/**
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 	 */
143 143
 	public function setLoginPage($pagePath)
144 144
 	{
145
-		$this->_loginPage=$pagePath;
145
+		$this->_loginPage = $pagePath;
146 146
 	}
147 147
 
148 148
 	/**
@@ -152,13 +152,13 @@  discard block
 block discarded – undo
152 152
 	 * @param mixed sender of the Authentication event
153 153
 	 * @param mixed event parameter
154 154
 	 */
155
-	public function doAuthentication($sender,$param)
155
+	public function doAuthentication($sender, $param)
156 156
 	{
157 157
 		$this->onAuthenticate($param);
158 158
 
159
-		$service=$this->getService();
160
-		if(($service instanceof TPageService) && $service->getRequestedPagePath()===$this->getLoginPage())
161
-			$this->_skipAuthorization=true;
159
+		$service = $this->getService();
160
+		if (($service instanceof TPageService) && $service->getRequestedPagePath() === $this->getLoginPage())
161
+			$this->_skipAuthorization = true;
162 162
 	}
163 163
 
164 164
 	/**
@@ -168,9 +168,9 @@  discard block
 block discarded – undo
168 168
 	 * @param mixed sender of the Authorization event
169 169
 	 * @param mixed event parameter
170 170
 	 */
171
-	public function doAuthorization($sender,$param)
171
+	public function doAuthorization($sender, $param)
172 172
 	{
173
-		if(!$this->_skipAuthorization)
173
+		if (!$this->_skipAuthorization)
174 174
 		{
175 175
 			$this->onAuthorize($param);
176 176
 		}
@@ -183,17 +183,17 @@  discard block
 block discarded – undo
183 183
 	 * @param mixed sender of the event
184 184
 	 * @param mixed event parameter
185 185
 	 */
186
-	public function leave($sender,$param)
186
+	public function leave($sender, $param)
187 187
 	{
188
-		$application=$this->getApplication();
189
-		if($application->getResponse()->getStatusCode()===401)
188
+		$application = $this->getApplication();
189
+		if ($application->getResponse()->getStatusCode() === 401)
190 190
 		{
191
-			$service=$application->getService();
192
-			if($service instanceof TPageService)
191
+			$service = $application->getService();
192
+			if ($service instanceof TPageService)
193 193
 			{
194
-				$returnUrl=$application->getRequest()->getRequestUri();
194
+				$returnUrl = $application->getRequest()->getRequestUri();
195 195
 				$this->setReturnUrl($returnUrl);
196
-				$url=$service->constructUrl($this->getLoginPage());
196
+				$url = $service->constructUrl($this->getLoginPage());
197 197
 				$application->getResponse()->redirect($url);
198 198
 			}
199 199
 		}
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
 	 */
213 213
 	public function setReturnUrlVarName($value)
214 214
 	{
215
-		$this->_returnUrlVarName=$value;
215
+		$this->_returnUrlVarName = $value;
216 216
 	}
217 217
 
218 218
 	/**
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
 	 */
230 230
 	public function setReturnUrl($value)
231 231
 	{
232
-		$this->getSession()->add($this->getReturnUrlVarName(),$value);
232
+		$this->getSession()->add($this->getReturnUrlVarName(), $value);
233 233
 	}
234 234
 
235 235
 	/**
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
 	 */
248 248
 	public function setAllowAutoLogin($value)
249 249
 	{
250
-		$this->_allowAutoLogin=TPropertyValue::ensureBoolean($value);
250
+		$this->_allowAutoLogin = TPropertyValue::ensureBoolean($value);
251 251
 	}
252 252
 
253 253
 	/**
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
 	 */
266 266
 	public function setAuthExpire($value)
267 267
 	{
268
-		$this->_authExpire=TPropertyValue::ensureInteger($value);
268
+		$this->_authExpire = TPropertyValue::ensureInteger($value);
269 269
 	}
270 270
 
271 271
 	/**
@@ -278,28 +278,28 @@  discard block
 block discarded – undo
278 278
 	 */
279 279
 	public function onAuthenticate($param)
280 280
 	{
281
-		$application=$this->getApplication();
281
+		$application = $this->getApplication();
282 282
 
283 283
 		// restoring user info from session
284
-		if(($session=$application->getSession())===null)
284
+		if (($session = $application->getSession()) === null)
285 285
 			throw new TConfigurationException('authmanager_session_required');
286 286
 		$session->open();
287
-		$sessionInfo=$session->itemAt($this->getUserKey());
288
-		$user=$this->_userManager->getUser(null)->loadFromString($sessionInfo);
287
+		$sessionInfo = $session->itemAt($this->getUserKey());
288
+		$user = $this->_userManager->getUser(null)->loadFromString($sessionInfo);
289 289
 
290 290
 		// check for authentication expiration
291
-		$isAuthExpired = $this->_authExpire>0 && !$user->getIsGuest() &&
292
-        ($expiretime=$session->itemAt('AuthExpireTime')) && $expiretime<time();
291
+		$isAuthExpired = $this->_authExpire > 0 && !$user->getIsGuest() &&
292
+        ($expiretime = $session->itemAt('AuthExpireTime')) && $expiretime < time();
293 293
 
294 294
 		// try authenticating through cookie if possible
295
-		if($this->getAllowAutoLogin() && ($user->getIsGuest() || $isAuthExpired))
295
+		if ($this->getAllowAutoLogin() && ($user->getIsGuest() || $isAuthExpired))
296 296
 		{
297
-			$cookie=$this->getRequest()->getCookies()->itemAt($this->getUserKey());
298
-			if($cookie instanceof THttpCookie)
297
+			$cookie = $this->getRequest()->getCookies()->itemAt($this->getUserKey());
298
+			if ($cookie instanceof THttpCookie)
299 299
 			{
300
-				if(($user2=$this->_userManager->getUserFromCookie($cookie))!==null)
300
+				if (($user2 = $this->_userManager->getUserFromCookie($cookie)) !== null)
301 301
 				{
302
-					$user=$user2;
302
+					$user = $user2;
303 303
 					$this->updateSessionUser($user);
304 304
 					// user is restored from cookie, auth may not expire
305 305
 					$isAuthExpired = false;
@@ -310,14 +310,14 @@  discard block
 block discarded – undo
310 310
 		$application->setUser($user);
311 311
 
312 312
 		// handle authentication expiration or update expiration time
313
-		if($isAuthExpired)
313
+		if ($isAuthExpired)
314 314
 			$this->onAuthExpire($param);
315 315
 		else
316 316
 			$session->add('AuthExpireTime', time() + $this->_authExpire);
317 317
 
318 318
 		// event handler gets a chance to do further auth work
319
-		if($this->hasEventHandler('OnAuthenticate'))
320
-			$this->raiseEvent('OnAuthenticate',$this,$application);
319
+		if ($this->hasEventHandler('OnAuthenticate'))
320
+			$this->raiseEvent('OnAuthenticate', $this, $application);
321 321
 	}
322 322
 
323 323
 	/**
@@ -328,8 +328,8 @@  discard block
 block discarded – undo
328 328
 	public function onAuthExpire($param)
329 329
 	{
330 330
 		$this->logout();
331
-		if($this->hasEventHandler('OnAuthExpire'))
332
-			$this->raiseEvent('OnAuthExpire',$this,$param);
331
+		if ($this->hasEventHandler('OnAuthExpire'))
332
+			$this->raiseEvent('OnAuthExpire', $this, $param);
333 333
 	}
334 334
 
335 335
 	/**
@@ -341,10 +341,10 @@  discard block
 block discarded – undo
341 341
 	 */
342 342
 	public function onAuthorize($param)
343 343
 	{
344
-		$application=$this->getApplication();
345
-		if($this->hasEventHandler('OnAuthorize'))
346
-			$this->raiseEvent('OnAuthorize',$this,$application);
347
-		if(!$application->getAuthorizationRules()->isUserAllowed($application->getUser(),$application->getRequest()->getRequestType(),$application->getRequest()->getUserHostAddress()))
344
+		$application = $this->getApplication();
345
+		if ($this->hasEventHandler('OnAuthorize'))
346
+			$this->raiseEvent('OnAuthorize', $this, $application);
347
+		if (!$application->getAuthorizationRules()->isUserAllowed($application->getUser(), $application->getRequest()->getRequestType(), $application->getRequest()->getUserHostAddress()))
348 348
 		{
349 349
 			$application->getResponse()->setStatusCode(401);
350 350
 			$application->completeRequest();
@@ -357,8 +357,8 @@  discard block
 block discarded – undo
357 357
 	 */
358 358
 	public function getUserKey()
359 359
 	{
360
-		if($this->_userKey===null)
361
-			$this->_userKey=$this->generateUserKey();
360
+		if ($this->_userKey === null)
361
+			$this->_userKey = $this->generateUserKey();
362 362
 		return $this->_userKey;
363 363
 	}
364 364
 
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
 	 */
369 369
 	protected function generateUserKey()
370 370
 	{
371
-		return md5($this->getApplication()->getUniqueID().'prado:user');
371
+		return md5($this->getApplication()->getUniqueID() . 'prado:user');
372 372
 	}
373 373
 
374 374
 	/**
@@ -378,12 +378,12 @@  discard block
 block discarded – undo
378 378
 	 */
379 379
 	public function updateSessionUser($user)
380 380
 	{
381
-		if(!$user->getIsGuest())
381
+		if (!$user->getIsGuest())
382 382
 		{
383
-			if(($session=$this->getSession())===null)
383
+			if (($session = $this->getSession()) === null)
384 384
 				throw new TConfigurationException('authmanager_session_required');
385 385
 			else
386
-				$session->add($this->getUserKey(),$user->saveToString());
386
+				$session->add($this->getUserKey(), $user->saveToString());
387 387
 		}
388 388
 	}
389 389
 
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
 	 */
396 396
 	public function switchUser($username)
397 397
 	{
398
-		if(($user=$this->_userManager->getUser($username))===null)
398
+		if (($user = $this->_userManager->getUser($username)) === null)
399 399
 			return false;
400 400
 		$this->updateSessionUser($user);
401 401
 		$this->getApplication()->setUser($user);
@@ -411,19 +411,19 @@  discard block
 block discarded – undo
411 411
 	 * @param integer number of seconds that automatic login will remain effective. If 0, it means user logs out when session ends. This parameter is added since 3.1.1.
412 412
 	 * @return boolean if login is successful
413 413
 	 */
414
-	public function login($username,$password,$expire=0)
414
+	public function login($username, $password, $expire = 0)
415 415
 	{
416
-		if($this->_userManager->validateUser($username,$password))
416
+		if ($this->_userManager->validateUser($username, $password))
417 417
 		{
418
-			if(($user=$this->_userManager->getUser($username))===null)
418
+			if (($user = $this->_userManager->getUser($username)) === null)
419 419
 				return false;
420 420
 			$this->updateSessionUser($user);
421 421
 			$this->getApplication()->setUser($user);
422 422
 
423
-			if($expire>0)
423
+			if ($expire > 0)
424 424
 			{
425
-				$cookie=new THttpCookie($this->getUserKey(),'');
426
-				$cookie->setExpire(time()+$expire);
425
+				$cookie = new THttpCookie($this->getUserKey(), '');
426
+				$cookie->setExpire(time() + $expire);
427 427
 				$this->_userManager->saveUserToCookie($cookie);
428 428
 				$this->getResponse()->getCookies()->add($cookie);
429 429
 			}
@@ -440,13 +440,13 @@  discard block
 block discarded – undo
440 440
 	 */
441 441
 	public function logout()
442 442
 	{
443
-		if(($session=$this->getSession())===null)
443
+		if (($session = $this->getSession()) === null)
444 444
 			throw new TConfigurationException('authmanager_session_required');
445 445
 		$this->getApplication()->getUser()->setIsGuest(true);
446 446
 		$session->destroy();
447
-		if($this->getAllowAutoLogin())
447
+		if ($this->getAllowAutoLogin())
448 448
 		{
449
-			$cookie=new THttpCookie($this->getUserKey(),'');
449
+			$cookie = new THttpCookie($this->getUserKey(), '');
450 450
 			$this->getResponse()->getCookies()->add($cookie);
451 451
 		}
452 452
 	}
Please login to merge, or discard this patch.