]> git.sur5r.net Git - bacula/bacula/blob - gui/baculum/framework/3rdParty/PhpShell/PHP/Shell/Extensions/Prototypes.php
Update ReleaseNotes + ChangeLog
[bacula/bacula] / gui / baculum / framework / 3rdParty / PhpShell / PHP / Shell / Extensions / Prototypes.php
1 <?php
2 class PHP_ShellPrototypes {
3     static private $instance = null;
4
5     protected $prototype = array (
6   'XMLReader::close' => 
7   array (
8     'return' => 'boolean',
9     'params' => '',
10     'description' => 'Closes xmlreader - current frees resources until xmlTextReaderClose is fixed in libxml',
11   ),
12   'XMLReader::getAttribute' => 
13   array (
14     'return' => 'string',
15     'params' => 'string name',
16     'description' => 'Get value of an attribute from current element',
17   ),
18   'XMLReader::getAttributeNo' => 
19   array (
20     'return' => 'string',
21     'params' => 'int index',
22     'description' => 'Get value of an attribute at index from current element',
23   ),
24   'XMLReader::getAttributeNs' => 
25   array (
26     'return' => 'string',
27     'params' => 'string name, string namespaceURI',
28     'description' => 'Get value of a attribute via name and namespace from current element',
29   ),
30   'XMLReader::getParserProperty' => 
31   array (
32     'return' => 'boolean',
33     'params' => 'int property',
34     'description' => 'Indicates whether given property (one of the parser option constants) is set or not on parser',
35   ),
36   'XMLReader::isValid' => 
37   array (
38     'return' => 'boolean',
39     'params' => '',
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   ),
42   'XMLReader::lookupNamespace' => 
43   array (
44     'return' => 'string',
45     'params' => 'string prefix',
46     'description' => 'Return namespaceURI for associated prefix on current node',
47   ),
48   'XMLReader::moveToAttribute' => 
49   array (
50     'return' => 'boolean',
51     'params' => 'string name',
52     'description' => 'Positions reader at specified attribute - Returns TRUE on success and FALSE on failure',
53   ),
54   'XMLReader::moveToAttributeNo' => 
55   array (
56     'return' => 'boolean',
57     'params' => 'int index',
58     'description' => 'Positions reader at attribute at spcecified index.Returns TRUE on success and FALSE on failure',
59   ),
60   'XMLReader::moveToAttributeNs' => 
61   array (
62     'return' => 'boolean',
63     'params' => 'string name, string namespaceURI',
64     'description' => 'Positions reader at attribute spcified by name and namespaceURI.Returns TRUE on success and FALSE on failure',
65   ),
66   'XMLReader::moveToElement' => 
67   array (
68     'return' => 'boolean',
69     'params' => '',
70     'description' => 'Moves the position of the current instance to the node that contains the current Attribute node.',
71   ),
72   'XMLReader::moveToFirstAttribute' => 
73   array (
74     'return' => 'boolean',
75     'params' => '',
76     'description' => 'Moves the position of the current instance to the first attribute associated with the current node.',
77   ),
78   'XMLReader::moveToNextAttribute' => 
79   array (
80     'return' => 'boolean',
81     'params' => '',
82     'description' => 'Moves the position of the current instance to the next attribute associated with the current node.',
83   ),
84   'XMLReader::read' => 
85   array (
86     'return' => 'boolean',
87     'params' => '',
88     'description' => 'Moves the position of the current instance to the next node in the stream.',
89   ),
90   'XMLReader::next' => 
91   array (
92     'return' => 'boolean',
93     'params' => '[string localname]',
94     'description' => 'Moves the position of the current instance to the next node in the stream.',
95   ),
96   'XMLReader::open' => 
97   array (
98     'return' => 'boolean',
99     'params' => 'string URI',
100     'description' => 'Sets the URI that the the XMLReader will parse.',
101   ),
102   'XMLReader::setParserProperty' => 
103   array (
104     'return' => 'boolean',
105     'params' => 'int property, boolean value',
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   ),
108   'XMLReader::setRelaxNGSchemaSource' => 
109   array (
110     'return' => 'boolean',
111     'params' => 'string source',
112     'description' => 'Sets the string that the the XMLReader will parse.',
113   ),
114   'XMLReader::XML' => 
115   array (
116     'return' => 'boolean',
117     'params' => 'string source',
118     'description' => 'Sets the string that the the XMLReader will parse.',
119   ),
120   'XMLReader::expand' => 
121   array (
122     'return' => 'boolean',
123     'params' => '',
124     'description' => 'Moves the position of the current instance to the next node in the stream.',
125   ),
126   'SimpleXMLElement::asXML' => 
127   array (
128     'return' => 'string',
129     'params' => '[string filename]',
130     'description' => 'Return a well-formed XML string based on SimpleXML element',
131   ),
132   'SimpleXMLElement::getNamespaces' => 
133   array (
134     'return' => 'string',
135     'params' => '[bool recursve]',
136     'description' => 'Return all namespaces in use',
137   ),
138   'SimpleXMLElement::getDocNamespaces' => 
139   array (
140     'return' => 'string',
141     'params' => '[bool recursive]',
142     'description' => 'Return all namespaces registered with document',
143   ),
144   'SimpleXMLElement::children' => 
145   array (
146     'return' => 'object',
147     'params' => '[string ns]',
148     'description' => 'Finds children of given node',
149   ),
150   'SimpleXMLElement::getName' => 
151   array (
152     'return' => 'object',
153     'params' => '',
154     'description' => 'Finds children of given node',
155   ),
156   'SimpleXMLElement::attributes' => 
157   array (
158     'return' => 'array',
159     'params' => '[string ns]',
160     'description' => 'Identifies an element\'s attributes',
161   ),
162   'SimpleXMLElement::addChild' => 
163   array (
164     'return' => 'void',
165     'params' => 'string qName [, string value [,string ns]]',
166     'description' => 'Add Element with optional namespace information',
167   ),
168   'SimpleXMLElement::addAttribute' => 
169   array (
170     'return' => 'void',
171     'params' => 'string qName, string value [,string ns]',
172     'description' => 'Add Attribute with optional namespace information',
173   ),
174   'simplexml_load_file' => 
175   array (
176     'return' => 'simplemxml_element',
177     'params' => 'string filename [, string class_name [, int options]]',
178     'description' => 'Load a filename and return a simplexml_element object to allow for processing',
179   ),
180   'simplexml_load_string' => 
181   array (
182     'return' => 'simplemxml_element',
183     'params' => 'string data [, string class_name [, int options]]',
184     'description' => 'Load a string and return a simplexml_element object to allow for processing',
185   ),
186   'simplexml_import_dom' => 
187   array (
188     'return' => 'simplemxml_element',
189     'params' => 'domNode node [, string class_name]',
190     'description' => 'Get a simplexml_element object from dom to allow for processing',
191   ),
192   'snmpget' => 
193   array (
194     'return' => 'string',
195     'params' => 'string host, string community, string object_id [, int timeout [, int retries]]',
196     'description' => 'Fetch a SNMP object',
197   ),
198   'snmpgetnext' => 
199   array (
200     'return' => 'string',
201     'params' => 'string host, string community, string object_id [, int timeout [, int retries]]',
202     'description' => 'Fetch a SNMP object',
203   ),
204   'snmpwalk' => 
205   array (
206     'return' => 'array',
207     'params' => 'string host, string community, string object_id [, int timeout [, int retries]]',
208     'description' => 'Return all objects under the specified object id',
209   ),
210   'snmprealwalk' => 
211   array (
212     'return' => 'array',
213     'params' => 'string host, string community, string object_id [, int timeout [, int retries]]',
214     'description' => 'Return all objects including their respective object id withing the specified one',
215   ),
216   'snmp_get_quick_print' => 
217   array (
218     'return' => 'bool',
219     'params' => 'void',
220     'description' => 'Return the current status of quick_print',
221   ),
222   'snmp_set_quick_print' => 
223   array (
224     'return' => 'void',
225     'params' => 'int quick_print',
226     'description' => 'Return all objects including their respective object id withing the specified one',
227   ),
228   'snmp_set_enum_print' => 
229   array (
230     'return' => 'void',
231     'params' => 'int enum_print',
232     'description' => 'Return all values that are enums with their enum value instead of the raw integer',
233   ),
234   'snmp_set_oid_numeric_print' => 
235   array (
236     'return' => 'void',
237     'params' => 'int oid_numeric_print',
238     'description' => 'Return all objects including their respective object id withing the specified one',
239   ),
240   'snmpset' => 
241   array (
242     'return' => 'int',
243     'params' => 'string host, string community, string object_id, string type, mixed value [, int timeout [, int retries]]',
244     'description' => 'Set the value of a SNMP object',
245   ),
246   'snmp2_get' => 
247   array (
248     'return' => 'string',
249     'params' => 'string host, string community, string object_id [, int timeout [, int retries]]',
250     'description' => 'Fetch a SNMP object',
251   ),
252   'snmp2_getnext' => 
253   array (
254     'return' => 'string',
255     'params' => 'string host, string community, string object_id [, int timeout [, int retries]]',
256     'description' => 'Fetch a SNMP object',
257   ),
258   'snmp2_walk' => 
259   array (
260     'return' => 'array',
261     'params' => 'string host, string community, string object_id [, int timeout [, int retries]]',
262     'description' => 'Return all objects under the specified object id',
263   ),
264   'snmp2_real_walk' => 
265   array (
266     'return' => 'array',
267     'params' => 'string host, string community, string object_id [, int timeout [, int retries]]',
268     'description' => 'Return all objects including their respective object id withing the specified one',
269   ),
270   'snmp2_set' => 
271   array (
272     'return' => 'int',
273     'params' => 'string host, string community, string object_id, string type, mixed value [, int timeout [, int retries]]',
274     'description' => 'Set the value of a SNMP object',
275   ),
276   'php_snmpv3' => 
277   array (
278     'return' => 'void',
279     'params' => 'INTERNAL_FUNCTION_PARAMETERS, int st',
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   ),
282   'snmp3_get' => 
283   array (
284     'return' => 'int',
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     'description' => 'Fetch the value of a SNMP object',
287   ),
288   'snmp3_getnext' => 
289   array (
290     'return' => 'int',
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     'description' => 'Fetch the value of a SNMP object',
293   ),
294   'snmp3_walk' => 
295   array (
296     'return' => 'int',
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     'description' => 'Fetch the value of a SNMP object',
299   ),
300   'snmp3_real_walk' => 
301   array (
302     'return' => 'int',
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     'description' => 'Fetch the value of a SNMP object',
305   ),
306   'snmp3_set' => 
307   array (
308     'return' => 'int',
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     'description' => 'Fetch the value of a SNMP object',
311   ),
312   'snmp_set_valueretrieval' => 
313   array (
314     'return' => 'int',
315     'params' => 'int method',
316     'description' => 'Specify the method how the SNMP values will be returned',
317   ),
318   'snmp_get_valueretrieval' => 
319   array (
320     'return' => 'int',
321     'params' => '',
322     'description' => 'Return the method how the SNMP values will be returned',
323   ),
324   'snmp_read_mib' => 
325   array (
326     'return' => 'int',
327     'params' => 'string filename',
328     'description' => 'Reads and parses a MIB file into the active MIB tree.',
329   ),
330   'mysqli_embedded_server_start' => 
331   array (
332     'return' => 'bool',
333     'params' => 'bool start, array arguments, array groups',
334     'description' => 'initialize and start embedded server',
335   ),
336   'mysqli_embedded_server_end' => 
337   array (
338     'return' => 'void',
339     'params' => 'void',
340     'description' => '',
341   ),
342   'mysqli_connect' => 
343   array (
344     'return' => 'object',
345     'params' => '[string hostname [,string username [,string passwd [,string dbname [,int port [,string socket]]]]]]',
346     'description' => 'Open a connection to a mysql server',
347   ),
348   'mysqli_connect_errno' => 
349   array (
350     'return' => 'int',
351     'params' => 'void',
352     'description' => 'Returns the numerical value of the error message from last connect command',
353   ),
354   'mysqli_connect_error' => 
355   array (
356     'return' => 'string',
357     'params' => 'void',
358     'description' => 'Returns the text of the error message from previous MySQL operation',
359   ),
360   'mysqli_multi_query' => 
361   array (
362     'return' => 'bool',
363     'params' => 'object link, string query',
364     'description' => 'Binary-safe version of mysql_query()',
365   ),
366   'mysqli_set_charset' => 
367   array (
368     'return' => 'bool',
369     'params' => 'object link, string csname',
370     'description' => 'sets client character set',
371   ),
372   'mysqli_get_charset' => 
373   array (
374     'return' => 'object',
375     'params' => 'object link',
376     'description' => 'returns a character set object',
377   ),
378   'mysqli_affected_rows' => 
379   array (
380     'return' => 'mixed',
381     'params' => 'object link',
382     'description' => 'Get number of affected rows in previous MySQL operation',
383   ),
384   'mysqli_autocommit' => 
385   array (
386     'return' => 'bool',
387     'params' => 'object link, bool mode',
388     'description' => 'Turn auto commit on or of',
389   ),
390   'mysqli_stmt_bind_param' => 
391   array (
392     'return' => 'bool',
393     'params' => 'object stmt, string types, mixed variable [,mixed,....]',
394     'description' => 'Bind variables to a prepared statement as parameters',
395   ),
396   'mysqli_stmt_bind_result' => 
397   array (
398     'return' => 'bool',
399     'params' => 'object stmt, mixed var, [,mixed, ...]',
400     'description' => 'Bind variables to a prepared statement for result storage',
401   ),
402   'mysqli_change_user' => 
403   array (
404     'return' => 'bool',
405     'params' => 'object link, string user, string password, string database',
406     'description' => 'Change logged-in user of the active connection',
407   ),
408   'mysqli_character_set_name' => 
409   array (
410     'return' => 'string',
411     'params' => 'object link',
412     'description' => 'Returns the name of the character set used for this connection',
413   ),
414   'mysqli_close' => 
415   array (
416     'return' => 'bool',
417     'params' => 'object link',
418     'description' => 'Close connection',
419   ),
420   'mysqli_commit' => 
421   array (
422     'return' => 'bool',
423     'params' => 'object link',
424     'description' => 'Commit outstanding actions and close transaction',
425   ),
426   'mysqli_data_seek' => 
427   array (
428     'return' => 'bool',
429     'params' => 'object result, int offset',
430     'description' => 'Move internal result pointer',
431   ),
432   'mysqli_debug' => 
433   array (
434     'return' => 'void',
435     'params' => 'string debug',
436     'description' => '',
437   ),
438   'mysqli_dump_debug_info' => 
439   array (
440     'return' => 'bool',
441     'params' => 'object link',
442     'description' => '',
443   ),
444   'mysqli_errno' => 
445   array (
446     'return' => 'int',
447     'params' => 'object link',
448     'description' => 'Returns the numerical value of the error message from previous MySQL operation',
449   ),
450   'mysqli_error' => 
451   array (
452     'return' => 'string',
453     'params' => 'object link',
454     'description' => 'Returns the text of the error message from previous MySQL operation',
455   ),
456   'mysqli_stmt_execute' => 
457   array (
458     'return' => 'bool',
459     'params' => 'object stmt',
460     'description' => 'Execute a prepared statement',
461   ),
462   'mysqli_stmt_fetch' => 
463   array (
464     'return' => 'mixed',
465     'params' => 'object stmt',
466     'description' => 'Fetch results from a prepared statement into the bound variables',
467   ),
468   'mysqli_field_count' => 
469   array (
470     'return' => 'int',
471     'params' => 'object link',
472     'description' => 'Fetch the number of fields returned by the last query for the given link',
473   ),
474   'mysqli_field_seek' => 
475   array (
476     'return' => 'int',
477     'params' => 'object result, int fieldnr',
478     'description' => 'Set result pointer to a specified field offset',
479   ),
480   'mysqli_field_tell' => 
481   array (
482     'return' => 'int',
483     'params' => 'object result',
484     'description' => 'Get current field offset of result pointer',
485   ),
486   'mysqli_free_result' => 
487   array (
488     'return' => 'void',
489     'params' => 'object result',
490     'description' => 'Free query result memory for the given result handle',
491   ),
492   'mysqli_get_client_info' => 
493   array (
494     'return' => 'string',
495     'params' => 'void',
496     'description' => 'Get MySQL client info',
497   ),
498   'mysqli_get_client_version' => 
499   array (
500     'return' => 'int',
501     'params' => 'void',
502     'description' => 'Get MySQL client info',
503   ),
504   'mysqli_get_proto_info' => 
505   array (
506     'return' => 'int',
507     'params' => 'object link',
508     'description' => 'Get MySQL protocol information',
509   ),
510   'mysqli_get_server_info' => 
511   array (
512     'return' => 'string',
513     'params' => 'object link',
514     'description' => 'Get MySQL server info',
515   ),
516   'mysqli_get_server_version' => 
517   array (
518     'return' => 'int',
519     'params' => 'object link',
520     'description' => 'Return the MySQL version for the server referenced by the given link',
521   ),
522   'mysqli_info' => 
523   array (
524     'return' => 'string',
525     'params' => 'object link',
526     'description' => 'Get information about the most recent query',
527   ),
528   'mysqli_init' => 
529   array (
530     'return' => 'resource',
531     'params' => 'void',
532     'description' => 'Initialize mysqli and return a resource for use with mysql_real_connect',
533   ),
534   'mysqli_insert_id' => 
535   array (
536     'return' => 'mixed',
537     'params' => 'object link',
538     'description' => 'Get the ID generated from the previous INSERT operation',
539   ),
540   'mysqli_kill' => 
541   array (
542     'return' => 'bool',
543     'params' => 'object link, int processid',
544     'description' => 'Kill a mysql process on the server',
545   ),
546   'mysqli_set_local_infile_handler' => 
547   array (
548     'return' => 'bool',
549     'params' => 'object link, callback read_func',
550     'description' => 'Set callback functions for LOAD DATA LOCAL INFILE',
551   ),
552   'mysqli_more_results' => 
553   array (
554     'return' => 'bool',
555     'params' => 'object link',
556     'description' => 'check if there any more query results from a multi query',
557   ),
558   'mysqli_next_result' => 
559   array (
560     'return' => 'bool',
561     'params' => 'object link',
562     'description' => 'read next result from multi_query',
563   ),
564   'mysqli_num_fields' => 
565   array (
566     'return' => 'int',
567     'params' => 'object result',
568     'description' => 'Get number of fields in result',
569   ),
570   'mysqli_num_rows' => 
571   array (
572     'return' => 'mixed',
573     'params' => 'object result',
574     'description' => 'Get number of rows in result',
575   ),
576   'mysqli_options' => 
577   array (
578     'return' => 'bool',
579     'params' => 'object link, int flags, mixed values',
580     'description' => 'Set options',
581   ),
582   'mysqli_ping' => 
583   array (
584     'return' => 'bool',
585     'params' => 'object link',
586     'description' => 'Ping a server connection or reconnect if there is no connection',
587   ),
588   'mysqli_prepare' => 
589   array (
590     'return' => 'mixed',
591     'params' => 'object link, string query',
592     'description' => 'Prepare a SQL statement for execution',
593   ),
594   'mysqli_real_connect' => 
595   array (
596     'return' => 'bool',
597     'params' => 'object link [,string hostname [,string username [,string passwd [,string dbname [,int port [,string socket [,int flags]]]]]]]',
598     'description' => 'Open a connection to a mysql server',
599   ),
600   'mysqli_real_query' => 
601   array (
602     'return' => 'bool',
603     'params' => 'object link, string query',
604     'description' => 'Binary-safe version of mysql_query()',
605   ),
606   'mysqli_real_escape_string' => 
607   array (
608     'return' => 'string',
609     'params' => 'object link, string escapestr',
610     'description' => 'Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection',
611   ),
612   'mysqli_rollback' => 
613   array (
614     'return' => 'bool',
615     'params' => 'object link',
616     'description' => 'Undo actions from current transaction',
617   ),
618   'mysqli_send_long_data' => 
619   array (
620     'return' => 'bool',
621     'params' => 'object stmt, int param_nr, string data',
622     'description' => '',
623   ),
624   'mysqli_stmt_affected_rows' => 
625   array (
626     'return' => 'mixed',
627     'params' => 'object stmt',
628     'description' => 'Return the number of rows affected in the last query for the given link',
629   ),
630   'mysqli_stmt_close' => 
631   array (
632     'return' => 'bool',
633     'params' => 'object stmt',
634     'description' => 'Close statement',
635   ),
636   'mysqli_stmt_data_seek' => 
637   array (
638     'return' => 'void',
639     'params' => 'object stmt, int offset',
640     'description' => 'Move internal result pointer',
641   ),
642   'mysqli_stmt_free_result' => 
643   array (
644     'return' => 'void',
645     'params' => 'object stmt',
646     'description' => 'Free stored result memory for the given statement handle',
647   ),
648   'mysqli_stmt_insert_id' => 
649   array (
650     'return' => 'mixed',
651     'params' => 'object stmt',
652     'description' => 'Get the ID generated from the previous INSERT operation',
653   ),
654   'mysqli_stmt_reset' => 
655   array (
656     'return' => 'bool',
657     'params' => 'object stmt',
658     'description' => 'reset a prepared statement',
659   ),
660   'mysqli_stmt_num_rows' => 
661   array (
662     'return' => 'mixed',
663     'params' => 'object stmt',
664     'description' => 'Return the number of rows in statements result set',
665   ),
666   'mysqli_select_db' => 
667   array (
668     'return' => 'string',
669     'params' => 'object link, string dbname',
670     'description' => 'Select a MySQL database',
671   ),
672   'mysqli_sqlstate' => 
673   array (
674     'return' => 'string',
675     'params' => 'object link',
676     'description' => 'Returns the SQLSTATE error from previous MySQL operation',
677   ),
678   'mysqli_ssl_set' => 
679   array (
680     'return' => 'bool',
681     'params' => 'object link ,string key ,string cert ,string ca ,string capath ,string cipher]',
682     'description' => '',
683   ),
684   'mysqli_stat' => 
685   array (
686     'return' => 'mixed',
687     'params' => 'object link',
688     'description' => 'Get current system status',
689   ),
690   'mysqli_stmt_attr_set' => 
691   array (
692     'return' => 'int',
693     'params' => 'object stmt, long attr, bool mode',
694     'description' => '',
695   ),
696   'mysqli_stmt_attr_get' => 
697   array (
698     'return' => 'int',
699     'params' => 'object stmt, long attr',
700     'description' => '',
701   ),
702   'mysqli_stmt_errno' => 
703   array (
704     'return' => 'int',
705     'params' => 'object stmt',
706     'description' => '',
707   ),
708   'mysqli_stmt_error' => 
709   array (
710     'return' => 'string',
711     'params' => 'object stmt',
712     'description' => '',
713   ),
714   'mysqli_stmt_init' => 
715   array (
716     'return' => 'mixed',
717     'params' => 'object link',
718     'description' => 'Initialize statement object',
719   ),
720   'mysqli_stmt_prepare' => 
721   array (
722     'return' => 'bool',
723     'params' => 'object stmt, string query',
724     'description' => 'prepare server side statement with query',
725   ),
726   'mysqli_stmt_result_metadata' => 
727   array (
728     'return' => 'mixed',
729     'params' => 'object stmt',
730     'description' => 'return result set from statement',
731   ),
732   'mysqli_stmt_store_result' => 
733   array (
734     'return' => 'bool',
735     'params' => 'stmt',
736     'description' => '',
737   ),
738   'mysqli_stmt_sqlstate' => 
739   array (
740     'return' => 'string',
741     'params' => 'object stmt',
742     'description' => '',
743   ),
744   'mysqli_store_result' => 
745   array (
746     'return' => 'object',
747     'params' => 'object link',
748     'description' => 'Buffer result set on client',
749   ),
750   'mysqli_thread_id' => 
751   array (
752     'return' => 'int',
753     'params' => 'object link',
754     'description' => 'Return the current thread ID',
755   ),
756   'mysqli_thread_safe' => 
757   array (
758     'return' => 'bool',
759     'params' => 'void',
760     'description' => 'Return whether thread safety is given or not',
761   ),
762   'mysqli_use_result' => 
763   array (
764     'return' => 'mixed',
765     'params' => 'object link',
766     'description' => 'Directly retrieve query results - do not buffer results on client side',
767   ),
768   'mysqli_disable_reads_from_master' => 
769   array (
770     'return' => 'void',
771     'params' => 'object link',
772     'description' => '',
773   ),
774   'mysqli_disable_rpl_parse' => 
775   array (
776     'return' => 'void',
777     'params' => 'object link',
778     'description' => '',
779   ),
780   'mysqli_enable_reads_from_master' => 
781   array (
782     'return' => 'void',
783     'params' => 'object link',
784     'description' => '',
785   ),
786   'mysqli_enable_rpl_parse' => 
787   array (
788     'return' => 'void',
789     'params' => 'object link',
790     'description' => '',
791   ),
792   'mysqli_master_query' => 
793   array (
794     'return' => 'bool',
795     'params' => 'object link, string query',
796     'description' => 'Enforce execution of a query on the master in a master/slave setup',
797   ),
798   'mysqli_rpl_parse_enabled' => 
799   array (
800     'return' => 'int',
801     'params' => 'object link',
802     'description' => '',
803   ),
804   'mysqli_rpl_probe' => 
805   array (
806     'return' => 'bool',
807     'params' => 'object link',
808     'description' => '',
809   ),
810   'mysqli_rpl_query_type' => 
811   array (
812     'return' => 'int',
813     'params' => 'string query',
814     'description' => '',
815   ),
816   'mysqli_send_query' => 
817   array (
818     'return' => 'bool',
819     'params' => 'object link, string query',
820     'description' => '',
821   ),
822   'mysqli_slave_query' => 
823   array (
824     'return' => 'bool',
825     'params' => 'object link, string query',
826     'description' => 'Enforce execution of a query on a slave in a master/slave setup',
827   ),
828   'imap_open' => 
829   array (
830     'return' => 'resource',
831     'params' => 'string mailbox, string user, string password [, int options]',
832     'description' => 'Open an IMAP stream to a mailbox',
833   ),
834   'imap_reopen' => 
835   array (
836     'return' => 'bool',
837     'params' => 'resource stream_id, string mailbox [, int options]',
838     'description' => 'Reopen an IMAP stream to a new mailbox',
839   ),
840   'imap_append' => 
841   array (
842     'return' => 'bool',
843     'params' => 'resource stream_id, string folder, string message [, string options]',
844     'description' => 'Append a new message to a specified mailbox',
845   ),
846   'imap_num_msg' => 
847   array (
848     'return' => 'int',
849     'params' => 'resource stream_id',
850     'description' => 'Gives the number of messages in the current mailbox',
851   ),
852   'imap_ping' => 
853   array (
854     'return' => 'bool',
855     'params' => 'resource stream_id',
856     'description' => 'Check if the IMAP stream is still active',
857   ),
858   'imap_num_recent' => 
859   array (
860     'return' => 'int',
861     'params' => 'resource stream_id',
862     'description' => 'Gives the number of recent messages in current mailbox',
863   ),
864   'imap_get_quota' => 
865   array (
866     'return' => 'array',
867     'params' => 'resource stream_id, string qroot',
868     'description' => 'Returns the quota set to the mailbox account qroot',
869   ),
870   'imap_get_quotaroot' => 
871   array (
872     'return' => 'array',
873     'params' => 'resource stream_id, string mbox',
874     'description' => 'Returns the quota set to the mailbox account mbox',
875   ),
876   'imap_set_quota' => 
877   array (
878     'return' => 'bool',
879     'params' => 'resource stream_id, string qroot, int mailbox_size',
880     'description' => 'Will set the quota for qroot mailbox',
881   ),
882   'imap_setacl' => 
883   array (
884     'return' => 'bool',
885     'params' => 'resource stream_id, string mailbox, string id, string rights',
886     'description' => 'Sets the ACL for a given mailbox',
887   ),
888   'imap_getacl' => 
889   array (
890     'return' => 'array',
891     'params' => 'resource stream_id, string mailbox',
892     'description' => 'Gets the ACL for a given mailbox',
893   ),
894   'imap_expunge' => 
895   array (
896     'return' => 'bool',
897     'params' => 'resource stream_id',
898     'description' => 'Permanently delete all messages marked for deletion',
899   ),
900   'imap_close' => 
901   array (
902     'return' => 'bool',
903     'params' => 'resource stream_id [, int options]',
904     'description' => 'Close an IMAP stream',
905   ),
906   'imap_headers' => 
907   array (
908     'return' => 'array',
909     'params' => 'resource stream_id',
910     'description' => 'Returns headers for all messages in a mailbox',
911   ),
912   'imap_body' => 
913   array (
914     'return' => 'string',
915     'params' => 'resource stream_id, int msg_no [, int options]',
916     'description' => 'Read the message body',
917   ),
918   'imap_mail_copy' => 
919   array (
920     'return' => 'bool',
921     'params' => 'resource stream_id, int msg_no, string mailbox [, int options]',
922     'description' => 'Copy specified message to a mailbox',
923   ),
924   'imap_mail_move' => 
925   array (
926     'return' => 'bool',
927     'params' => 'resource stream_id, int msg_no, string mailbox [, int options]',
928     'description' => 'Move specified message to a mailbox',
929   ),
930   'imap_createmailbox' => 
931   array (
932     'return' => 'bool',
933     'params' => 'resource stream_id, string mailbox',
934     'description' => 'Create a new mailbox',
935   ),
936   'imap_renamemailbox' => 
937   array (
938     'return' => 'bool',
939     'params' => 'resource stream_id, string old_name, string new_name',
940     'description' => 'Rename a mailbox',
941   ),
942   'imap_deletemailbox' => 
943   array (
944     'return' => 'bool',
945     'params' => 'resource stream_id, string mailbox',
946     'description' => 'Delete a mailbox',
947   ),
948   'imap_list' => 
949   array (
950     'return' => 'array',
951     'params' => 'resource stream_id, string ref, string pattern',
952     'description' => 'Read the list of mailboxes',
953   ),
954   'imap_getmailboxes' => 
955   array (
956     'return' => 'array',
957     'params' => 'resource stream_id, string ref, string pattern',
958     'description' => 'Reads the list of mailboxes and returns a full array of objects containing name, attributes, and delimiter',
959   ),
960   'imap_scan' => 
961   array (
962     'return' => 'array',
963     'params' => 'resource stream_id, string ref, string pattern, string content',
964     'description' => 'Read list of mailboxes containing a certain string',
965   ),
966   'imap_check' => 
967   array (
968     'return' => 'object',
969     'params' => 'resource stream_id',
970     'description' => 'Get mailbox properties',
971   ),
972   'imap_delete' => 
973   array (
974     'return' => 'bool',
975     'params' => 'resource stream_id, int msg_no [, int options]',
976     'description' => 'Mark a message for deletion',
977   ),
978   'imap_undelete' => 
979   array (
980     'return' => 'bool',
981     'params' => 'resource stream_id, int msg_no',
982     'description' => 'Remove the delete flag from a message',
983   ),
984   'imap_headerinfo' => 
985   array (
986     'return' => 'object',
987     'params' => 'resource stream_id, int msg_no [, int from_length [, int subject_length [, string default_host]]]',
988     'description' => 'Read the headers of the message',
989   ),
990   'imap_rfc822_parse_headers' => 
991   array (
992     'return' => 'object',
993     'params' => 'string headers [, string default_host]',
994     'description' => 'Parse a set of mail headers contained in a string, and return an object similar to imap_headerinfo()',
995   ),
996   'imap_lsub' => 
997   array (
998     'return' => 'array',
999     'params' => 'resource stream_id, string ref, string pattern',
1000     'description' => 'Return a list of subscribed mailboxes',
1001   ),
1002   'imap_getsubscribed' => 
1003   array (
1004     'return' => 'array',
1005     'params' => 'resource stream_id, string ref, string pattern',
1006     'description' => 'Return a list of subscribed mailboxes, in the same format as imap_getmailboxes()',
1007   ),
1008   'imap_subscribe' => 
1009   array (
1010     'return' => 'bool',
1011     'params' => 'resource stream_id, string mailbox',
1012     'description' => 'Subscribe to a mailbox',
1013   ),
1014   'imap_unsubscribe' => 
1015   array (
1016     'return' => 'bool',
1017     'params' => 'resource stream_id, string mailbox',
1018     'description' => 'Unsubscribe from a mailbox',
1019   ),
1020   'imap_fetchstructure' => 
1021   array (
1022     'return' => 'object',
1023     'params' => 'resource stream_id, int msg_no [, int options]',
1024     'description' => 'Read the full structure of a message',
1025   ),
1026   'imap_fetchbody' => 
1027   array (
1028     'return' => 'string',
1029     'params' => 'resource stream_id, int msg_no, string section [, int options]',
1030     'description' => 'Get a specific body section',
1031   ),
1032   'imap_savebody' => 
1033   array (
1034     'return' => 'bool',
1035     'params' => 'resource stream_id, string|resource file, int msg_no[, string section = ""[, int options = 0]]',
1036     'description' => 'Save a specific body section to a file',
1037   ),
1038   'imap_base64' => 
1039   array (
1040     'return' => 'string',
1041     'params' => 'string text',
1042     'description' => 'Decode BASE64 encoded text',
1043   ),
1044   'imap_qprint' => 
1045   array (
1046     'return' => 'string',
1047     'params' => 'string text',
1048     'description' => 'Convert a quoted-printable string to an 8-bit string',
1049   ),
1050   'imap_8bit' => 
1051   array (
1052     'return' => 'string',
1053     'params' => 'string text',
1054     'description' => 'Convert an 8-bit string to a quoted-printable string',
1055   ),
1056   'imap_binary' => 
1057   array (
1058     'return' => 'string',
1059     'params' => 'string text',
1060     'description' => 'Convert an 8bit string to a base64 string',
1061   ),
1062   'imap_mailboxmsginfo' => 
1063   array (
1064     'return' => 'object',
1065     'params' => 'resource stream_id',
1066     'description' => 'Returns info about the current mailbox',
1067   ),
1068   'imap_rfc822_write_address' => 
1069   array (
1070     'return' => 'string',
1071     'params' => 'string mailbox, string host, string personal',
1072     'description' => 'Returns a properly formatted email address given the mailbox, host, and personal info',
1073   ),
1074   'imap_rfc822_parse_adrlist' => 
1075   array (
1076     'return' => 'array',
1077     'params' => 'string address_string, string default_host',
1078     'description' => 'Parses an address string',
1079   ),
1080   'imap_utf8' => 
1081   array (
1082     'return' => 'string',
1083     'params' => 'string mime_encoded_text',
1084     'description' => 'Convert a mime-encoded text to UTF-8',
1085   ),
1086   'imap_utf7_decode' => 
1087   array (
1088     'return' => 'string',
1089     'params' => 'string buf',
1090     'description' => 'Decode a modified UTF-7 string',
1091   ),
1092   'imap_utf7_encode' => 
1093   array (
1094     'return' => 'string',
1095     'params' => 'string buf',
1096     'description' => 'Encode a string in modified UTF-7',
1097   ),
1098   'imap_setflag_full' => 
1099   array (
1100     'return' => 'bool',
1101     'params' => 'resource stream_id, string sequence, string flag [, int options]',
1102     'description' => 'Sets flags on messages',
1103   ),
1104   'imap_clearflag_full' => 
1105   array (
1106     'return' => 'bool',
1107     'params' => 'resource stream_id, string sequence, string flag [, int options]',
1108     'description' => 'Clears flags on messages',
1109   ),
1110   'imap_sort' => 
1111   array (
1112     'return' => 'array',
1113     'params' => 'resource stream_id, int criteria, int reverse [, int options [, string search_criteria [, string charset]]]',
1114     'description' => 'Sort an array of message headers, optionally including only messages that meet specified criteria.',
1115   ),
1116   'imap_fetchheader' => 
1117   array (
1118     'return' => 'string',
1119     'params' => 'resource stream_id, int msg_no [, int options]',
1120     'description' => 'Get the full unfiltered header for a message',
1121   ),
1122   'imap_uid' => 
1123   array (
1124     'return' => 'int',
1125     'params' => 'resource stream_id, int msg_no',
1126     'description' => 'Get the unique message id associated with a standard sequential message number',
1127   ),
1128   'imap_msgno' => 
1129   array (
1130     'return' => 'int',
1131     'params' => 'resource stream_id, int unique_msg_id',
1132     'description' => 'Get the sequence number associated with a UID',
1133   ),
1134   'imap_status' => 
1135   array (
1136     'return' => 'object',
1137     'params' => 'resource stream_id, string mailbox, int options',
1138     'description' => 'Get status info from a mailbox',
1139   ),
1140   'imap_bodystruct' => 
1141   array (
1142     'return' => 'object',
1143     'params' => 'resource stream_id, int msg_no, string section',
1144     'description' => 'Read the structure of a specified body section of a specific message',
1145   ),
1146   'imap_fetch_overview' => 
1147   array (
1148     'return' => 'array',
1149     'params' => 'resource stream_id, int msg_no [, int options]',
1150     'description' => 'Read an overview of the information in the headers of the given message sequence',
1151   ),
1152   'imap_mail_compose' => 
1153   array (
1154     'return' => 'string',
1155     'params' => 'array envelope, array body',
1156     'description' => 'Create a MIME message based on given envelope and body sections',
1157   ),
1158   'imap_mail' => 
1159   array (
1160     'return' => 'bool',
1161     'params' => 'string to, string subject, string message [, string additional_headers [, string cc [, string bcc [, string rpath]]]]',
1162     'description' => 'Send an email message',
1163   ),
1164   'imap_search' => 
1165   array (
1166     'return' => 'array',
1167     'params' => 'resource stream_id, string criteria [, int options [, string charset]]',
1168     'description' => 'Return a list of messages matching the given criteria',
1169   ),
1170   'imap_alerts' => 
1171   array (
1172     'return' => 'array',
1173     'params' => 'void',
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   ),
1176   'imap_errors' => 
1177   array (
1178     'return' => 'array',
1179     'params' => 'void',
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   ),
1182   'imap_last_error' => 
1183   array (
1184     'return' => 'string',
1185     'params' => 'void',
1186     'description' => 'Returns the last error that was generated by an IMAP function. The error stack is NOT cleared after this call.',
1187   ),
1188   'imap_mime_header_decode' => 
1189   array (
1190     'return' => 'array',
1191     'params' => 'string str',
1192     'description' => 'Decode mime header element in accordance with RFC 2047 and return array of objects containing \'charset\' encoding and decoded \'text\'',
1193   ),
1194   'imap_thread' => 
1195   array (
1196     'return' => 'array',
1197     'params' => 'resource stream_id [, int options]',
1198     'description' => 'Return threaded by REFERENCES tree',
1199   ),
1200   'imap_timeout' => 
1201   array (
1202     'return' => 'mixed',
1203     'params' => 'int timeout_type [, int timeout]',
1204     'description' => 'Set or fetch imap timeout',
1205   ),
1206   'session_set_cookie_params' => 
1207   array (
1208     'return' => 'void',
1209     'params' => 'int lifetime [, string path [, string domain [, bool secure]]]',
1210     'description' => 'Set session cookie parameters',
1211   ),
1212   'session_get_cookie_params' => 
1213   array (
1214     'return' => 'array',
1215     'params' => 'void',
1216     'description' => 'Return the session cookie parameters',
1217   ),
1218   'session_name' => 
1219   array (
1220     'return' => 'string',
1221     'params' => '[string newname]',
1222     'description' => 'Return the current session name. If newname is given, the session name is replaced with newname',
1223   ),
1224   'session_module_name' => 
1225   array (
1226     'return' => 'string',
1227     'params' => '[string newname]',
1228     'description' => 'Return the current module name used for accessing session data. If newname is given, the module name is replaced with newname',
1229   ),
1230   'session_set_save_handler' => 
1231   array (
1232     'return' => 'void',
1233     'params' => 'string open, string close, string read, string write, string destroy, string gc',
1234     'description' => 'Sets user-level functions',
1235   ),
1236   'session_save_path' => 
1237   array (
1238     'return' => 'string',
1239     'params' => '[string newname]',
1240     'description' => 'Return the current save path passed to module_name. If newname is given, the save path is replaced with newname',
1241   ),
1242   'session_id' => 
1243   array (
1244     'return' => 'string',
1245     'params' => '[string newid]',
1246     'description' => 'Return the current session id. If newid is given, the session id is replaced with newid',
1247   ),
1248   'session_regenerate_id' => 
1249   array (
1250     'return' => 'bool',
1251     'params' => '[bool delete_old_session]',
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   ),
1254   'session_cache_limiter' => 
1255   array (
1256     'return' => 'string',
1257     'params' => '[string new_cache_limiter]',
1258     'description' => 'Return the current cache limiter. If new_cache_limited is given, the current cache_limiter is replaced with new_cache_limiter',
1259   ),
1260   'session_cache_expire' => 
1261   array (
1262     'return' => 'int',
1263     'params' => '[int new_cache_expire]',
1264     'description' => 'Return the current cache expire. If new_cache_expire is given, the current cache_expire is replaced with new_cache_expire',
1265   ),
1266   'session_register' => 
1267   array (
1268     'return' => 'bool',
1269     'params' => 'mixed var_names [, mixed ...]',
1270     'description' => 'Adds varname(s) to the list of variables which are freezed at the session end',
1271   ),
1272   'session_unregister' => 
1273   array (
1274     'return' => 'bool',
1275     'params' => 'string varname',
1276     'description' => 'Removes varname from the list of variables which are freezed at the session end',
1277   ),
1278   'session_is_registered' => 
1279   array (
1280     'return' => 'bool',
1281     'params' => 'string varname',
1282     'description' => 'Checks if a variable is registered in session',
1283   ),
1284   'session_encode' => 
1285   array (
1286     'return' => 'string',
1287     'params' => 'void',
1288     'description' => 'Serializes the current setup and returns the serialized representation',
1289   ),
1290   'session_decode' => 
1291   array (
1292     'return' => 'bool',
1293     'params' => 'string data',
1294     'description' => 'Deserializes data and reinitializes the variables',
1295   ),
1296   'session_start' => 
1297   array (
1298     'return' => 'bool',
1299     'params' => 'void',
1300     'description' => 'Begin session - reinitializes freezed variables, registers browsers etc',
1301   ),
1302   'session_destroy' => 
1303   array (
1304     'return' => 'bool',
1305     'params' => 'void',
1306     'description' => 'Destroy the current session and all data associated with it',
1307   ),
1308   'session_unset' => 
1309   array (
1310     'return' => 'void',
1311     'params' => 'void',
1312     'description' => 'Unset all registered variables',
1313   ),
1314   'session_write_close' => 
1315   array (
1316     'return' => 'void',
1317     'params' => 'void',
1318     'description' => 'Write session data and end session',
1319   ),
1320   'mysql_connect' => 
1321   array (
1322     'return' => 'resource',
1323     'params' => '[string hostname[:port][:/path/to/socket] [, string username [, string password [, bool new [, int flags]]]]]',
1324     'description' => 'Opens a connection to a MySQL Server',
1325   ),
1326   'mysql_pconnect' => 
1327   array (
1328     'return' => 'resource',
1329     'params' => '[string hostname[:port][:/path/to/socket] [, string username [, string password [, int flags]]]]',
1330     'description' => 'Opens a persistent connection to a MySQL Server',
1331   ),
1332   'mysql_close' => 
1333   array (
1334     'return' => 'bool',
1335     'params' => '[int link_identifier]',
1336     'description' => 'Close a MySQL connection',
1337   ),
1338   'mysql_select_db' => 
1339   array (
1340     'return' => 'bool',
1341     'params' => 'string database_name [, int link_identifier]',
1342     'description' => 'Selects a MySQL database',
1343   ),
1344   'mysql_get_client_info' => 
1345   array (
1346     'return' => 'string',
1347     'params' => 'void',
1348     'description' => 'Returns a string that represents the client library version',
1349   ),
1350   'mysql_get_host_info' => 
1351   array (
1352     'return' => 'string',
1353     'params' => '[int link_identifier]',
1354     'description' => 'Returns a string describing the type of connection in use, including the server host name',
1355   ),
1356   'mysql_get_proto_info' => 
1357   array (
1358     'return' => 'int',
1359     'params' => '[int link_identifier]',
1360     'description' => 'Returns the protocol version used by current connection',
1361   ),
1362   'mysql_get_server_info' => 
1363   array (
1364     'return' => 'string',
1365     'params' => '[int link_identifier]',
1366     'description' => 'Returns a string that represents the server version number',
1367   ),
1368   'mysql_info' => 
1369   array (
1370     'return' => 'string',
1371     'params' => '[int link_identifier]',
1372     'description' => 'Returns a string containing information about the most recent query',
1373   ),
1374   'mysql_thread_id' => 
1375   array (
1376     'return' => 'int',
1377     'params' => '[int link_identifier]',
1378     'description' => 'Returns the thread id of current connection',
1379   ),
1380   'mysql_stat' => 
1381   array (
1382     'return' => 'string',
1383     'params' => '[int link_identifier]',
1384     'description' => 'Returns a string containing status information',
1385   ),
1386   'mysql_client_encoding' => 
1387   array (
1388     'return' => 'string',
1389     'params' => '[int link_identifier]',
1390     'description' => 'Returns the default character set for the current connection',
1391   ),
1392   'mysql_create_db' => 
1393   array (
1394     'return' => 'bool',
1395     'params' => 'string database_name [, int link_identifier]',
1396     'description' => 'Create a MySQL database',
1397   ),
1398   'mysql_drop_db' => 
1399   array (
1400     'return' => 'bool',
1401     'params' => 'string database_name [, int link_identifier]',
1402     'description' => 'Drops (delete) a MySQL database',
1403   ),
1404   'mysql_query' => 
1405   array (
1406     'return' => 'resource',
1407     'params' => 'string query [, int link_identifier]',
1408     'description' => 'Sends an SQL query to MySQL',
1409   ),
1410   'mysql_unbuffered_query' => 
1411   array (
1412     'return' => 'resource',
1413     'params' => 'string query [, int link_identifier]',
1414     'description' => 'Sends an SQL query to MySQL, without fetching and buffering the result rows',
1415   ),
1416   'mysql_db_query' => 
1417   array (
1418     'return' => 'resource',
1419     'params' => 'string database_name, string query [, int link_identifier]',
1420     'description' => 'Sends an SQL query to MySQL',
1421   ),
1422   'mysql_list_dbs' => 
1423   array (
1424     'return' => 'resource',
1425     'params' => '[int link_identifier]',
1426     'description' => 'List databases available on a MySQL server',
1427   ),
1428   'mysql_list_tables' => 
1429   array (
1430     'return' => 'resource',
1431     'params' => 'string database_name [, int link_identifier]',
1432     'description' => 'List tables in a MySQL database',
1433   ),
1434   'mysql_list_fields' => 
1435   array (
1436     'return' => 'resource',
1437     'params' => 'string database_name, string table_name [, int link_identifier]',
1438     'description' => 'List MySQL result fields',
1439   ),
1440   'mysql_list_processes' => 
1441   array (
1442     'return' => 'resource',
1443     'params' => '[int link_identifier]',
1444     'description' => 'Returns a result set describing the current server threads',
1445   ),
1446   'mysql_error' => 
1447   array (
1448     'return' => 'string',
1449     'params' => '[int link_identifier]',
1450     'description' => 'Returns the text of the error message from previous MySQL operation',
1451   ),
1452   'mysql_errno' => 
1453   array (
1454     'return' => 'int',
1455     'params' => '[int link_identifier]',
1456     'description' => 'Returns the number of the error message from previous MySQL operation',
1457   ),
1458   'mysql_affected_rows' => 
1459   array (
1460     'return' => 'int',
1461     'params' => '[int link_identifier]',
1462     'description' => 'Gets number of affected rows in previous MySQL operation',
1463   ),
1464   'mysql_escape_string' => 
1465   array (
1466     'return' => 'string',
1467     'params' => 'string to_be_escaped',
1468     'description' => 'Escape string for mysql query',
1469   ),
1470   'mysql_real_escape_string' => 
1471   array (
1472     'return' => 'string',
1473     'params' => 'string to_be_escaped [, int link_identifier]',
1474     'description' => 'Escape special characters in a string for use in a SQL statement, taking into account the current charset of the connection',
1475   ),
1476   'mysql_insert_id' => 
1477   array (
1478     'return' => 'int',
1479     'params' => '[int link_identifier]',
1480     'description' => 'Gets the ID generated from the previous INSERT operation',
1481   ),
1482   'mysql_result' => 
1483   array (
1484     'return' => 'mixed',
1485     'params' => 'resource result, int row [, mixed field]',
1486     'description' => 'Gets result data',
1487   ),
1488   'mysql_num_rows' => 
1489   array (
1490     'return' => 'int',
1491     'params' => 'resource result',
1492     'description' => 'Gets number of rows in a result',
1493   ),
1494   'mysql_num_fields' => 
1495   array (
1496     'return' => 'int',
1497     'params' => 'resource result',
1498     'description' => 'Gets number of fields in a result',
1499   ),
1500   'mysql_fetch_row' => 
1501   array (
1502     'return' => 'array',
1503     'params' => 'resource result',
1504     'description' => 'Gets a result row as an enumerated array',
1505   ),
1506   'mysql_fetch_object' => 
1507   array (
1508     'return' => 'object',
1509     'params' => 'resource result [, string class_name [, NULL|array ctor_params]]',
1510     'description' => 'Fetch a result row as an object',
1511   ),
1512   'mysql_fetch_array' => 
1513   array (
1514     'return' => 'array',
1515     'params' => 'resource result [, int result_type]',
1516     'description' => 'Fetch a result row as an array (associative, numeric or both)',
1517   ),
1518   'mysql_fetch_assoc' => 
1519   array (
1520     'return' => 'array',
1521     'params' => 'resource result',
1522     'description' => 'Fetch a result row as an associative array',
1523   ),
1524   'mysql_data_seek' => 
1525   array (
1526     'return' => 'bool',
1527     'params' => 'resource result, int row_number',
1528     'description' => 'Move internal result pointer',
1529   ),
1530   'mysql_fetch_lengths' => 
1531   array (
1532     'return' => 'array',
1533     'params' => 'resource result',
1534     'description' => 'Gets max data size of each column in a result',
1535   ),
1536   'mysql_fetch_field' => 
1537   array (
1538     'return' => 'object',
1539     'params' => 'resource result [, int field_offset]',
1540     'description' => 'Gets column information from a result and return as an object',
1541   ),
1542   'mysql_field_seek' => 
1543   array (
1544     'return' => 'bool',
1545     'params' => 'resource result, int field_offset',
1546     'description' => 'Sets result pointer to a specific field offset',
1547   ),
1548   'mysql_field_name' => 
1549   array (
1550     'return' => 'string',
1551     'params' => 'resource result, int field_index',
1552     'description' => 'Gets the name of the specified field in a result',
1553   ),
1554   'mysql_field_table' => 
1555   array (
1556     'return' => 'string',
1557     'params' => 'resource result, int field_offset',
1558     'description' => 'Gets name of the table the specified field is in',
1559   ),
1560   'mysql_field_len' => 
1561   array (
1562     'return' => 'int',
1563     'params' => 'resource result, int field_offset',
1564     'description' => 'Returns the length of the specified field',
1565   ),
1566   'mysql_field_type' => 
1567   array (
1568     'return' => 'string',
1569     'params' => 'resource result, int field_offset',
1570     'description' => 'Gets the type of the specified field in a result',
1571   ),
1572   'mysql_field_flags' => 
1573   array (
1574     'return' => 'string',
1575     'params' => 'resource result, int field_offset',
1576     'description' => 'Gets the flags associated with the specified field in a result',
1577   ),
1578   'mysql_free_result' => 
1579   array (
1580     'return' => 'bool',
1581     'params' => 'resource result',
1582     'description' => 'Free result memory',
1583   ),
1584   'mysql_ping' => 
1585   array (
1586     'return' => 'bool',
1587     'params' => '[int link_identifier]',
1588     'description' => 'Ping a server connection. If no connection then reconnect.',
1589   ),
1590   'dom_domerrorhandler_handle_error' => 
1591   array (
1592     'return' => 'dom_boolean',
1593     'params' => 'domerror error',
1594     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-ERRORS-DOMErrorHandler-handleErrorSince:',
1595   ),
1596   'dom_document_create_element' => 
1597   array (
1598     'return' => 'DOMElement',
1599     'params' => 'string tagName [, string value]',
1600     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-2141741547Since:',
1601   ),
1602   'dom_document_create_document_fragment' => 
1603   array (
1604     'return' => 'DOMDocumentFragment',
1605     'params' => '',
1606     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-35CB04B5Since:',
1607   ),
1608   'dom_document_create_text_node' => 
1609   array (
1610     'return' => 'DOMText',
1611     'params' => 'string data',
1612     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1975348127Since:',
1613   ),
1614   'dom_document_create_comment' => 
1615   array (
1616     'return' => 'DOMComment',
1617     'params' => 'string data',
1618     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1334481328Since:',
1619   ),
1620   'dom_document_create_cdatasection' => 
1621   array (
1622     'return' => 'DOMCdataSection',
1623     'params' => 'string data',
1624     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-D26C0AF8Since:',
1625   ),
1626   'dom_document_create_processing_instruction' => 
1627   array (
1628     'return' => 'DOMProcessingInstruction',
1629     'params' => 'string target, string data',
1630     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-135944439Since:',
1631   ),
1632   'dom_document_create_attribute' => 
1633   array (
1634     'return' => 'DOMAttr',
1635     'params' => 'string name',
1636     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1084891198Since:',
1637   ),
1638   'dom_document_create_entity_reference' => 
1639   array (
1640     'return' => 'DOMEntityReference',
1641     'params' => 'string name',
1642     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-392B75AESince:',
1643   ),
1644   'dom_document_get_elements_by_tag_name' => 
1645   array (
1646     'return' => 'DOMNodeList',
1647     'params' => 'string tagname',
1648     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-A6C9094Since:',
1649   ),
1650   'dom_document_import_node' => 
1651   array (
1652     'return' => 'DOMNode',
1653     'params' => 'DOMNode importedNode, boolean deep',
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   ),
1656   'dom_document_create_element_ns' => 
1657   array (
1658     'return' => 'DOMElement',
1659     'params' => 'string namespaceURI, string qualifiedName [,string value]',
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   ),
1662   'dom_document_create_attribute_ns' => 
1663   array (
1664     'return' => 'DOMAttr',
1665     'params' => 'string namespaceURI, string qualifiedName',
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   ),
1668   'dom_document_get_elements_by_tag_name_ns' => 
1669   array (
1670     'return' => 'DOMNodeList',
1671     'params' => 'string namespaceURI, string localName',
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   ),
1674   'dom_document_get_element_by_id' => 
1675   array (
1676     'return' => 'DOMElement',
1677     'params' => 'string elementId',
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   ),
1680   'dom_document_adopt_node' => 
1681   array (
1682     'return' => 'DOMNode',
1683     'params' => 'DOMNode source',
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   ),
1686   'dom_document_normalize_document' => 
1687   array (
1688     'return' => 'void',
1689     'params' => '',
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   ),
1692   'dom_document_rename_node' => 
1693   array (
1694     'return' => 'DOMNode',
1695     'params' => 'node n, string namespaceURI, string qualifiedName',
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   ),
1698   'dom_document_load' => 
1699   array (
1700     'return' => 'DOMNode',
1701     'params' => 'string source [, int options]',
1702     'description' => 'URL: http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS-loadSince: DOM Level 3',
1703   ),
1704   'dom_document_loadxml' => 
1705   array (
1706     'return' => 'DOMNode',
1707     'params' => 'string source [, int options]',
1708     'description' => 'URL: http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS-loadXMLSince: DOM Level 3',
1709   ),
1710   'dom_document_save' => 
1711   array (
1712     'return' => 'int',
1713     'params' => 'string file',
1714     'description' => 'Convenience method to save to file',
1715   ),
1716   'dom_document_savexml' => 
1717   array (
1718     'return' => 'string',
1719     'params' => '[node n]',
1720     'description' => 'URL: http://www.w3.org/TR/DOM-Level-3-LS/load-save.html#LS-DocumentLS-saveXMLSince: DOM Level 3',
1721   ),
1722   'dom_document_xinclude' => 
1723   array (
1724     'return' => 'int',
1725     'params' => '[int options]',
1726     'description' => 'Substitutues xincludes in a DomDocument',
1727   ),
1728   'dom_document_validate' => 
1729   array (
1730     'return' => 'boolean',
1731     'params' => '',
1732     'description' => 'Since: DOM extended',
1733   ),
1734   'dom_document_load_html_file' => 
1735   array (
1736     'return' => 'DOMNode',
1737     'params' => 'string source',
1738     'description' => 'Since: DOM extended',
1739   ),
1740   'dom_document_load_html' => 
1741   array (
1742     'return' => 'DOMNode',
1743     'params' => 'string source',
1744     'description' => 'Since: DOM extended',
1745   ),
1746   'dom_document_save_html_file' => 
1747   array (
1748     'return' => 'int',
1749     'params' => 'string file',
1750     'description' => 'Convenience method to save to file as html',
1751   ),
1752   'dom_document_save_html' => 
1753   array (
1754     'return' => 'string',
1755     'params' => '',
1756     'description' => 'Convenience method to output as html',
1757   ),
1758   'dom_domstringlist_item' => 
1759   array (
1760     'return' => 'domstring',
1761     'params' => 'int index',
1762     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMStringList-itemSince:',
1763   ),
1764   'dom_string_extend_find_offset16' => 
1765   array (
1766     'return' => 'int',
1767     'params' => 'int offset32',
1768     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#i18n-methods-StringExtend-findOffset16Since:',
1769   ),
1770   'dom_string_extend_find_offset32' => 
1771   array (
1772     'return' => 'int',
1773     'params' => 'int offset16',
1774     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#i18n-methods-StringExtend-findOffset32Since:',
1775   ),
1776   'dom_import_simplexml' => 
1777   array (
1778     'return' => 'somNode',
1779     'params' => 'sxeobject node',
1780     'description' => 'Get a simplexml_element object from dom to allow for processing',
1781   ),
1782   'dom_domimplementation_has_feature' => 
1783   array (
1784     'return' => 'boolean',
1785     'params' => 'string feature, string version',
1786     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-5CED94D7Since:',
1787   ),
1788   'dom_domimplementation_create_document_type' => 
1789   array (
1790     'return' => 'DOMDocumentType',
1791     'params' => 'string qualifiedName, string publicId, string systemId',
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   ),
1794   'dom_domimplementation_create_document' => 
1795   array (
1796     'return' => 'DOMDocument',
1797     'params' => 'string namespaceURI, string qualifiedName, DOMDocumentType doctype',
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   ),
1800   'dom_domimplementation_get_feature' => 
1801   array (
1802     'return' => 'DOMNode',
1803     'params' => 'string feature, string version',
1804     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMImplementation3-getFeatureSince: DOM Level 3',
1805   ),
1806   'dom_namelist_get_name' => 
1807   array (
1808     'return' => 'string',
1809     'params' => 'int index',
1810     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#NameList-getNameSince:',
1811   ),
1812   'dom_namelist_get_namespace_uri' => 
1813   array (
1814     'return' => 'string',
1815     'params' => 'int index',
1816     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#NameList-getNamespaceURISince:',
1817   ),
1818   'dom_text_split_text' => 
1819   array (
1820     'return' => 'DOMText',
1821     'params' => 'int offset',
1822     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-38853C1DSince:',
1823   ),
1824   'dom_text_is_whitespace_in_element_content' => 
1825   array (
1826     'return' => 'boolean',
1827     'params' => '',
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   ),
1830   'dom_text_replace_whole_text' => 
1831   array (
1832     'return' => 'DOMText',
1833     'params' => 'string content',
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   ),
1836   'dom_element_get_attribute' => 
1837   array (
1838     'return' => 'string',
1839     'params' => 'string name',
1840     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-666EE0F9Since:',
1841   ),
1842   'dom_element_set_attribute' => 
1843   array (
1844     'return' => 'void',
1845     'params' => 'string name, string value',
1846     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-F68F082Since:',
1847   ),
1848   'dom_element_remove_attribute' => 
1849   array (
1850     'return' => 'void',
1851     'params' => 'string name',
1852     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-6D6AC0F9Since:',
1853   ),
1854   'dom_element_get_attribute_node' => 
1855   array (
1856     'return' => 'DOMAttr',
1857     'params' => 'string name',
1858     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-217A91B8Since:',
1859   ),
1860   'dom_element_set_attribute_node' => 
1861   array (
1862     'return' => 'DOMAttr',
1863     'params' => 'DOMAttr newAttr',
1864     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-887236154Since:',
1865   ),
1866   'dom_element_remove_attribute_node' => 
1867   array (
1868     'return' => 'DOMAttr',
1869     'params' => 'DOMAttr oldAttr',
1870     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-D589198Since:',
1871   ),
1872   'dom_element_get_elements_by_tag_name' => 
1873   array (
1874     'return' => 'DOMNodeList',
1875     'params' => 'string name',
1876     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1938918DSince:',
1877   ),
1878   'dom_element_get_attribute_ns' => 
1879   array (
1880     'return' => 'string',
1881     'params' => 'string namespaceURI, string localName',
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   ),
1884   'dom_element_set_attribute_ns' => 
1885   array (
1886     'return' => 'void',
1887     'params' => 'string namespaceURI, string qualifiedName, string value',
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   ),
1890   'dom_element_remove_attribute_ns' => 
1891   array (
1892     'return' => 'void',
1893     'params' => 'string namespaceURI, string localName',
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   ),
1896   'dom_element_get_attribute_node_ns' => 
1897   array (
1898     'return' => 'DOMAttr',
1899     'params' => 'string namespaceURI, string localName',
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   ),
1902   'dom_element_set_attribute_node_ns' => 
1903   array (
1904     'return' => 'DOMAttr',
1905     'params' => 'DOMAttr newAttr',
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   ),
1908   'dom_element_get_elements_by_tag_name_ns' => 
1909   array (
1910     'return' => 'DOMNodeList',
1911     'params' => 'string namespaceURI, string localName',
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   ),
1914   'dom_element_has_attribute' => 
1915   array (
1916     'return' => 'boolean',
1917     'params' => 'string name',
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   ),
1920   'dom_element_has_attribute_ns' => 
1921   array (
1922     'return' => 'boolean',
1923     'params' => 'string namespaceURI, string localName',
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   ),
1926   'dom_element_set_id_attribute' => 
1927   array (
1928     'return' => 'void',
1929     'params' => 'string name, boolean isId',
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   ),
1932   'dom_element_set_id_attribute_ns' => 
1933   array (
1934     'return' => 'void',
1935     'params' => 'string namespaceURI, string localName, boolean isId',
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   ),
1938   'dom_element_set_id_attribute_node' => 
1939   array (
1940     'return' => 'void',
1941     'params' => 'attr idAttr, boolean isId',
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   ),
1944   'dom_userdatahandler_handle' => 
1945   array (
1946     'return' => 'dom_void',
1947     'params' => 'short operation, string key, domobject data, node src, node dst',
1948     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-handleUserDataEventSince:',
1949   ),
1950   'dom_characterdata_substring_data' => 
1951   array (
1952     'return' => 'string',
1953     'params' => 'int offset, int count',
1954     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-6531BCCFSince:',
1955   ),
1956   'dom_characterdata_append_data' => 
1957   array (
1958     'return' => 'void',
1959     'params' => 'string arg',
1960     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-32791A2FSince:',
1961   ),
1962   'dom_characterdata_insert_data' => 
1963   array (
1964     'return' => 'void',
1965     'params' => 'int offset, string arg',
1966     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-3EDB695FSince:',
1967   ),
1968   'dom_characterdata_delete_data' => 
1969   array (
1970     'return' => 'void',
1971     'params' => 'int offset, int count',
1972     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-7C603781Since:',
1973   ),
1974   'dom_characterdata_replace_data' => 
1975   array (
1976     'return' => 'void',
1977     'params' => 'int offset, int count, string arg',
1978     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-E5CBA7FBSince:',
1979   ),
1980   'dom_domimplementationsource_get_domimplementation' => 
1981   array (
1982     'return' => 'domdomimplementation',
1983     'params' => 'string features',
1984     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-getDOMImplSince:',
1985   ),
1986   'dom_domimplementationsource_get_domimplementations' => 
1987   array (
1988     'return' => 'domimplementationlist',
1989     'params' => 'string features',
1990     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-getDOMImplsSince:',
1991   ),
1992   'dom_node_insert_before' => 
1993   array (
1994     'return' => 'domnode',
1995     'params' => 'DomNode newChild, DomNode refChild',
1996     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-952280727Since:',
1997   ),
1998   'dom_node_replace_child' => 
1999   array (
2000     'return' => 'DomNode',
2001     'params' => 'DomNode newChild, DomNode oldChild',
2002     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-785887307Since:',
2003   ),
2004   'dom_node_remove_child' => 
2005   array (
2006     'return' => 'DomNode',
2007     'params' => 'DomNode oldChild',
2008     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1734834066Since:',
2009   ),
2010   'dom_node_append_child' => 
2011   array (
2012     'return' => 'DomNode',
2013     'params' => 'DomNode newChild',
2014     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-184E7107Since:',
2015   ),
2016   'dom_node_has_child_nodes' => 
2017   array (
2018     'return' => 'boolean',
2019     'params' => '',
2020     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-810594187Since:',
2021   ),
2022   'dom_node_clone_node' => 
2023   array (
2024     'return' => 'DomNode',
2025     'params' => 'boolean deep',
2026     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-3A0ED0A4Since:',
2027   ),
2028   'dom_node_normalize' => 
2029   array (
2030     'return' => 'void',
2031     'params' => '',
2032     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-normalizeSince:',
2033   ),
2034   'dom_node_is_supported' => 
2035   array (
2036     'return' => 'boolean',
2037     'params' => 'string feature, string version',
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   ),
2040   'dom_node_has_attributes' => 
2041   array (
2042     'return' => 'boolean',
2043     'params' => '',
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   ),
2046   'dom_node_compare_document_position' => 
2047   array (
2048     'return' => 'short',
2049     'params' => 'DomNode other',
2050     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-compareDocumentPositionSince: DOM Level 3',
2051   ),
2052   'dom_node_is_same_node' => 
2053   array (
2054     'return' => 'boolean',
2055     'params' => 'DomNode other',
2056     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-isSameNodeSince: DOM Level 3',
2057   ),
2058   'dom_node_lookup_prefix' => 
2059   array (
2060     'return' => 'string',
2061     'params' => 'string namespaceURI',
2062     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-lookupNamespacePrefixSince: DOM Level 3',
2063   ),
2064   'dom_node_is_default_namespace' => 
2065   array (
2066     'return' => 'boolean',
2067     'params' => 'string namespaceURI',
2068     'description' => 'URL: http://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-isDefaultNamespaceSince: DOM Level 3',
2069   ),
2070   'dom_node_lookup_namespace_uri' => 
2071   array (
2072     'return' => 'string',
2073     'params' => 'string prefix',
2074     'description' => 'URL: http://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-lookupNamespaceURISince: DOM Level 3',
2075   ),
2076   'dom_node_is_equal_node' => 
2077   array (
2078     'return' => 'boolean',
2079     'params' => 'DomNode arg',
2080     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-isEqualNodeSince: DOM Level 3',
2081   ),
2082   'dom_node_get_feature' => 
2083   array (
2084     'return' => 'DomNode',
2085     'params' => 'string feature, string version',
2086     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-getFeatureSince: DOM Level 3',
2087   ),
2088   'dom_node_set_user_data' => 
2089   array (
2090     'return' => 'DomUserData',
2091     'params' => 'string key, DomUserData data, userdatahandler handler',
2092     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-setUserDataSince: DOM Level 3',
2093   ),
2094   'dom_node_get_user_data' => 
2095   array (
2096     'return' => 'DomUserData',
2097     'params' => 'string key',
2098     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-getUserDataSince: DOM Level 3',
2099   ),
2100   'dom_domconfiguration_set_parameter' => 
2101   array (
2102     'return' => 'dom_void',
2103     'params' => 'string name, domuserdata value',
2104     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMConfiguration-propertySince:',
2105   ),
2106   'dom_domconfiguration_get_parameter' => 
2107   array (
2108     'return' => 'domdomuserdata',
2109     'params' => 'string name',
2110     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMConfiguration-getParameterSince:',
2111   ),
2112   'dom_domconfiguration_can_set_parameter' => 
2113   array (
2114     'return' => 'boolean',
2115     'params' => 'string name, domuserdata value',
2116     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMConfiguration-canSetParameterSince:',
2117   ),
2118   'dom_namednodemap_get_named_item' => 
2119   array (
2120     'return' => 'DOMNode',
2121     'params' => 'string name',
2122     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1074577549Since:',
2123   ),
2124   'dom_namednodemap_set_named_item' => 
2125   array (
2126     'return' => 'DOMNode',
2127     'params' => 'DOMNode arg',
2128     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1025163788Since:',
2129   ),
2130   'dom_namednodemap_remove_named_item' => 
2131   array (
2132     'return' => 'DOMNode',
2133     'params' => 'string name',
2134     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-D58B193Since:',
2135   ),
2136   'dom_namednodemap_item' => 
2137   array (
2138     'return' => 'DOMNode',
2139     'params' => 'int index',
2140     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-349467F9Since:',
2141   ),
2142   'dom_namednodemap_get_named_item_ns' => 
2143   array (
2144     'return' => 'DOMNode',
2145     'params' => 'string namespaceURI, string localName',
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   ),
2148   'dom_namednodemap_set_named_item_ns' => 
2149   array (
2150     'return' => 'DOMNode',
2151     'params' => 'DOMNode arg',
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   ),
2154   'dom_namednodemap_remove_named_item_ns' => 
2155   array (
2156     'return' => 'DOMNode',
2157     'params' => 'string namespaceURI, string localName',
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   ),
2160   'dom_attr_is_id' => 
2161   array (
2162     'return' => 'boolean',
2163     'params' => '',
2164     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Attr-isIdSince: DOM Level 3',
2165   ),
2166   'dom_domimplementationlist_item' => 
2167   array (
2168     'return' => 'domdomimplementation',
2169     'params' => 'int index',
2170     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMImplementationList-itemSince:',
2171   ),
2172   'dom_nodelist_item' => 
2173   array (
2174     'return' => 'DOMNode',
2175     'params' => 'int index',
2176     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-844377136Since:',
2177   ),
2178   'PDO::pgsqlLOBCreate' => 
2179   array (
2180     'return' => 'string',
2181     'params' => '',
2182     'description' => 'Creates a new large object, returning its identifier.  Must be called inside a transaction.',
2183   ),
2184   'PDO::pgsqlLOBOpen' => 
2185   array (
2186     'return' => 'resource',
2187     'params' => 'string oid [, string mode = \'rb\']',
2188     'description' => 'Opens an existing large object stream.  Must be called inside a transaction.',
2189   ),
2190   'PDO::pgsqlLOBUnlink' => 
2191   array (
2192     'return' => 'bool',
2193     'params' => 'string oid',
2194     'description' => 'Deletes the large object identified by oid.  Must be called inside a transaction.',
2195   ),
2196   'xmlrpc_encode_request' => 
2197   array (
2198     'return' => 'string',
2199     'params' => 'string method, mixed params',
2200     'description' => 'Generates XML for a method request',
2201   ),
2202   'xmlrpc_encode' => 
2203   array (
2204     'return' => 'string',
2205     'params' => 'mixed value',
2206     'description' => 'Generates XML for a PHP value',
2207   ),
2208   'xmlrpc_decode_request' => 
2209   array (
2210     'return' => 'array',
2211     'params' => 'string xml, string& method [, string encoding]',
2212     'description' => 'Decodes XML into native PHP types',
2213   ),
2214   'xmlrpc_decode' => 
2215   array (
2216     'return' => 'array',
2217     'params' => 'string xml [, string encoding]',
2218     'description' => 'Decodes XML into native PHP types',
2219   ),
2220   'xmlrpc_server_create' => 
2221   array (
2222     'return' => 'resource',
2223     'params' => 'void',
2224     'description' => 'Creates an xmlrpc server',
2225   ),
2226   'xmlrpc_server_destroy' => 
2227   array (
2228     'return' => 'int',
2229     'params' => 'resource server',
2230     'description' => 'Destroys server resources',
2231   ),
2232   'xmlrpc_server_register_method' => 
2233   array (
2234     'return' => 'bool',
2235     'params' => 'resource server, string method_name, string function',
2236     'description' => 'Register a PHP function to handle method matching method_name',
2237   ),
2238   'xmlrpc_server_register_introspection_callback' => 
2239   array (
2240     'return' => 'bool',
2241     'params' => 'resource server, string function',
2242     'description' => 'Register a PHP function to generate documentation',
2243   ),
2244   'xmlrpc_server_call_method' => 
2245   array (
2246     'return' => 'mixed',
2247     'params' => 'resource server, string xml, mixed user_data [, array output_options]',
2248     'description' => 'Parses XML requests and call methods',
2249   ),
2250   'xmlrpc_server_add_introspection_data' => 
2251   array (
2252     'return' => 'int',
2253     'params' => 'resource server, array desc',
2254     'description' => 'Adds introspection documentation',
2255   ),
2256   'xmlrpc_parse_method_descriptions' => 
2257   array (
2258     'return' => 'array',
2259     'params' => 'string xml',
2260     'description' => 'Decodes XML into a list of method descriptions',
2261   ),
2262   'xmlrpc_set_type' => 
2263   array (
2264     'return' => 'bool',
2265     'params' => 'string value, string type',
2266     'description' => 'Sets xmlrpc type, base64 or datetime, for a PHP string value',
2267   ),
2268   'xmlrpc_get_type' => 
2269   array (
2270     'return' => 'string',
2271     'params' => 'mixed value',
2272     'description' => 'Gets xmlrpc type for a PHP value. Especially useful for base64 and datetime strings',
2273   ),
2274   'xmlrpc_is_fault' => 
2275   array (
2276     'return' => 'bool',
2277     'params' => 'array',
2278     'description' => 'Determines if an array value represents an XMLRPC fault.',
2279   ),
2280   'textdomain' => 
2281   array (
2282     'return' => 'string',
2283     'params' => 'string domain',
2284     'description' => 'Set the textdomain to "domain". Returns the current domain',
2285   ),
2286   'gettext' => 
2287   array (
2288     'return' => 'string',
2289     'params' => 'string msgid',
2290     'description' => 'Return the translation of msgid for the current domain, or msgid unaltered if a translation does not exist',
2291   ),
2292   'dgettext' => 
2293   array (
2294     'return' => 'string',
2295     'params' => 'string domain_name, string msgid',
2296     'description' => 'Return the translation of msgid for domain_name, or msgid unaltered if a translation does not exist',
2297   ),
2298   'dcgettext' => 
2299   array (
2300     'return' => 'string',
2301     'params' => 'string domain_name, string msgid, long category',
2302     'description' => 'Return the translation of msgid for domain_name and category, or msgid unaltered if a translation does not exist',
2303   ),
2304   'bindtextdomain' => 
2305   array (
2306     'return' => 'string',
2307     'params' => 'string domain_name, string dir',
2308     'description' => 'Bind to the text domain domain_name, looking for translations in dir. Returns the current domain',
2309   ),
2310   'ngettext' => 
2311   array (
2312     'return' => 'string',
2313     'params' => 'string MSGID1, string MSGID2, int N',
2314     'description' => 'Plural version of gettext()',
2315   ),
2316   'msg_set_queue' => 
2317   array (
2318     'return' => 'bool',
2319     'params' => 'resource queue, array data',
2320     'description' => 'Set information for a message queue',
2321   ),
2322   'msg_stat_queue' => 
2323   array (
2324     'return' => 'array',
2325     'params' => 'resource queue',
2326     'description' => 'Returns information about a message queue',
2327   ),
2328   'msg_get_queue' => 
2329   array (
2330     'return' => 'resource',
2331     'params' => 'int key [, int perms]',
2332     'description' => 'Attach to a message queue',
2333   ),
2334   'msg_remove_queue' => 
2335   array (
2336     'return' => 'bool',
2337     'params' => 'resource queue',
2338     'description' => 'Destroy the queue',
2339   ),
2340   'msg_receive' => 
2341   array (
2342     'return' => 'mixed',
2343     'params' => 'resource queue, int desiredmsgtype, int &msgtype, int maxsize, mixed message [, bool unserialize=true [, int flags=0 [, int errorcode]]]',
2344     'description' => 'Send a message of type msgtype (must be > 0) to a message queue',
2345   ),
2346   'msg_send' => 
2347   array (
2348     'return' => 'bool',
2349     'params' => 'resource queue, int msgtype, mixed message [, bool serialize=true [, bool blocking=true [, int errorcode]]]',
2350     'description' => 'Send a message of type msgtype (must be > 0) to a message queue',
2351   ),
2352   'xml_parser_create' => 
2353   array (
2354     'return' => 'resource',
2355     'params' => '[string encoding]',
2356     'description' => 'Create an XML parser',
2357   ),
2358   'xml_parser_create_ns' => 
2359   array (
2360     'return' => 'resource',
2361     'params' => '[string encoding [, string sep]]',
2362     'description' => 'Create an XML parser',
2363   ),
2364   'xml_set_object' => 
2365   array (
2366     'return' => 'int',
2367     'params' => 'resource parser, object &obj',
2368     'description' => 'Set up object which should be used for callbacks',
2369   ),
2370   'xml_set_element_handler' => 
2371   array (
2372     'return' => 'int',
2373     'params' => 'resource parser, string shdl, string ehdl',
2374     'description' => 'Set up start and end element handlers',
2375   ),
2376   'xml_set_character_data_handler' => 
2377   array (
2378     'return' => 'int',
2379     'params' => 'resource parser, string hdl',
2380     'description' => 'Set up character data handler',
2381   ),
2382   'xml_set_processing_instruction_handler' => 
2383   array (
2384     'return' => 'int',
2385     'params' => 'resource parser, string hdl',
2386     'description' => 'Set up processing instruction (PI) handler',
2387   ),
2388   'xml_set_default_handler' => 
2389   array (
2390     'return' => 'int',
2391     'params' => 'resource parser, string hdl',
2392     'description' => 'Set up default handler',
2393   ),
2394   'xml_set_unparsed_entity_decl_handler' => 
2395   array (
2396     'return' => 'int',
2397     'params' => 'resource parser, string hdl',
2398     'description' => 'Set up unparsed entity declaration handler',
2399   ),
2400   'xml_set_notation_decl_handler' => 
2401   array (
2402     'return' => 'int',
2403     'params' => 'resource parser, string hdl',
2404     'description' => 'Set up notation declaration handler',
2405   ),
2406   'xml_set_external_entity_ref_handler' => 
2407   array (
2408     'return' => 'int',
2409     'params' => 'resource parser, string hdl',
2410     'description' => 'Set up external entity reference handler',
2411   ),
2412   'xml_set_start_namespace_decl_handler' => 
2413   array (
2414     'return' => 'int',
2415     'params' => 'resource parser, string hdl',
2416     'description' => 'Set up character data handler',
2417   ),
2418   'xml_set_end_namespace_decl_handler' => 
2419   array (
2420     'return' => 'int',
2421     'params' => 'resource parser, string hdl',
2422     'description' => 'Set up character data handler',
2423   ),
2424   'xml_parse' => 
2425   array (
2426     'return' => 'int',
2427     'params' => 'resource parser, string data [, int isFinal]',
2428     'description' => 'Start parsing an XML document',
2429   ),
2430   'xml_parse_into_struct' => 
2431   array (
2432     'return' => 'int',
2433     'params' => 'resource parser, string data, array &struct, array &index',
2434     'description' => 'Parsing a XML document',
2435   ),
2436   'xml_get_error_code' => 
2437   array (
2438     'return' => 'int',
2439     'params' => 'resource parser',
2440     'description' => 'Get XML parser error code',
2441   ),
2442   'xml_error_string' => 
2443   array (
2444     'return' => 'string',
2445     'params' => 'int code',
2446     'description' => 'Get XML parser error string',
2447   ),
2448   'xml_get_current_line_number' => 
2449   array (
2450     'return' => 'int',
2451     'params' => 'resource parser',
2452     'description' => 'Get current line number for an XML parser',
2453   ),
2454   'xml_get_current_column_number' => 
2455   array (
2456     'return' => 'int',
2457     'params' => 'resource parser',
2458     'description' => 'Get current column number for an XML parser',
2459   ),
2460   'xml_get_current_byte_index' => 
2461   array (
2462     'return' => 'int',
2463     'params' => 'resource parser',
2464     'description' => 'Get current byte index for an XML parser',
2465   ),
2466   'xml_parser_free' => 
2467   array (
2468     'return' => 'int',
2469     'params' => 'resource parser',
2470     'description' => 'Free an XML parser',
2471   ),
2472   'xml_parser_set_option' => 
2473   array (
2474     'return' => 'int',
2475     'params' => 'resource parser, int option, mixed value',
2476     'description' => 'Set options in an XML parser',
2477   ),
2478   'xml_parser_get_option' => 
2479   array (
2480     'return' => 'int',
2481     'params' => 'resource parser, int option',
2482     'description' => 'Get options from an XML parser',
2483   ),
2484   'utf8_encode' => 
2485   array (
2486     'return' => 'string',
2487     'params' => 'string data',
2488     'description' => 'Encodes an ISO-8859-1 string to UTF-8',
2489   ),
2490   'utf8_decode' => 
2491   array (
2492     'return' => 'string',
2493     'params' => 'string data',
2494     'description' => 'Converts a UTF-8 encoded string to ISO-8859-1',
2495   ),
2496   'shm_attach' => 
2497   array (
2498     'return' => 'int',
2499     'params' => 'int key [, int memsize [, int perm]]',
2500     'description' => 'Creates or open a shared memory segment',
2501   ),
2502   'shm_detach' => 
2503   array (
2504     'return' => 'bool',
2505     'params' => 'int shm_identifier',
2506     'description' => 'Disconnects from shared memory segment',
2507   ),
2508   'shm_remove' => 
2509   array (
2510     'return' => 'bool',
2511     'params' => 'int shm_identifier',
2512     'description' => 'Removes shared memory from Unix systems',
2513   ),
2514   'shm_put_var' => 
2515   array (
2516     'return' => 'bool',
2517     'params' => 'int shm_identifier, int variable_key, mixed variable',
2518     'description' => 'Inserts or updates a variable in shared memory',
2519   ),
2520   'shm_get_var' => 
2521   array (
2522     'return' => 'mixed',
2523     'params' => 'int id, int variable_key',
2524     'description' => 'Returns a variable from shared memory',
2525   ),
2526   'shm_remove_var' => 
2527   array (
2528     'return' => 'bool',
2529     'params' => 'int id, int variable_key',
2530     'description' => 'Removes variable from shared memory',
2531   ),
2532   'socket_select' => 
2533   array (
2534     'return' => 'int',
2535     'params' => 'array &read_fds, array &write_fds, &array except_fds, int tv_sec[, int tv_usec]',
2536     'description' => 'Runs the select() system call on the sets mentioned with a timeout specified by tv_sec and tv_usec',
2537   ),
2538   'socket_create_listen' => 
2539   array (
2540     'return' => 'resource',
2541     'params' => 'int port[, int backlog]',
2542     'description' => 'Opens a socket on port to accept connections',
2543   ),
2544   'socket_accept' => 
2545   array (
2546     'return' => 'resource',
2547     'params' => 'resource socket',
2548     'description' => 'Accepts a connection on the listening socket fd',
2549   ),
2550   'socket_set_nonblock' => 
2551   array (
2552     'return' => 'bool',
2553     'params' => 'resource socket',
2554     'description' => 'Sets nonblocking mode on a socket resource',
2555   ),
2556   'socket_set_block' => 
2557   array (
2558     'return' => 'bool',
2559     'params' => 'resource socket',
2560     'description' => 'Sets blocking mode on a socket resource',
2561   ),
2562   'socket_listen' => 
2563   array (
2564     'return' => 'bool',
2565     'params' => 'resource socket[, int backlog]',
2566     'description' => 'Sets the maximum number of connections allowed to be waited for on the socket specified by fd',
2567   ),
2568   'socket_close' => 
2569   array (
2570     'return' => 'void',
2571     'params' => 'resource socket',
2572     'description' => 'Closes a file descriptor',
2573   ),
2574   'socket_write' => 
2575   array (
2576     'return' => 'int',
2577     'params' => 'resource socket, string buf[, int length]',
2578     'description' => 'Writes the buffer to the socket resource, length is optional',
2579   ),
2580   'socket_read' => 
2581   array (
2582     'return' => 'string',
2583     'params' => 'resource socket, int length [, int type]',
2584     'description' => 'Reads a maximum of length bytes from socket',
2585   ),
2586   'socket_getsockname' => 
2587   array (
2588     'return' => 'bool',
2589     'params' => 'resource socket, string &addr[, int &port]',
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   ),
2592   'socket_getpeername' => 
2593   array (
2594     'return' => 'bool',
2595     'params' => 'resource socket, string &addr[, int &port]',
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   ),
2598   'socket_create' => 
2599   array (
2600     'return' => 'resource',
2601     'params' => 'int domain, int type, int protocol',
2602     'description' => 'Creates an endpoint for communication in the domain specified by domain, of type specified by type',
2603   ),
2604   'socket_connect' => 
2605   array (
2606     'return' => 'bool',
2607     'params' => 'resource socket, string addr [, int port]',
2608     'description' => 'Opens a connection to addr:port on the socket specified by socket',
2609   ),
2610   'socket_strerror' => 
2611   array (
2612     'return' => 'string',
2613     'params' => 'int errno',
2614     'description' => 'Returns a string describing an error',
2615   ),
2616   'socket_bind' => 
2617   array (
2618     'return' => 'bool',
2619     'params' => 'resource socket, string addr [, int port]',
2620     'description' => 'Binds an open socket to a listening port, port is only specified in AF_INET family.',
2621   ),
2622   'socket_recv' => 
2623   array (
2624     'return' => 'int',
2625     'params' => 'resource socket, string &buf, int len, int flags',
2626     'description' => 'Receives data from a connected socket',
2627   ),
2628   'socket_send' => 
2629   array (
2630     'return' => 'int',
2631     'params' => 'resource socket, string buf, int len, int flags',
2632     'description' => 'Sends data to a connected socket',
2633   ),
2634   'socket_recvfrom' => 
2635   array (
2636     'return' => 'int',
2637     'params' => 'resource socket, string &buf, int len, int flags, string &name [, int &port]',
2638     'description' => 'Receives data from a socket, connected or not',
2639   ),
2640   'socket_sendto' => 
2641   array (
2642     'return' => 'int',
2643     'params' => 'resource socket, string buf, int len, int flags, string addr [, int port]',
2644     'description' => 'Sends a message to a socket, whether it is connected or not',
2645   ),
2646   'socket_get_option' => 
2647   array (
2648     'return' => 'mixed',
2649     'params' => 'resource socket, int level, int optname',
2650     'description' => 'Gets socket options for the socket',
2651   ),
2652   'socket_set_option' => 
2653   array (
2654     'return' => 'bool',
2655     'params' => 'resource socket, int level, int optname, int|array optval',
2656     'description' => 'Sets socket options for the socket',
2657   ),
2658   'socket_create_pair' => 
2659   array (
2660     'return' => 'bool',
2661     'params' => 'int domain, int type, int protocol, array &fd',
2662     'description' => 'Creates a pair of indistinguishable sockets and stores them in fds.',
2663   ),
2664   'socket_shutdown' => 
2665   array (
2666     'return' => 'bool',
2667     'params' => 'resource socket[, int how]',
2668     'description' => 'Shuts down a socket for receiving, sending, or both.',
2669   ),
2670   'socket_last_error' => 
2671   array (
2672     'return' => 'int',
2673     'params' => '[resource socket]',
2674     'description' => 'Returns the last socket error (either the last used or the provided socket resource)',
2675   ),
2676   'socket_clear_error' => 
2677   array (
2678     'return' => 'void',
2679     'params' => '[resource socket]',
2680     'description' => 'Clears the error on the socket or the last error code.',
2681   ),
2682   'sybase_connect' => 
2683   array (
2684     'return' => 'int',
2685     'params' => '[string host [, string user [, string password [, string charset [, string appname]]]]]',
2686     'description' => 'Open Sybase server connection',
2687   ),
2688   'sybase_pconnect' => 
2689   array (
2690     'return' => 'int',
2691     'params' => '[string host [, string user [, string password [, string charset [, string appname]]]]]',
2692     'description' => 'Open persistent Sybase connection',
2693   ),
2694   'sybase_close' => 
2695   array (
2696     'return' => 'bool',
2697     'params' => '[int link_id]',
2698     'description' => 'Close Sybase connection',
2699   ),
2700   'sybase_select_db' => 
2701   array (
2702     'return' => 'bool',
2703     'params' => 'string database [, int link_id]',
2704     'description' => 'Select Sybase database',
2705   ),
2706   'sybase_query' => 
2707   array (
2708     'return' => 'int',
2709     'params' => 'string query [, int link_id]',
2710     'description' => 'Send Sybase query',
2711   ),
2712   'sybase_free_result' => 
2713   array (
2714     'return' => 'bool',
2715     'params' => 'int result',
2716     'description' => 'Free result memory',
2717   ),
2718   'sybase_get_last_message' => 
2719   array (
2720     'return' => 'string',
2721     'params' => 'void',
2722     'description' => 'Returns the last message from server (over min_message_severity)',
2723   ),
2724   'sybase_num_rows' => 
2725   array (
2726     'return' => 'int',
2727     'params' => 'int result',
2728     'description' => 'Get number of rows in result',
2729   ),
2730   'sybase_num_fields' => 
2731   array (
2732     'return' => 'int',
2733     'params' => 'int result',
2734     'description' => 'Get number of fields in result',
2735   ),
2736   'sybase_fetch_row' => 
2737   array (
2738     'return' => 'array',
2739     'params' => 'int result',
2740     'description' => 'Get row as enumerated array',
2741   ),
2742   'sybase_fetch_object' => 
2743   array (
2744     'return' => 'object',
2745     'params' => 'int result [, mixed object]',
2746     'description' => 'Fetch row as object',
2747   ),
2748   'sybase_fetch_array' => 
2749   array (
2750     'return' => 'array',
2751     'params' => 'int result',
2752     'description' => 'Fetch row as array',
2753   ),
2754   'sybase_data_seek' => 
2755   array (
2756     'return' => 'bool',
2757     'params' => 'int result, int offset',
2758     'description' => 'Move internal row pointer',
2759   ),
2760   'sybase_fetch_field' => 
2761   array (
2762     'return' => 'object',
2763     'params' => 'int result [, int offset]',
2764     'description' => 'Get field information',
2765   ),
2766   'sybase_field_seek' => 
2767   array (
2768     'return' => 'bool',
2769     'params' => 'int result, int offset',
2770     'description' => 'Set field offset',
2771   ),
2772   'sybase_result' => 
2773   array (
2774     'return' => 'string',
2775     'params' => 'int result, int row, mixed field',
2776     'description' => 'Get result data',
2777   ),
2778   'sybase_affected_rows' => 
2779   array (
2780     'return' => 'int',
2781     'params' => '[int link_id]',
2782     'description' => 'Get number of affected rows in last query',
2783   ),
2784   'sybase_min_error_severity' => 
2785   array (
2786     'return' => 'void',
2787     'params' => 'int severity',
2788     'description' => 'Sets the minimum error severity',
2789   ),
2790   'sybase_min_message_severity' => 
2791   array (
2792     'return' => 'void',
2793     'params' => 'int severity',
2794     'description' => 'Sets the minimum message severity',
2795   ),
2796   'confirm_extname_compiled' => 
2797   array (
2798     'return' => 'string',
2799     'params' => 'string arg',
2800     'description' => 'Return a string to confirm that the module is compiled in',
2801   ),
2802   'fdf_open' => 
2803   array (
2804     'return' => 'resource',
2805     'params' => 'string filename',
2806     'description' => 'Opens a new FDF document',
2807   ),
2808   'fdf_open_string' => 
2809   array (
2810     'return' => 'resource',
2811     'params' => 'string fdf_data',
2812     'description' => 'Opens a new FDF document from string',
2813   ),
2814   'fdf_create' => 
2815   array (
2816     'return' => 'resource',
2817     'params' => 'void',
2818     'description' => 'Creates a new FDF document',
2819   ),
2820   'fdf_close' => 
2821   array (
2822     'return' => 'void',
2823     'params' => 'resource fdfdoc',
2824     'description' => 'Closes the FDF document',
2825   ),
2826   'fdf_get_value' => 
2827   array (
2828     'return' => 'string',
2829     'params' => 'resource fdfdoc, string fieldname [, int which]',
2830     'description' => 'Gets the value of a field as string',
2831   ),
2832   'fdf_set_value' => 
2833   array (
2834     'return' => 'bool',
2835     'params' => 'resource fdfdoc, string fieldname, mixed value [, int isname]',
2836     'description' => 'Sets the value of a field',
2837   ),
2838   'fdf_next_field_name' => 
2839   array (
2840     'return' => 'string',
2841     'params' => 'resource fdfdoc [, string fieldname]',
2842     'description' => 'Gets the name of the next field name or the first field name',
2843   ),
2844   'fdf_set_ap' => 
2845   array (
2846     'return' => 'bool',
2847     'params' => 'resource fdfdoc, string fieldname, int face, string filename, int pagenr',
2848     'description' => 'Sets the appearence of a field',
2849   ),
2850   'fdf_get_ap' => 
2851   array (
2852     'return' => 'bool',
2853     'params' => 'resource fdfdoc, string fieldname, int face, string filename',
2854     'description' => 'Gets the appearance of a field and creates a PDF document out of it.',
2855   ),
2856   'fdf_get_encoding' => 
2857   array (
2858     'return' => 'string',
2859     'params' => 'resource fdf',
2860     'description' => 'Gets FDF file encoding scheme',
2861   ),
2862   'fdf_set_status' => 
2863   array (
2864     'return' => 'bool',
2865     'params' => 'resource fdfdoc, string status',
2866     'description' => 'Sets the value of /Status key',
2867   ),
2868   'fdf_get_status' => 
2869   array (
2870     'return' => 'string',
2871     'params' => 'resource fdfdoc',
2872     'description' => 'Gets the value of /Status key',
2873   ),
2874   'fdf_set_file' => 
2875   array (
2876     'return' => 'bool',
2877     'params' => 'resource fdfdoc, string filename [, string target_frame]',
2878     'description' => 'Sets the value of /F key',
2879   ),
2880   'fdf_get_file' => 
2881   array (
2882     'return' => 'string',
2883     'params' => 'resource fdfdoc',
2884     'description' => 'Gets the value of /F key',
2885   ),
2886   'fdf_save' => 
2887   array (
2888     'return' => 'bool',
2889     'params' => 'resource fdfdoc [, string filename]',
2890     'description' => 'Writes out the FDF file',
2891   ),
2892   'fdf_save_string' => 
2893   array (
2894     'return' => 'string',
2895     'params' => 'resource fdfdoc',
2896     'description' => 'Returns the FDF file as a string',
2897   ),
2898   'fdf_add_template' => 
2899   array (
2900     'return' => 'bool',
2901     'params' => 'resource fdfdoc, int newpage, string filename, string template, int rename',
2902     'description' => 'Adds a template into the FDF document',
2903   ),
2904   'fdf_set_flags' => 
2905   array (
2906     'return' => 'bool',
2907     'params' => 'resource fdfdoc, string fieldname, int whichflags, int newflags',
2908     'description' => 'Sets flags for a field in the FDF document',
2909   ),
2910   'fdf_get_flags' => 
2911   array (
2912     'return' => 'int',
2913     'params' => 'resorce fdfdoc, string fieldname, int whichflags',
2914     'description' => 'Gets the flags of a field',
2915   ),
2916   'fdf_set_opt' => 
2917   array (
2918     'return' => 'bool',
2919     'params' => 'resource fdfdoc, string fieldname, int element, string value, string name',
2920     'description' => 'Sets a value in the opt array for a field',
2921   ),
2922   'fdf_get_opt' => 
2923   array (
2924     'return' => 'mixed',
2925     'params' => 'resource fdfdof, string fieldname [, int element]',
2926     'description' => 'Gets a value from the opt array of a field',
2927   ),
2928   'fdf_set_submit_form_action' => 
2929   array (
2930     'return' => 'bool',
2931     'params' => 'resource fdfdoc, string fieldname, int whichtrigger, string url, int flags',
2932     'description' => 'Sets the submit form action for a field',
2933   ),
2934   'fdf_set_javascript_action' => 
2935   array (
2936     'return' => 'bool',
2937     'params' => 'resource fdfdoc, string fieldname, int whichtrigger, string script',
2938     'description' => 'Sets the javascript action for a field',
2939   ),
2940   'fdf_set_encoding' => 
2941   array (
2942     'return' => 'bool',
2943     'params' => 'resource fdf_document, string encoding',
2944     'description' => 'Sets FDF encoding (either "Shift-JIS" or "Unicode")',
2945   ),
2946   'fdf_errno' => 
2947   array (
2948     'return' => 'int',
2949     'params' => 'void',
2950     'description' => 'Gets error code for last operation',
2951   ),
2952   'fdf_error' => 
2953   array (
2954     'return' => 'string',
2955     'params' => '[int errno]',
2956     'description' => 'Gets error description for error code',
2957   ),
2958   'fdf_get_version' => 
2959   array (
2960     'return' => 'string',
2961     'params' => '[resource fdfdoc]',
2962     'description' => 'Gets version number for FDF api or file',
2963   ),
2964   'fdf_set_version' => 
2965   array (
2966     'return' => 'bool',
2967     'params' => 'resourece fdfdoc, string version',
2968     'description' => 'Sets FDF version for a file',
2969   ),
2970   'fdf_add_doc_javascript' => 
2971   array (
2972     'return' => 'bool',
2973     'params' => 'resource fdfdoc, string scriptname, string script',
2974     'description' => 'Add javascript code to the fdf file',
2975   ),
2976   'fdf_set_on_import_javascript' => 
2977   array (
2978     'return' => 'bool',
2979     'params' => 'resource fdfdoc, string script [, bool before_data_import]',
2980     'description' => 'Adds javascript code to be executed when Acrobat opens the FDF',
2981   ),
2982   'fdf_set_target_frame' => 
2983   array (
2984     'return' => 'bool',
2985     'params' => 'resource fdfdoc, string target',
2986     'description' => 'Sets target frame for form',
2987   ),
2988   'fdf_remove_item' => 
2989   array (
2990     'return' => 'bool',
2991     'params' => 'resource fdfdoc, string fieldname, int item',
2992     'description' => 'Sets target frame for form',
2993   ),
2994   'fdf_get_attachment' => 
2995   array (
2996     'return' => 'array',
2997     'params' => 'resource fdfdoc, string fieldname, string savepath',
2998     'description' => 'Get attached uploaded file',
2999   ),
3000   'fdf_enum_values' => 
3001   array (
3002     'return' => 'bool',
3003     'params' => 'resource fdfdoc, callback function [, mixed userdata]',
3004     'description' => 'Call a user defined function for each document value',
3005   ),
3006   'fdf_header' => 
3007   array (
3008     'return' => 'void',
3009     'params' => 'void',
3010     'description' => 'Set FDF specific HTTP headers',
3011   ),
3012   'variant_set' => 
3013   array (
3014     'return' => 'void',
3015     'params' => 'object variant, mixed value',
3016     'description' => 'Assigns a new value for a variant object',
3017   ),
3018   'variant_add' => 
3019   array (
3020     'return' => 'mixed',
3021     'params' => 'mixed left, mixed right',
3022     'description' => '"Adds" two variant values together and returns the result',
3023   ),
3024   'variant_cat' => 
3025   array (
3026     'return' => 'mixed',
3027     'params' => 'mixed left, mixed right',
3028     'description' => 'concatenates two variant values together and returns the result',
3029   ),
3030   'variant_sub' => 
3031   array (
3032     'return' => 'mixed',
3033     'params' => 'mixed left, mixed right',
3034     'description' => 'subtracts the value of the right variant from the left variant value and returns the result',
3035   ),
3036   'variant_mul' => 
3037   array (
3038     'return' => 'mixed',
3039     'params' => 'mixed left, mixed right',
3040     'description' => 'multiplies the values of the two variants and returns the result',
3041   ),
3042   'variant_and' => 
3043   array (
3044     'return' => 'mixed',
3045     'params' => 'mixed left, mixed right',
3046     'description' => 'performs a bitwise AND operation between two variants and returns the result',
3047   ),
3048   'variant_div' => 
3049   array (
3050     'return' => 'mixed',
3051     'params' => 'mixed left, mixed right',
3052     'description' => 'Returns the result from dividing two variants',
3053   ),
3054   'variant_eqv' => 
3055   array (
3056     'return' => 'mixed',
3057     'params' => 'mixed left, mixed right',
3058     'description' => 'Performs a bitwise equivalence on two variants',
3059   ),
3060   'variant_idiv' => 
3061   array (
3062     'return' => 'mixed',
3063     'params' => 'mixed left, mixed right',
3064     'description' => 'Converts variants to integers and then returns the result from dividing them',
3065   ),
3066   'variant_imp' => 
3067   array (
3068     'return' => 'mixed',
3069     'params' => 'mixed left, mixed right',
3070     'description' => 'Performs a bitwise implication on two variants',
3071   ),
3072   'variant_mod' => 
3073   array (
3074     'return' => 'mixed',
3075     'params' => 'mixed left, mixed right',
3076     'description' => 'Divides two variants and returns only the remainder',
3077   ),
3078   'variant_or' => 
3079   array (
3080     'return' => 'mixed',
3081     'params' => 'mixed left, mixed right',
3082     'description' => 'Performs a logical disjunction on two variants',
3083   ),
3084   'variant_pow' => 
3085   array (
3086     'return' => 'mixed',
3087     'params' => 'mixed left, mixed right',
3088     'description' => 'Returns the result of performing the power function with two variants',
3089   ),
3090   'variant_xor' => 
3091   array (
3092     'return' => 'mixed',
3093     'params' => 'mixed left, mixed right',
3094     'description' => 'Performs a logical exclusion on two variants',
3095   ),
3096   'variant_abs' => 
3097   array (
3098     'return' => 'mixed',
3099     'params' => 'mixed left',
3100     'description' => 'Returns the absolute value of a variant',
3101   ),
3102   'variant_fix' => 
3103   array (
3104     'return' => 'mixed',
3105     'params' => 'mixed left',
3106     'description' => 'Returns the integer part ? of a variant',
3107   ),
3108   'variant_int' => 
3109   array (
3110     'return' => 'mixed',
3111     'params' => 'mixed left',
3112     'description' => 'Returns the integer portion of a variant',
3113   ),
3114   'variant_neg' => 
3115   array (
3116     'return' => 'mixed',
3117     'params' => 'mixed left',
3118     'description' => 'Performs logical negation on a variant',
3119   ),
3120   'variant_not' => 
3121   array (
3122     'return' => 'mixed',
3123     'params' => 'mixed left',
3124     'description' => 'Performs bitwise not negation on a variant',
3125   ),
3126   'variant_round' => 
3127   array (
3128     'return' => 'mixed',
3129     'params' => 'mixed left, int decimals',
3130     'description' => 'Rounds a variant to the specified number of decimal places',
3131   ),
3132   'variant_cmp' => 
3133   array (
3134     'return' => 'int',
3135     'params' => 'mixed left, mixed right [, int lcid [, int flags]]',
3136     'description' => 'Compares two variants',
3137   ),
3138   'variant_date_to_timestamp' => 
3139   array (
3140     'return' => 'int',
3141     'params' => 'object variant',
3142     'description' => 'Converts a variant date/time value to unix timestamp',
3143   ),
3144   'variant_date_from_timestamp' => 
3145   array (
3146     'return' => 'object',
3147     'params' => 'int timestamp',
3148     'description' => 'Returns a variant date representation of a unix timestamp',
3149   ),
3150   'variant_get_type' => 
3151   array (
3152     'return' => 'int',
3153     'params' => 'object variant',
3154     'description' => 'Returns the VT_XXX type code for a variant',
3155   ),
3156   'variant_set_type' => 
3157   array (
3158     'return' => 'void',
3159     'params' => 'object variant, int type',
3160     'description' => 'Convert a variant into another type.  Variant is modified "in-place"',
3161   ),
3162   'variant_cast' => 
3163   array (
3164     'return' => 'object',
3165     'params' => 'object variant, int type',
3166     'description' => 'Convert a variant into a new variant object of another type',
3167   ),
3168   'com_get_active_object' => 
3169   array (
3170     'return' => 'object',
3171     'params' => 'string progid [, int code_page ]',
3172     'description' => 'Returns a handle to an already running instance of a COM object',
3173   ),
3174   'com_create_guid' => 
3175   array (
3176     'return' => 'string',
3177     'params' => '',
3178     'description' => 'Generate a globally unique identifier (GUID)',
3179   ),
3180   'com_event_sink' => 
3181   array (
3182     'return' => 'bool',
3183     'params' => 'object comobject, object sinkobject [, mixed sinkinterface]',
3184     'description' => 'Connect events from a COM object to a PHP object',
3185   ),
3186   'com_print_typeinfo' => 
3187   array (
3188     'return' => 'bool',
3189     'params' => 'object comobject | string typelib, string dispinterface, bool wantsink',
3190     'description' => 'Print out a PHP class definition for a dispatchable interface',
3191   ),
3192   'com_message_pump' => 
3193   array (
3194     'return' => 'bool',
3195     'params' => '[int timeoutms]',
3196     'description' => 'Process COM messages, sleeping for up to timeoutms milliseconds',
3197   ),
3198   'com_load_typelib' => 
3199   array (
3200     'return' => 'bool',
3201     'params' => 'string typelib_name [, int case_insensitive]',
3202     'description' => 'Loads a Typelibrary and registers its constants',
3203   ),
3204   'COMPersistHelper::GetCurFile' => 
3205   array (
3206     'return' => 'string',
3207     'params' => '',
3208     'description' => 'Determines the filename into which an object will be saved, or false if none is set, via IPersistFile::GetCurFile',
3209   ),
3210   'COMPersistHelper::SaveToFile' => 
3211   array (
3212     'return' => 'bool',
3213     'params' => 'string filename [, bool remember]',
3214     'description' => 'Persist object data to file, via IPersistFile::Save',
3215   ),
3216   'COMPersistHelper::LoadFromFile' => 
3217   array (
3218     'return' => 'bool',
3219     'params' => 'string filename [, int flags]',
3220     'description' => 'Load object data from file, via IPersistFile::Load',
3221   ),
3222   'COMPersistHelper::GetMaxStreamSize' => 
3223   array (
3224     'return' => 'int',
3225     'params' => '',
3226     'description' => 'Gets maximum stream size required to store the object data, via IPersistStream::GetSizeMax (or IPersistStreamInit::GetSizeMax)',
3227   ),
3228   'COMPersistHelper::InitNew' => 
3229   array (
3230     'return' => 'int',
3231     'params' => '',
3232     'description' => 'Initializes the object to a default state, via IPersistStreamInit::InitNew',
3233   ),
3234   'COMPersistHelper::LoadFromStream' => 
3235   array (
3236     'return' => 'mixed',
3237     'params' => 'resource stream',
3238     'description' => 'Initializes an object from the stream where it was previously saved, via IPersistStream::Load or OleLoadFromStream',
3239   ),
3240   'COMPersistHelper::SaveToStream' => 
3241   array (
3242     'return' => 'int',
3243     'params' => 'resource stream',
3244     'description' => 'Saves the object to a stream, via IPersistStream::Save',
3245   ),
3246   'COMPersistHelper::__construct' => 
3247   array (
3248     'return' => 'int',
3249     'params' => '[object com_object]',
3250     'description' => 'Creates a persistence helper object, usually associated with a com_object',
3251   ),
3252   'pg_connect' => 
3253   array (
3254     'return' => 'resource',
3255     'params' => 'string connection_string[, int connect_type] | [string host, string port [, string options [, string tty,]]] string database',
3256     'description' => 'Open a PostgreSQL connection',
3257   ),
3258   'pg_pconnect' => 
3259   array (
3260     'return' => 'resource',
3261     'params' => 'string connection_string | [string host, string port [, string options [, string tty,]]] string database',
3262     'description' => 'Open a persistent PostgreSQL connection',
3263   ),
3264   'pg_close' => 
3265   array (
3266     'return' => 'bool',
3267     'params' => '[resource connection]',
3268     'description' => 'Close a PostgreSQL connection',
3269   ),
3270   'pg_dbname' => 
3271   array (
3272     'return' => 'string',
3273     'params' => '[resource connection]',
3274     'description' => 'Get the database name',
3275   ),
3276   'pg_last_error' => 
3277   array (
3278     'return' => 'string',
3279     'params' => '[resource connection]',
3280     'description' => 'Get the error message string',
3281   ),
3282   'pg_options' => 
3283   array (
3284     'return' => 'string',
3285     'params' => '[resource connection]',
3286     'description' => 'Get the options associated with the connection',
3287   ),
3288   'pg_port' => 
3289   array (
3290     'return' => 'int',
3291     'params' => '[resource connection]',
3292     'description' => 'Return the port number associated with the connection',
3293   ),
3294   'pg_tty' => 
3295   array (
3296     'return' => 'string',
3297     'params' => '[resource connection]',
3298     'description' => 'Return the tty name associated with the connection',
3299   ),
3300   'pg_host' => 
3301   array (
3302     'return' => 'string',
3303     'params' => '[resource connection]',
3304     'description' => 'Returns the host name associated with the connection',
3305   ),
3306   'pg_version' => 
3307   array (
3308     'return' => 'array',
3309     'params' => '[resource connection]',
3310     'description' => 'Returns an array with client, protocol and server version (when available)',
3311   ),
3312   'pg_parameter_status' => 
3313   array (
3314     'return' => 'string|false',
3315     'params' => '[resource connection,] string param_name',
3316     'description' => 'Returns the value of a server parameter',
3317   ),
3318   'pg_ping' => 
3319   array (
3320     'return' => 'bool',
3321     'params' => '[resource connection]',
3322     'description' => 'Ping database. If connection is bad, try to reconnect.',
3323   ),
3324   'pg_query' => 
3325   array (
3326     'return' => 'resource',
3327     'params' => '[resource connection,] string query',
3328     'description' => 'Execute a query',
3329   ),
3330   'pg_query_params' => 
3331   array (
3332     'return' => 'resource',
3333     'params' => '[resource connection,] string query, array params',
3334     'description' => 'Execute a query',
3335   ),
3336   'pg_prepare' => 
3337   array (
3338     'return' => 'resource',
3339     'params' => '[resource connection,] string stmtname, string query',
3340     'description' => 'Prepare a query for future execution',
3341   ),
3342   'pg_execute' => 
3343   array (
3344     'return' => 'resource',
3345     'params' => '[resource connection,] string stmtname, array params',
3346     'description' => 'Execute a prepared query',
3347   ),
3348   'pg_num_rows' => 
3349   array (
3350     'return' => 'int',
3351     'params' => 'resource result',
3352     'description' => 'Return the number of rows in the result',
3353   ),
3354   'pg_num_fields' => 
3355   array (
3356     'return' => 'int',
3357     'params' => 'resource result',
3358     'description' => 'Return the number of fields in the result',
3359   ),
3360   'pg_affected_rows' => 
3361   array (
3362     'return' => 'int',
3363     'params' => 'resource result',
3364     'description' => 'Returns the number of affected tuples',
3365   ),
3366   'pg_last_notice' => 
3367   array (
3368     'return' => 'string',
3369     'params' => 'resource connection',
3370     'description' => 'Returns the last notice set by the backend',
3371   ),
3372   'pg_field_name' => 
3373   array (
3374     'return' => 'string',
3375     'params' => 'resource result, int field_number',
3376     'description' => 'Returns the name of the field',
3377   ),
3378   'pg_field_size' => 
3379   array (
3380     'return' => 'int',
3381     'params' => 'resource result, int field_number',
3382     'description' => 'Returns the internal size of the field',
3383   ),
3384   'pg_field_type' => 
3385   array (
3386     'return' => 'string',
3387     'params' => 'resource result, int field_number',
3388     'description' => 'Returns the type name for the given field',
3389   ),
3390   'pg_field_type_oid' => 
3391   array (
3392     'return' => 'string',
3393     'params' => 'resource result, int field_number',
3394     'description' => 'Returns the type oid for the given field',
3395   ),
3396   'pg_field_num' => 
3397   array (
3398     'return' => 'int',
3399     'params' => 'resource result, string field_name',
3400     'description' => 'Returns the field number of the named field',
3401   ),
3402   'pg_fetch_result' => 
3403   array (
3404     'return' => 'mixed',
3405     'params' => 'resource result, [int row_number,] mixed field_name',
3406     'description' => 'Returns values from a result identifier',
3407   ),
3408   'pg_fetch_row' => 
3409   array (
3410     'return' => 'array',
3411     'params' => 'resource result [, int row [, int result_type]]',
3412     'description' => 'Get a row as an enumerated array',
3413   ),
3414   'pg_fetch_assoc' => 
3415   array (
3416     'return' => 'array',
3417     'params' => 'resource result [, int row]',
3418     'description' => 'Fetch a row as an assoc array',
3419   ),
3420   'pg_fetch_array' => 
3421   array (
3422     'return' => 'array',
3423     'params' => 'resource result [, int row [, int result_type]]',
3424     'description' => 'Fetch a row as an array',
3425   ),
3426   'pg_fetch_object' => 
3427   array (
3428     'return' => 'object',
3429     'params' => 'resource result [, int row [, string class_name [, NULL|array ctor_params]]]',
3430     'description' => 'Fetch a row as an object',
3431   ),
3432   'pg_fetch_all' => 
3433   array (
3434     'return' => 'array',
3435     'params' => 'resource result',
3436     'description' => 'Fetch all rows into array',
3437   ),
3438   'pg_fetch_all_columns' => 
3439   array (
3440     'return' => 'array',
3441     'params' => 'resource result [, int column_number]',
3442     'description' => 'Fetch all rows into array',
3443   ),
3444   'pg_result_seek' => 
3445   array (
3446     'return' => 'bool',
3447     'params' => 'resource result, int offset',
3448     'description' => 'Set internal row offset',
3449   ),
3450   'pg_field_prtlen' => 
3451   array (
3452     'return' => 'int',
3453     'params' => 'resource result, [int row,] mixed field_name_or_number',
3454     'description' => 'Returns the printed length',
3455   ),
3456   'pg_field_is_null' => 
3457   array (
3458     'return' => 'int',
3459     'params' => 'resource result, [int row,] mixed field_name_or_number',
3460     'description' => 'Test if a field is NULL',
3461   ),
3462   'pg_free_result' => 
3463   array (
3464     'return' => 'bool',
3465     'params' => 'resource result',
3466     'description' => 'Free result memory',
3467   ),
3468   'pg_last_oid' => 
3469   array (
3470     'return' => 'string',
3471     'params' => 'resource result',
3472     'description' => 'Returns the last object identifier',
3473   ),
3474   'pg_trace' => 
3475   array (
3476     'return' => 'bool',
3477     'params' => 'string filename [, string mode [, resource connection]]',
3478     'description' => 'Enable tracing a PostgreSQL connection',
3479   ),
3480   'pg_untrace' => 
3481   array (
3482     'return' => 'bool',
3483     'params' => '[resource connection]',
3484     'description' => 'Disable tracing of a PostgreSQL connection',
3485   ),
3486   'pg_lo_create' => 
3487   array (
3488     'return' => 'int',
3489     'params' => '[resource connection]',
3490     'description' => 'Create a large object',
3491   ),
3492   'pg_lo_unlink' => 
3493   array (
3494     'return' => 'bool',
3495     'params' => '[resource connection,] string large_object_oid',
3496     'description' => 'Delete a large object',
3497   ),
3498   'pg_lo_open' => 
3499   array (
3500     'return' => 'resource',
3501     'params' => '[resource connection,] int large_object_oid, string mode',
3502     'description' => 'Open a large object and return fd',
3503   ),
3504   'pg_lo_close' => 
3505   array (
3506     'return' => 'bool',
3507     'params' => 'resource large_object',
3508     'description' => 'Close a large object',
3509   ),
3510   'pg_lo_read' => 
3511   array (
3512     'return' => 'string',
3513     'params' => 'resource large_object [, int len]',
3514     'description' => 'Read a large object',
3515   ),
3516   'pg_lo_write' => 
3517   array (
3518     'return' => 'int',
3519     'params' => 'resource large_object, string buf [, int len]',
3520     'description' => 'Write a large object',
3521   ),
3522   'pg_lo_read_all' => 
3523   array (
3524     'return' => 'int',
3525     'params' => 'resource large_object',
3526     'description' => 'Read a large object and send straight to browser',
3527   ),
3528   'pg_lo_import' => 
3529   array (
3530     'return' => 'int',
3531     'params' => '[resource connection, ] string filename',
3532     'description' => 'Import large object direct from filesystem',
3533   ),
3534   'pg_lo_export' => 
3535   array (
3536     'return' => 'bool',
3537     'params' => '[resource connection, ] int objoid, string filename',
3538     'description' => 'Export large object direct to filesystem',
3539   ),
3540   'pg_lo_seek' => 
3541   array (
3542     'return' => 'bool',
3543     'params' => 'resource large_object, int offset [, int whence]',
3544     'description' => 'Seeks position of large object',
3545   ),
3546   'pg_lo_tell' => 
3547   array (
3548     'return' => 'int',
3549     'params' => 'resource large_object',
3550     'description' => 'Returns current position of large object',
3551   ),
3552   'pg_set_error_verbosity' => 
3553   array (
3554     'return' => 'int',
3555     'params' => '[resource connection,] int verbosity',
3556     'description' => 'Set error verbosity',
3557   ),
3558   'pg_set_client_encoding' => 
3559   array (
3560     'return' => 'int',
3561     'params' => '[resource connection,] string encoding',
3562     'description' => 'Set client encoding',
3563   ),
3564   'pg_client_encoding' => 
3565   array (
3566     'return' => 'string',
3567     'params' => '[resource connection]',
3568     'description' => 'Get the current client encoding',
3569   ),
3570   'pg_end_copy' => 
3571   array (
3572     'return' => 'bool',
3573     'params' => '[resource connection]',
3574     'description' => 'Sync with backend. Completes the Copy command',
3575   ),
3576   'pg_put_line' => 
3577   array (
3578     'return' => 'bool',
3579     'params' => '[resource connection,] string query',
3580     'description' => 'Send null-terminated string to backend server',
3581   ),
3582   'pg_copy_to' => 
3583   array (
3584     'return' => 'array',
3585     'params' => 'resource connection, string table_name [, string delimiter [, string null_as]]',
3586     'description' => 'Copy table to array',
3587   ),
3588   'pg_copy_from' => 
3589   array (
3590     'return' => 'bool',
3591     'params' => 'resource connection, string table_name , array rows [, string delimiter [, string null_as]]',
3592     'description' => 'Copy table from array',
3593   ),
3594   'pg_escape_string' => 
3595   array (
3596     'return' => 'string',
3597     'params' => 'string data',
3598     'description' => 'Escape string for text/char type',
3599   ),
3600   'pg_escape_bytea' => 
3601   array (
3602     'return' => 'string',
3603     'params' => 'string data',
3604     'description' => 'Escape binary for bytea type',
3605   ),
3606   'pg_unescape_bytea' => 
3607   array (
3608     'return' => 'string',
3609     'params' => 'string data',
3610     'description' => 'Unescape binary for bytea type',
3611   ),
3612   'pg_result_error' => 
3613   array (
3614     'return' => 'string',
3615     'params' => 'resource result',
3616     'description' => 'Get error message associated with result',
3617   ),
3618   'pg_result_error_field' => 
3619   array (
3620     'return' => 'string',
3621     'params' => 'resource result, int fieldcode',
3622     'description' => 'Get error message field associated with result',
3623   ),
3624   'pg_connection_status' => 
3625   array (
3626     'return' => 'int',
3627     'params' => 'resource connnection',
3628     'description' => 'Get connection status',
3629   ),
3630   'pg_transaction_status' => 
3631   array (
3632     'return' => 'int',
3633     'params' => 'resource connnection',
3634     'description' => 'Get transaction status',
3635   ),
3636   'pg_connection_reset' => 
3637   array (
3638     'return' => 'bool',
3639     'params' => 'resource connection',
3640     'description' => 'Reset connection (reconnect)',
3641   ),
3642   'pg_cancel_query' => 
3643   array (
3644     'return' => 'bool',
3645     'params' => 'resource connection',
3646     'description' => 'Cancel request',
3647   ),
3648   'pg_connection_busy' => 
3649   array (
3650     'return' => 'bool',
3651     'params' => 'resource connection',
3652     'description' => 'Get connection is busy or not',
3653   ),
3654   'pg_send_query' => 
3655   array (
3656     'return' => 'bool',
3657     'params' => 'resource connection, string query',
3658     'description' => 'Send asynchronous query',
3659   ),
3660   'pg_send_query_params' => 
3661   array (
3662     'return' => 'bool',
3663     'params' => 'resource connection, string query',
3664     'description' => 'Send asynchronous parameterized query',
3665   ),
3666   'pg_send_prepare' => 
3667   array (
3668     'return' => 'bool',
3669     'params' => 'resource connection, string stmtname, string query',
3670     'description' => 'Asynchronously prepare a query for future execution',
3671   ),
3672   'pg_send_execute' => 
3673   array (
3674     'return' => 'bool',
3675     'params' => 'resource connection, string stmtname, array params',
3676     'description' => 'Executes prevriously prepared stmtname asynchronously',
3677   ),
3678   'pg_get_result' => 
3679   array (
3680     'return' => 'resource',
3681     'params' => 'resource connection',
3682     'description' => 'Get asynchronous query result',
3683   ),
3684   'pg_result_status' => 
3685   array (
3686     'return' => 'mixed',
3687     'params' => 'resource result[, long result_type]',
3688     'description' => 'Get status of query result',
3689   ),
3690   'pg_get_notify' => 
3691   array (
3692     'return' => 'array',
3693     'params' => '[resource connection[, result_type]]',
3694     'description' => 'Get asynchronous notification',
3695   ),
3696   'pg_get_pid' => 
3697   array (
3698     'return' => 'int',
3699     'params' => '[resource connection',
3700     'description' => 'Get backend(server) pid',
3701   ),
3702   'pg_meta_data' => 
3703   array (
3704     'return' => 'array',
3705     'params' => 'resource db, string table',
3706     'description' => 'Get meta_data',
3707   ),
3708   'pg_convert' => 
3709   array (
3710     'return' => 'array',
3711     'params' => 'resource db, string table, array values[, int options]',
3712     'description' => 'Check and convert values for PostgreSQL SQL statement',
3713   ),
3714   'pg_insert' => 
3715   array (
3716     'return' => 'mixed',
3717     'params' => 'resource db, string table, array values[, int options]',
3718     'description' => 'Insert values (filed=>value) to table',
3719   ),
3720   'pg_update' => 
3721   array (
3722     'return' => 'mixed',
3723     'params' => 'resource db, string table, array fields, array ids[, int options]',
3724     'description' => 'Update table using values (field=>value) and ids (id=>value)',
3725   ),
3726   'pg_delete' => 
3727   array (
3728     'return' => 'mixed',
3729     'params' => 'resource db, string table, array ids[, int options]',
3730     'description' => 'Delete records has ids (id=>value)',
3731   ),
3732   'pg_select' => 
3733   array (
3734     'return' => 'mixed',
3735     'params' => 'resource db, string table, array ids[, int options]',
3736     'description' => 'Select records that has ids (id=>value)',
3737   ),
3738   'filepro' => 
3739   array (
3740     'return' => 'bool',
3741     'params' => 'string directory',
3742     'description' => 'Read and verify the map file',
3743   ),
3744   'filepro_rowcount' => 
3745   array (
3746     'return' => 'int',
3747     'params' => 'void',
3748     'description' => 'Find out how many rows are in a filePro database',
3749   ),
3750   'filepro_fieldname' => 
3751   array (
3752     'return' => 'string',
3753     'params' => 'int fieldnumber',
3754     'description' => 'Gets the name of a field',
3755   ),
3756   'filepro_fieldtype' => 
3757   array (
3758     'return' => 'string',
3759     'params' => 'int field_number',
3760     'description' => 'Gets the type of a field',
3761   ),
3762   'filepro_fieldwidth' => 
3763   array (
3764     'return' => 'int',
3765     'params' => 'int field_number',
3766     'description' => 'Gets the width of a field',
3767   ),
3768   'filepro_fieldcount' => 
3769   array (
3770     'return' => 'int',
3771     'params' => 'void',
3772     'description' => 'Find out how many fields are in a filePro database',
3773   ),
3774   'filepro_retrieve' => 
3775   array (
3776     'return' => 'string',
3777     'params' => 'int row_number, int field_number',
3778     'description' => 'Retrieves data from a filePro database',
3779   ),
3780   'bzread' => 
3781   array (
3782     'return' => 'string',
3783     'params' => 'int bz[, int length]',
3784     'description' => 'Reads up to length bytes from a BZip2 stream, or 1024 bytes if length is not specified',
3785   ),
3786   'bzopen' => 
3787   array (
3788     'return' => 'resource',
3789     'params' => 'string|int file|fp, string mode',
3790     'description' => 'Opens a new BZip2 stream',
3791   ),
3792   'bzerrno' => 
3793   array (
3794     'return' => 'int',
3795     'params' => 'resource bz',
3796     'description' => 'Returns the error number',
3797   ),
3798   'bzerrstr' => 
3799   array (
3800     'return' => 'string',
3801     'params' => 'resource bz',
3802     'description' => 'Returns the error string',
3803   ),
3804   'bzerror' => 
3805   array (
3806     'return' => 'array',
3807     'params' => 'resource bz',
3808     'description' => 'Returns the error number and error string in an associative array',
3809   ),
3810   'bzcompress' => 
3811   array (
3812     'return' => 'string',
3813     'params' => 'string source [, int blocksize100k [, int workfactor]]',
3814     'description' => 'Compresses a string into BZip2 encoded data',
3815   ),
3816   'bzdecompress' => 
3817   array (
3818     'return' => 'string',
3819     'params' => 'string source [, int small]',
3820     'description' => 'Decompresses BZip2 compressed data',
3821   ),
3822   'dba_popen' => 
3823   array (
3824     'return' => 'resource',
3825     'params' => 'string path, string mode [, string handlername, string ...]',
3826     'description' => 'Opens path using the specified handler in mode persistently',
3827   ),
3828   'dba_open' => 
3829   array (
3830     'return' => 'resource',
3831     'params' => 'string path, string mode [, string handlername, string ...]',
3832     'description' => 'Opens path using the specified handler in mode',
3833   ),
3834   'dba_close' => 
3835   array (
3836     'return' => 'void',
3837     'params' => 'resource handle',
3838     'description' => 'Closes database',
3839   ),
3840   'dba_exists' => 
3841   array (
3842     'return' => 'bool',
3843     'params' => 'string key, resource handle',
3844     'description' => 'Checks, if the specified key exists',
3845   ),
3846   'dba_fetch' => 
3847   array (
3848     'return' => 'string',
3849     'params' => 'string key, [int skip ,] resource handle',
3850     'description' => 'Fetches the data associated with key',
3851   ),
3852   'dba_key_split' => 
3853   array (
3854     'return' => 'array|false',
3855     'params' => 'string key',
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   ),
3858   'dba_firstkey' => 
3859   array (
3860     'return' => 'string',
3861     'params' => 'resource handle',
3862     'description' => 'Resets the internal key pointer and returns the first key',
3863   ),
3864   'dba_nextkey' => 
3865   array (
3866     'return' => 'string',
3867     'params' => 'resource handle',
3868     'description' => 'Returns the next key',
3869   ),
3870   'dba_delete' => 
3871   array (
3872     'return' => 'bool',
3873     'params' => 'string key, resource handle',
3874     'description' => 'Deletes the entry associated with keyIf inifile: remove all other key lines',
3875   ),
3876   'dba_insert' => 
3877   array (
3878     'return' => 'bool',
3879     'params' => 'string key, string value, resource handle',
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   ),
3882   'dba_replace' => 
3883   array (
3884     'return' => 'bool',
3885     'params' => 'string key, string value, resource handle',
3886     'description' => 'Inserts value as key, replaces key, if key exists alreadyIf inifile: remove all other key lines',
3887   ),
3888   'dba_optimize' => 
3889   array (
3890     'return' => 'bool',
3891     'params' => 'resource handle',
3892     'description' => 'Optimizes (e.g. clean up, vacuum) database',
3893   ),
3894   'dba_sync' => 
3895   array (
3896     'return' => 'bool',
3897     'params' => 'resource handle',
3898     'description' => 'Synchronizes database',
3899   ),
3900   'dba_handlers' => 
3901   array (
3902     'return' => 'array',
3903     'params' => '[bool full_info]',
3904     'description' => 'List configured database handlers',
3905   ),
3906   'dba_list' => 
3907   array (
3908     'return' => 'array',
3909     'params' => '',
3910     'description' => 'List opened databases',
3911   ),
3912   'iconv_strlen' => 
3913   array (
3914     'return' => 'int',
3915     'params' => 'string str [, string charset]',
3916     'description' => 'Returns the character count of str',
3917   ),
3918   'iconv_substr' => 
3919   array (
3920     'return' => 'string',
3921     'params' => 'string str, int offset, [int length, string charset]',
3922     'description' => 'Returns specified part of a string',
3923   ),
3924   'iconv_strpos' => 
3925   array (
3926     'return' => 'int',
3927     'params' => 'string haystack, string needle, int offset [, string charset]',
3928     'description' => 'Finds position of first occurrence of needle within part of haystack beginning with offset',
3929   ),
3930   'iconv_strrpos' => 
3931   array (
3932     'return' => 'int',
3933     'params' => 'string haystack, string needle [, string charset]',
3934     'description' => 'Finds position of last occurrence of needle within part of haystack beginning with offset',
3935   ),
3936   'iconv_mime_encode' => 
3937   array (
3938     'return' => 'string',
3939     'params' => 'string field_name, string field_value, [, array preference]',
3940     'description' => 'Composes a mime header field with field_name and field_value in a specified scheme',
3941   ),
3942   'iconv_mime_decode' => 
3943   array (
3944     'return' => 'string',
3945     'params' => 'string encoded_string [, int mode, string charset]',
3946     'description' => 'Decodes a mime header field',
3947   ),
3948   'iconv_mime_decode_headers' => 
3949   array (
3950     'return' => 'array',
3951     'params' => 'string headers [, int mode, string charset]',
3952     'description' => 'Decodes multiple mime header fields',
3953   ),
3954   'iconv' => 
3955   array (
3956     'return' => 'string',
3957     'params' => 'string in_charset, string out_charset, string str',
3958     'description' => 'Returns str converted to the out_charset character set',
3959   ),
3960   'ob_iconv_handler' => 
3961   array (
3962     'return' => 'string',
3963     'params' => 'string contents, int status',
3964     'description' => 'Returns str in output buffer converted to the iconv.output_encoding character set',
3965   ),
3966   'iconv_set_encoding' => 
3967   array (
3968     'return' => 'bool',
3969     'params' => 'string type, string charset',
3970     'description' => 'Sets internal encoding and output encoding for ob_iconv_handler()',
3971   ),
3972   'iconv_get_encoding' => 
3973   array (
3974     'return' => 'mixed',
3975     'params' => '[string type]',
3976     'description' => 'Get internal encoding and output encoding for ob_iconv_handler()',
3977   ),
3978   'ctype_alnum' => 
3979   array (
3980     'return' => 'bool',
3981     'params' => 'mixed c',
3982     'description' => 'Checks for alphanumeric character(s)',
3983   ),
3984   'ctype_alpha' => 
3985   array (
3986     'return' => 'bool',
3987     'params' => 'mixed c',
3988     'description' => 'Checks for alphabetic character(s)',
3989   ),
3990   'ctype_cntrl' => 
3991   array (
3992     'return' => 'bool',
3993     'params' => 'mixed c',
3994     'description' => 'Checks for control character(s)',
3995   ),
3996   'ctype_digit' => 
3997   array (
3998     'return' => 'bool',
3999     'params' => 'mixed c',
4000     'description' => 'Checks for numeric character(s)',
4001   ),
4002   'ctype_lower' => 
4003   array (
4004     'return' => 'bool',
4005     'params' => 'mixed c',
4006     'description' => 'Checks for lowercase character(s)',
4007   ),
4008   'ctype_graph' => 
4009   array (
4010     'return' => 'bool',
4011     'params' => 'mixed c',
4012     'description' => 'Checks for any printable character(s) except space',
4013   ),
4014   'ctype_print' => 
4015   array (
4016     'return' => 'bool',
4017     'params' => 'mixed c',
4018     'description' => 'Checks for printable character(s)',
4019   ),
4020   'ctype_punct' => 
4021   array (
4022     'return' => 'bool',
4023     'params' => 'mixed c',
4024     'description' => 'Checks for any printable character which is not whitespace or an alphanumeric character',
4025   ),
4026   'ctype_space' => 
4027   array (
4028     'return' => 'bool',
4029     'params' => 'mixed c',
4030     'description' => 'Checks for whitespace character(s)',
4031   ),
4032   'ctype_upper' => 
4033   array (
4034     'return' => 'bool',
4035     'params' => 'mixed c',
4036     'description' => 'Checks for uppercase character(s)',
4037   ),
4038   'ctype_xdigit' => 
4039   array (
4040     'return' => 'bool',
4041     'params' => 'mixed c',
4042     'description' => 'Checks for character(s) representing a hexadecimal digit',
4043   ),
4044   'bcadd' => 
4045   array (
4046     'return' => 'string',
4047     'params' => 'string left_operand, string right_operand [, int scale]',
4048     'description' => 'Returns the sum of two arbitrary precision numbers',
4049   ),
4050   'bcsub' => 
4051   array (
4052     'return' => 'string',
4053     'params' => 'string left_operand, string right_operand [, int scale]',
4054     'description' => 'Returns the difference between two arbitrary precision numbers',
4055   ),
4056   'bcmul' => 
4057   array (
4058     'return' => 'string',
4059     'params' => 'string left_operand, string right_operand [, int scale]',
4060     'description' => 'Returns the multiplication of two arbitrary precision numbers',
4061   ),
4062   'bcdiv' => 
4063   array (
4064     'return' => 'string',
4065     'params' => 'string left_operand, string right_operand [, int scale]',
4066     'description' => 'Returns the quotient of two arbitrary precision numbers (division)',
4067   ),
4068   'bcmod' => 
4069   array (
4070     'return' => 'string',
4071     'params' => 'string left_operand, string right_operand',
4072     'description' => 'Returns the modulus of the two arbitrary precision operands',
4073   ),
4074   'bcpowmod' => 
4075   array (
4076     'return' => 'string',
4077     'params' => 'string x, string y, string mod [, int scale]',
4078     'description' => 'Returns the value of an arbitrary precision number raised to the power of another reduced by a modulous',
4079   ),
4080   'bcpow' => 
4081   array (
4082     'return' => 'string',
4083     'params' => 'string x, string y [, int scale]',
4084     'description' => 'Returns the value of an arbitrary precision number raised to the power of another',
4085   ),
4086   'bcsqrt' => 
4087   array (
4088     'return' => 'string',
4089     'params' => 'string operand [, int scale]',
4090     'description' => 'Returns the square root of an arbitray precision number',
4091   ),
4092   'bccomp' => 
4093   array (
4094     'return' => 'int',
4095     'params' => 'string left_operand, string right_operand [, int scale]',
4096     'description' => 'Compares two arbitrary precision numbers',
4097   ),
4098   'bcscale' => 
4099   array (
4100     'return' => 'bool',
4101     'params' => 'int scale',
4102     'description' => 'Sets default scale parameter for all bc math functions',
4103   ),
4104   'ldap_connect' => 
4105   array (
4106     'return' => 'resource',
4107     'params' => '[string host [, int port]]',
4108     'description' => 'Connect to an LDAP server',
4109   ),
4110   'ldap_bind' => 
4111   array (
4112     'return' => 'bool',
4113     'params' => 'resource link [, string dn, string password]',
4114     'description' => 'Bind to LDAP directory',
4115   ),
4116   'ldap_sasl_bind' => 
4117   array (
4118     'return' => 'bool',
4119     'params' => 'resource link [, string binddn, string password, string sasl_mech, string sasl_realm, string sasl_authz_id, string props]',
4120     'description' => 'Bind to LDAP directory using SASL',
4121   ),
4122   'ldap_unbind' => 
4123   array (
4124     'return' => 'bool',
4125     'params' => 'resource link',
4126     'description' => 'Unbind from LDAP directory',
4127   ),
4128   'ldap_read' => 
4129   array (
4130     'return' => 'resource',
4131     'params' => 'resource link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]]',
4132     'description' => 'Read an entry',
4133   ),
4134   'ldap_list' => 
4135   array (
4136     'return' => 'resource',
4137     'params' => 'resource link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]]',
4138     'description' => 'Single-level search',
4139   ),
4140   'ldap_search' => 
4141   array (
4142     'return' => 'resource',
4143     'params' => 'resource link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]]',
4144     'description' => 'Search LDAP tree under base_dn',
4145   ),
4146   'ldap_free_result' => 
4147   array (
4148     'return' => 'bool',
4149     'params' => 'resource result',
4150     'description' => 'Free result memory',
4151   ),
4152   'ldap_count_entries' => 
4153   array (
4154     'return' => 'int',
4155     'params' => 'resource link, resource result',
4156     'description' => 'Count the number of entries in a search result',
4157   ),
4158   'ldap_first_entry' => 
4159   array (
4160     'return' => 'resource',
4161     'params' => 'resource link, resource result',
4162     'description' => 'Return first result id',
4163   ),
4164   'ldap_next_entry' => 
4165   array (
4166     'return' => 'resource',
4167     'params' => 'resource link, resource result_entry',
4168     'description' => 'Get next result entry',
4169   ),
4170   'ldap_get_entries' => 
4171   array (
4172     'return' => 'array',
4173     'params' => 'resource link, resource result',
4174     'description' => 'Get all result entries',
4175   ),
4176   'ldap_first_attribute' => 
4177   array (
4178     'return' => 'string',
4179     'params' => 'resource link, resource result_entry, int ber',
4180     'description' => 'Return first attribute',
4181   ),
4182   'ldap_next_attribute' => 
4183   array (
4184     'return' => 'string',
4185     'params' => 'resource link, resource result_entry, resource ber',
4186     'description' => 'Get the next attribute in result',
4187   ),
4188   'ldap_get_attributes' => 
4189   array (
4190     'return' => 'array',
4191     'params' => 'resource link, resource result_entry',
4192     'description' => 'Get attributes from a search result entry',
4193   ),
4194   'ldap_get_values' => 
4195   array (
4196     'return' => 'array',
4197     'params' => 'resource link, resource result_entry, string attribute',
4198     'description' => 'Get all values from a result entry',
4199   ),
4200   'ldap_get_values_len' => 
4201   array (
4202     'return' => 'array',
4203     'params' => 'resource link, resource result_entry, string attribute',
4204     'description' => 'Get all values with lengths from a result entry',
4205   ),
4206   'ldap_get_dn' => 
4207   array (
4208     'return' => 'string',
4209     'params' => 'resource link, resource result_entry',
4210     'description' => 'Get the DN of a result entry',
4211   ),
4212   'ldap_explode_dn' => 
4213   array (
4214     'return' => 'array',
4215     'params' => 'string dn, int with_attrib',
4216     'description' => 'Splits DN into its component parts',
4217   ),
4218   'ldap_dn2ufn' => 
4219   array (
4220     'return' => 'string',
4221     'params' => 'string dn',
4222     'description' => 'Convert DN to User Friendly Naming format',
4223   ),
4224   'ldap_add' => 
4225   array (
4226     'return' => 'bool',
4227     'params' => 'resource link, string dn, array entry',
4228     'description' => 'Add entries to LDAP directory',
4229   ),
4230   'ldap_mod_replace' => 
4231   array (
4232     'return' => 'bool',
4233     'params' => 'resource link, string dn, array entry',
4234     'description' => 'Replace attribute values with new ones',
4235   ),
4236   'ldap_mod_add' => 
4237   array (
4238     'return' => 'bool',
4239     'params' => 'resource link, string dn, array entry',
4240     'description' => 'Add attribute values to current',
4241   ),
4242   'ldap_mod_del' => 
4243   array (
4244     'return' => 'bool',
4245     'params' => 'resource link, string dn, array entry',
4246     'description' => 'Delete attribute values',
4247   ),
4248   'ldap_delete' => 
4249   array (
4250     'return' => 'bool',
4251     'params' => 'resource link, string dn',
4252     'description' => 'Delete an entry from a directory',
4253   ),
4254   'ldap_errno' => 
4255   array (
4256     'return' => 'int',
4257     'params' => 'resource link',
4258     'description' => 'Get the current ldap error number',
4259   ),
4260   'ldap_err2str' => 
4261   array (
4262     'return' => 'string',
4263     'params' => 'int errno',
4264     'description' => 'Convert error number to error string',
4265   ),
4266   'ldap_error' => 
4267   array (
4268     'return' => 'string',
4269     'params' => 'resource link',
4270     'description' => 'Get the current ldap error string',
4271   ),
4272   'ldap_compare' => 
4273   array (
4274     'return' => 'bool',
4275     'params' => 'resource link, string dn, string attr, string value',
4276     'description' => 'Determine if an entry has a specific value for one of its attributes',
4277   ),
4278   'ldap_sort' => 
4279   array (
4280     'return' => 'bool',
4281     'params' => 'resource link, resource result, string sortfilter',
4282     'description' => 'Sort LDAP result entries',
4283   ),
4284   'ldap_get_option' => 
4285   array (
4286     'return' => 'bool',
4287     'params' => 'resource link, int option, mixed retval',
4288     'description' => 'Get the current value of various session-wide parameters',
4289   ),
4290   'ldap_set_option' => 
4291   array (
4292     'return' => 'bool',
4293     'params' => 'resource link, int option, mixed newval',
4294     'description' => 'Set the value of various session-wide parameters',
4295   ),
4296   'ldap_parse_result' => 
4297   array (
4298     'return' => 'bool',
4299     'params' => 'resource link, resource result, int errcode, string matcheddn, string errmsg, array referrals',
4300     'description' => 'Extract information from result',
4301   ),
4302   'ldap_first_reference' => 
4303   array (
4304     'return' => 'resource',
4305     'params' => 'resource link, resource result',
4306     'description' => 'Return first reference',
4307   ),
4308   'ldap_next_reference' => 
4309   array (
4310     'return' => 'resource',
4311     'params' => 'resource link, resource reference_entry',
4312     'description' => 'Get next reference',
4313   ),
4314   'ldap_parse_reference' => 
4315   array (
4316     'return' => 'bool',
4317     'params' => 'resource link, resource reference_entry, array referrals',
4318     'description' => 'Extract information from reference entry',
4319   ),
4320   'ldap_rename' => 
4321   array (
4322     'return' => 'bool',
4323     'params' => 'resource link, string dn, string newrdn, string newparent, bool deleteoldrdn',
4324     'description' => 'Modify the name of an entry',
4325   ),
4326   'ldap_start_tls' => 
4327   array (
4328     'return' => 'bool',
4329     'params' => 'resource link',
4330     'description' => 'Start TLS',
4331   ),
4332   'ldap_set_rebind_proc' => 
4333   array (
4334     'return' => 'bool',
4335     'params' => 'resource link, string callback',
4336     'description' => 'Set a callback function to do re-binds on referral chasing.',
4337   ),
4338   'ldap_t61_to_8859' => 
4339   array (
4340     'return' => 'string',
4341     'params' => 'string value',
4342     'description' => 'Translate t61 characters to 8859 characters',
4343   ),
4344   'ldap_8859_to_t61' => 
4345   array (
4346     'return' => 'string',
4347     'params' => 'string value',
4348     'description' => 'Translate 8859 characters to t61 characters',
4349   ),
4350   'SoapServer::setClass' => 
4351   array (
4352     'return' => 'void',
4353     'params' => 'string class_name [, mixed args]',
4354     'description' => 'Sets class which will handle SOAP requests',
4355   ),
4356   'SoapServer::getFunctions' => 
4357   array (
4358     'return' => 'array',
4359     'params' => 'void',
4360     'description' => 'Returns list of defined functions',
4361   ),
4362   'SoapServer::addFunction' => 
4363   array (
4364     'return' => 'void',
4365     'params' => 'mixed functions',
4366     'description' => 'Adds one or several functions those will handle SOAP requests',
4367   ),
4368   'SoapClient::__getLastRequestHeaders' => 
4369   array (
4370     'return' => 'string',
4371     'params' => 'void',
4372     'description' => 'Returns last SOAP request headers',
4373   ),
4374   'SoapClient::__getLastResponseHeaders' => 
4375   array (
4376     'return' => 'string',
4377     'params' => 'void',
4378     'description' => 'Returns last SOAP response headers',
4379   ),
4380   'SoapClient::__doRequest' => 
4381   array (
4382     'return' => 'string',
4383     'params' => '',
4384     'description' => 'SoapClient::__doRequest()',
4385   ),
4386   'SoapClient::__setCookie' => 
4387   array (
4388     'return' => 'void',
4389     'params' => 'string name [, strung value]',
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   ),
4392   'SoapClient::__setSoapHeaders' => 
4393   array (
4394     'return' => 'void',
4395     'params' => 'array SoapHeaders',
4396     'description' => 'Sets SOAP headers for subsequent calls (replaces any previousvalues).If no value is specified, all of the headers are removed.',
4397   ),
4398   'SoapClient::__setLocation' => 
4399   array (
4400     'return' => 'string',
4401     'params' => '[string new_location]',
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   ),
4404   'fbsql_connect' => 
4405   array (
4406     'return' => 'resource',
4407     'params' => '[string hostname [, string username [, string password]]]',
4408     'description' => 'Create a connection to a database server',
4409   ),
4410   'fbsql_pconnect' => 
4411   array (
4412     'return' => 'resource',
4413     'params' => '[string hostname [, string username [, string password]]]',
4414     'description' => 'Create a persistant connection to a database server',
4415   ),
4416   'fbsql_close' => 
4417   array (
4418     'return' => 'bool',
4419     'params' => '[resource link_identifier]',
4420     'description' => 'Close a connection to a database server',
4421   ),
4422   'fbsql_set_transaction' => 
4423   array (
4424     'return' => 'void',
4425     'params' => 'resource link_identifier, int locking, int isolation',
4426     'description' => 'Sets the transaction locking and isolation',
4427   ),
4428   'fbsql_autocommit' => 
4429   array (
4430     'return' => 'bool',
4431     'params' => 'resource link_identifier [, bool OnOff]',
4432     'description' => 'Turns on auto-commit',
4433   ),
4434   'fbsql_commit' => 
4435   array (
4436     'return' => 'bool',
4437     'params' => '[resource link_identifier]',
4438     'description' => 'Commit the transaction',
4439   ),
4440   'fbsql_rollback' => 
4441   array (
4442     'return' => 'bool',
4443     'params' => '[resource link_identifier]',
4444     'description' => 'Rollback all statments since last commit',
4445   ),
4446   'fbsql_create_blob' => 
4447   array (
4448     'return' => 'string',
4449     'params' => 'string blob_data [, resource link_identifier]',
4450     'description' => 'Create a BLOB in the database for use with an insert or update statement',
4451   ),
4452   'fbsql_create_clob' => 
4453   array (
4454     'return' => 'string',
4455     'params' => 'string clob_data [, resource link_identifier]',
4456     'description' => 'Create a CLOB in the database for use with an insert or update statement',
4457   ),
4458   'fbsql_set_lob_mode' => 
4459   array (
4460     'return' => 'bool',
4461     'params' => 'resource result, int lob_mode',
4462     'description' => 'Sets the mode for how LOB data re retreived (actual data or a handle)',
4463   ),
4464   'fbsql_read_blob' => 
4465   array (
4466     'return' => 'string',
4467     'params' => 'string blob_handle [, resource link_identifier]',
4468     'description' => 'Read the BLOB data identified by blob_handle',
4469   ),
4470   'fbsql_read_clob' => 
4471   array (
4472     'return' => 'string',
4473     'params' => 'string clob_handle [, resource link_identifier]',
4474     'description' => 'Read the CLOB data identified by clob_handle',
4475   ),
4476   'fbsql_blob_size' => 
4477   array (
4478     'return' => 'int',
4479     'params' => 'string blob_handle [, resource link_identifier]',
4480     'description' => 'Get the size of a BLOB identified by blob_handle',
4481   ),
4482   'fbsql_clob_size' => 
4483   array (
4484     'return' => 'int',
4485     'params' => 'string clob_handle [, resource link_identifier]',
4486     'description' => 'Get the size of a CLOB identified by clob_handle',
4487   ),
4488   'fbsql_hostname' => 
4489   array (
4490     'return' => 'string',
4491     'params' => 'resource link_identifier [, string host_name]',
4492     'description' => 'Get or set the host name used with a connection',
4493   ),
4494   'fbsql_database' => 
4495   array (
4496     'return' => 'string',
4497     'params' => 'resource link_identifier [, string database]',
4498     'description' => 'Get or set the database name used with a connection',
4499   ),
4500   'fbsql_database_password' => 
4501   array (
4502     'return' => 'string',
4503     'params' => 'resource link_identifier [, string database_password]',
4504     'description' => 'Get or set the databsae password used with a connection',
4505   ),
4506   'fbsql_username' => 
4507   array (
4508     'return' => 'string',
4509     'params' => 'resource link_identifier [, string username]',
4510     'description' => 'Get or set the host user used with a connection',
4511   ),
4512   'fbsql_password' => 
4513   array (
4514     'return' => 'string',
4515     'params' => 'resource link_identifier [, string password]',
4516     'description' => 'Get or set the user password used with a connection',
4517   ),
4518   'fbsql_set_password' => 
4519   array (
4520     'return' => 'bool',
4521     'params' => 'resource link_identifier, string user, string password, string old_password',
4522     'description' => 'Change the password for a given user',
4523   ),
4524   'fbsql_select_db' => 
4525   array (
4526     'return' => 'bool',
4527     'params' => '[string database_name [, resource link_identifier]]',
4528     'description' => 'Select the database to open',
4529   ),
4530   'fbsql_set_characterset' => 
4531   array (
4532     'return' => 'void',
4533     'params' => 'resource link_identifier, long charcterset [, long in_out_both]]',
4534     'description' => 'Change input/output character set',
4535   ),
4536   'fbsql_change_user' => 
4537   array (
4538     'return' => 'int',
4539     'params' => 'string user, string password [, string database [, resource link_identifier]]',
4540     'description' => 'Change the user for a session',
4541   ),
4542   'fbsql_create_db' => 
4543   array (
4544     'return' => 'bool',
4545     'params' => 'string database_name [, resource link_identifier]',
4546     'description' => 'Create a new database on the server',
4547   ),
4548   'fbsql_drop_db' => 
4549   array (
4550     'return' => 'int',
4551     'params' => 'string database_name [, resource link_identifier]',
4552     'description' => 'Drop a database on the server',
4553   ),
4554   'fbsql_start_db' => 
4555   array (
4556     'return' => 'bool',
4557     'params' => 'string database_name [, resource link_identifier [, string database_options]]',
4558     'description' => 'Start a database on the server',
4559   ),
4560   'fbsql_stop_db' => 
4561   array (
4562     'return' => 'bool',
4563     'params' => 'string database_name [, resource link_identifier]',
4564     'description' => 'Stop a database on the server',
4565   ),
4566   'fbsql_db_status' => 
4567   array (
4568     'return' => 'int',
4569     'params' => 'string database_name [, resource link_identifier]',
4570     'description' => 'Gets the status (Stopped, Starting, Running, Stopping) for a given database',
4571   ),
4572   'fbsql_query' => 
4573   array (
4574     'return' => 'resource',
4575     'params' => 'string query [, resource link_identifier [, long batch_size]]',
4576     'description' => 'Send one or more SQL statements to the server and execute them',
4577   ),
4578   'fbsql_db_query' => 
4579   array (
4580     'return' => 'resource',
4581     'params' => 'string database_name, string query [, resource link_identifier]',
4582     'description' => 'Send one or more SQL statements to a specified database on the server',
4583   ),
4584   'fbsql_list_dbs' => 
4585   array (
4586     'return' => 'resource',
4587     'params' => '[resource link_identifier]',
4588     'description' => 'Retreive a list of all databases on the server',
4589   ),
4590   'fbsql_list_tables' => 
4591   array (
4592     'return' => 'resource',
4593     'params' => 'string database [, int link_identifier]',
4594     'description' => 'Retreive a list of all tables from the specifoied database',
4595   ),
4596   'fbsql_list_fields' => 
4597   array (
4598     'return' => 'resource',
4599     'params' => 'string database_name, string table_name [, resource link_identifier]',
4600     'description' => 'Retrieve a list of all fields for the specified database.table',
4601   ),
4602   'fbsql_error' => 
4603   array (
4604     'return' => 'string',
4605     'params' => '[resource link_identifier]',
4606     'description' => 'Returns the last error string',
4607   ),
4608   'fbsql_errno' => 
4609   array (
4610     'return' => 'int',
4611     'params' => '[resource link_identifier]',
4612     'description' => 'Returns the last error code',
4613   ),
4614   'fbsql_warnings' => 
4615   array (
4616     'return' => 'bool',
4617     'params' => '[int flag]',
4618     'description' => 'Enable or disable FrontBase warnings',
4619   ),
4620   'fbsql_affected_rows' => 
4621   array (
4622     'return' => 'int',
4623     'params' => '[resource link_identifier]',
4624     'description' => 'Get the number of rows affected by the last statement',
4625   ),
4626   'fbsql_insert_id' => 
4627   array (
4628     'return' => 'int',
4629     'params' => '[resource link_identifier]',
4630     'description' => 'Get the internal index for the last insert statement',
4631   ),
4632   'fbsql_result' => 
4633   array (
4634     'return' => 'mixed',
4635     'params' => 'int result [, int row [, mixed field]]',
4636     'description' => '???',
4637   ),
4638   'fbsql_next_result' => 
4639   array (
4640     'return' => 'bool',
4641     'params' => 'int result',
4642     'description' => 'Switch to the next result if multiple results are available',
4643   ),
4644   'fbsql_num_rows' => 
4645   array (
4646     'return' => 'int',
4647     'params' => 'int result',
4648     'description' => 'Get number of rows',
4649   ),
4650   'fbsql_num_fields' => 
4651   array (
4652     'return' => 'int',
4653     'params' => 'int result',
4654     'description' => 'Get number of fields in the result set',
4655   ),
4656   'fbsql_fetch_row' => 
4657   array (
4658     'return' => 'array',
4659     'params' => 'resource result',
4660     'description' => 'Fetch a row of data. Returns an indexed array',
4661   ),
4662   'fbsql_fetch_assoc' => 
4663   array (
4664     'return' => 'object',
4665     'params' => 'resource result',
4666     'description' => 'Detch a row of data. Returns an assoc array',
4667   ),
4668   'fbsql_fetch_object' => 
4669   array (
4670     'return' => 'object',
4671     'params' => 'resource result [, int result_type]',
4672     'description' => 'Fetch a row of data. Returns an object',
4673   ),
4674   'fbsql_fetch_array' => 
4675   array (
4676     'return' => 'array',
4677     'params' => 'resource result [, int result_type]',
4678     'description' => 'Fetches a result row as an array (associative, numeric or both)',
4679   ),
4680   'fbsql_data_seek' => 
4681   array (
4682     'return' => 'bool',
4683     'params' => 'int result, int row_number',
4684     'description' => 'Move the internal row counter to the specified row_number',
4685   ),
4686   'fbsql_fetch_lengths' => 
4687   array (
4688     'return' => 'array',
4689     'params' => 'int result',
4690     'description' => 'Returns an array of the lengths of each column in the result set',
4691   ),
4692   'fbsql_fetch_field' => 
4693   array (
4694     'return' => 'object',
4695     'params' => 'int result [, int field_index]',
4696     'description' => 'Get the field properties for a specified field_index',
4697   ),
4698   'fbsql_field_seek' => 
4699   array (
4700     'return' => 'bool',
4701     'params' => 'int result [, int field_index]',
4702     'description' => '???',
4703   ),
4704   'fbsql_field_name' => 
4705   array (
4706     'return' => 'string',
4707     'params' => 'int result [, int field_index]',
4708     'description' => 'Get the column name for a specified field_index',
4709   ),
4710   'fbsql_field_table' => 
4711   array (
4712     'return' => 'string',
4713     'params' => 'int result [, int field_index]',
4714     'description' => 'Get the table name for a specified field_index',
4715   ),
4716   'fbsql_field_len' => 
4717   array (
4718     'return' => 'mixed',
4719     'params' => 'int result [, int field_index]',
4720     'description' => 'Get the column length for a specified field_index',
4721   ),
4722   'fbsql_field_type' => 
4723   array (
4724     'return' => 'string',
4725     'params' => 'int result [, int field_index]',
4726     'description' => 'Get the field type for a specified field_index',
4727   ),
4728   'fbsql_field_flags' => 
4729   array (
4730     'return' => 'string',
4731     'params' => 'int result [, int field_index]',
4732     'description' => '???',
4733   ),
4734   'fbsql_table_name' => 
4735   array (
4736     'return' => 'string',
4737     'params' => 'resource result, int index',
4738     'description' => 'Retreive the table name for index after a call to fbsql_list_tables()',
4739   ),
4740   'fbsql_free_result' => 
4741   array (
4742     'return' => 'bool',
4743     'params' => 'resource result',
4744     'description' => 'free the memory used to store a result',
4745   ),
4746   'fbsql_get_autostart_info' => 
4747   array (
4748     'return' => 'array',
4749     'params' => '[resource link_identifier]',
4750     'description' => '???',
4751   ),
4752   'sem_get' => 
4753   array (
4754     'return' => 'resource',
4755     'params' => 'int key [, int max_acquire [, int perm [, int auto_release]]',
4756     'description' => 'Return an id for the semaphore with the given key, and allow max_acquire (default 1) processes to acquire it simultaneously',
4757   ),
4758   'sem_acquire' => 
4759   array (
4760     'return' => 'bool',
4761     'params' => 'resource id',
4762     'description' => 'Acquires the semaphore with the given id, blocking if necessary',
4763   ),
4764   'sem_release' => 
4765   array (
4766     'return' => 'bool',
4767     'params' => 'resource id',
4768     'description' => 'Releases the semaphore with the given id',
4769   ),
4770   'sem_remove' => 
4771   array (
4772     'return' => 'bool',
4773     'params' => 'resource id',
4774     'description' => 'Removes semaphore from Unix systems',
4775   ),
4776   'token_get_all' => 
4777   array (
4778     'return' => 'array',
4779     'params' => 'string source',
4780     'description' => '',
4781   ),
4782   'token_name' => 
4783   array (
4784     'return' => 'string',
4785     'params' => 'int type',
4786     'description' => '',
4787   ),
4788   'gzfile' => 
4789   array (
4790     'return' => 'array',
4791     'params' => 'string filename [, int use_include_path]',
4792     'description' => 'Read und uncompress entire .gz-file into an array',
4793   ),
4794   'gzopen' => 
4795   array (
4796     'return' => 'resource',
4797     'params' => 'string filename, string mode [, int use_include_path]',
4798     'description' => 'Open a .gz-file and return a .gz-file pointer',
4799   ),
4800   'readgzfile' => 
4801   array (
4802     'return' => 'int',
4803     'params' => 'string filename [, int use_include_path]',
4804     'description' => 'Output a .gz-file',
4805   ),
4806   'gzcompress' => 
4807   array (
4808     'return' => 'string',
4809     'params' => 'string data [, int level]',
4810     'description' => 'Gzip-compress a string',
4811   ),
4812   'gzuncompress' => 
4813   array (
4814     'return' => 'string',
4815     'params' => 'string data [, int length]',
4816     'description' => 'Unzip a gzip-compressed string',
4817   ),
4818   'gzdeflate' => 
4819   array (
4820     'return' => 'string',
4821     'params' => 'string data [, int level]',
4822     'description' => 'Gzip-compress a string',
4823   ),
4824   'gzinflate' => 
4825   array (
4826     'return' => 'string',
4827     'params' => 'string data [, int length]',
4828     'description' => 'Unzip a gzip-compressed string',
4829   ),
4830   'zlib_get_coding_type' => 
4831   array (
4832     'return' => 'string',
4833     'params' => 'void',
4834     'description' => 'Returns the coding type used for output compression',
4835   ),
4836   'gzencode' => 
4837   array (
4838     'return' => 'string',
4839     'params' => 'string data [, int level [, int encoding_mode]]',
4840     'description' => 'GZ encode a string',
4841   ),
4842   'ob_gzhandler' => 
4843   array (
4844     'return' => 'string',
4845     'params' => 'string str, int mode',
4846     'description' => 'Encode str based on accept-encoding setting - designed to be called from ob_start()',
4847   ),
4848   'msql_connect' => 
4849   array (
4850     'return' => 'int',
4851     'params' => '[string hostname[:port]] [, string username] [, string password]',
4852     'description' => 'Open a connection to an mSQL Server',
4853   ),
4854   'msql_pconnect' => 
4855   array (
4856     'return' => 'int',
4857     'params' => '[string hostname[:port]] [, string username] [, string password]',
4858     'description' => 'Open a persistent connection to an mSQL Server',
4859   ),
4860   'msql_close' => 
4861   array (
4862     'return' => 'bool',
4863     'params' => '[resource link_identifier]',
4864     'description' => 'Close an mSQL connection',
4865   ),
4866   'msql_select_db' => 
4867   array (
4868     'return' => 'bool',
4869     'params' => 'string database_name [, resource link_identifier]',
4870     'description' => 'Select an mSQL database',
4871   ),
4872   'msql_create_db' => 
4873   array (
4874     'return' => 'bool',
4875     'params' => 'string database_name [, resource link_identifier]',
4876     'description' => 'Create an mSQL database',
4877   ),
4878   'msql_drop_db' => 
4879   array (
4880     'return' => 'bool',
4881     'params' => 'string database_name [, resource link_identifier]',
4882     'description' => 'Drop (delete) an mSQL database',
4883   ),
4884   'msql_query' => 
4885   array (
4886     'return' => 'resource',
4887     'params' => 'string query [, resource link_identifier]',
4888     'description' => 'Send an SQL query to mSQL',
4889   ),
4890   'msql_db_query' => 
4891   array (
4892     'return' => 'resource',
4893     'params' => 'string database_name, string query [, resource link_identifier]',
4894     'description' => 'Send an SQL query to mSQL',
4895   ),
4896   'msql_list_dbs' => 
4897   array (
4898     'return' => 'resource',
4899     'params' => '[resource link_identifier]',
4900     'description' => 'List databases available on an mSQL server',
4901   ),
4902   'msql_list_tables' => 
4903   array (
4904     'return' => 'resource',
4905     'params' => 'string database_name [, resource link_identifier]',
4906     'description' => 'List tables in an mSQL database',
4907   ),
4908   'msql_list_fields' => 
4909   array (
4910     'return' => 'resource',
4911     'params' => 'string database_name, string table_name [, resource link_identifier]',
4912     'description' => 'List mSQL result fields',
4913   ),
4914   'msql_error' => 
4915   array (
4916     'return' => 'string',
4917     'params' => 'void',
4918     'description' => 'Returns the text of the error message from previous mSQL operation',
4919   ),
4920   'msql_result' => 
4921   array (
4922     'return' => 'string',
4923     'params' => 'int query, int row [, mixed field]',
4924     'description' => 'Get result data',
4925   ),
4926   'msql_num_rows' => 
4927   array (
4928     'return' => 'int',
4929     'params' => 'resource query',
4930     'description' => 'Get number of rows in a result',
4931   ),
4932   'msql_num_fields' => 
4933   array (
4934     'return' => 'int',
4935     'params' => 'resource query',
4936     'description' => 'Get number of fields in a result',
4937   ),
4938   'msql_fetch_row' => 
4939   array (
4940     'return' => 'array',
4941     'params' => 'resource query',
4942     'description' => 'Get a result row as an enumerated array',
4943   ),
4944   'msql_fetch_object' => 
4945   array (
4946     'return' => 'object',
4947     'params' => 'resource query [, resource result_type]',
4948     'description' => 'Fetch a result row as an object',
4949   ),
4950   'msql_fetch_array' => 
4951   array (
4952     'return' => 'array',
4953     'params' => 'resource query [, int result_type]',
4954     'description' => 'Fetch a result row as an associative array',
4955   ),
4956   'msql_data_seek' => 
4957   array (
4958     'return' => 'bool',
4959     'params' => 'resource query, int row_number',
4960     'description' => 'Move internal result pointer',
4961   ),
4962   'msql_fetch_field' => 
4963   array (
4964     'return' => 'object',
4965     'params' => 'resource query [, int field_offset]',
4966     'description' => 'Get column information from a result and return as an object',
4967   ),
4968   'msql_field_seek' => 
4969   array (
4970     'return' => 'bool',
4971     'params' => 'resource query, int field_offset',
4972     'description' => 'Set result pointer to a specific field offset',
4973   ),
4974   'msql_field_name' => 
4975   array (
4976     'return' => 'string',
4977     'params' => 'resource query, int field_index',
4978     'description' => 'Get the name of the specified field in a result',
4979   ),
4980   'msql_field_table' => 
4981   array (
4982     'return' => 'string',
4983     'params' => 'resource query, int field_offset',
4984     'description' => 'Get name of the table the specified field is in',
4985   ),
4986   'msql_field_len' => 
4987   array (
4988     'return' => 'int',
4989     'params' => 'int query, int field_offet',
4990     'description' => 'Returns the length of the specified field',
4991   ),
4992   'msql_field_type' => 
4993   array (
4994     'return' => 'string',
4995     'params' => 'resource query, int field_offset',
4996     'description' => 'Get the type of the specified field in a result',
4997   ),
4998   'msql_field_flags' => 
4999   array (
5000     'return' => 'string',
5001     'params' => 'resource query, int field_offset',
5002     'description' => 'Get the flags associated with the specified field in a result',
5003   ),
5004   'msql_free_result' => 
5005   array (
5006     'return' => 'bool',
5007     'params' => 'resource query',
5008     'description' => 'Free result memory',
5009   ),
5010   'msql_affected_rows' => 
5011   array (
5012     'return' => 'int',
5013     'params' => 'resource query',
5014     'description' => 'Return number of affected rows',
5015   ),
5016   'PDO::__construct' => 
5017   array (
5018     'return' => 'void',
5019     'params' => 'string dsn, string username, string passwd [, array options]',
5020     'description' => '',
5021   ),
5022   'PDO::prepare' => 
5023   array (
5024     'return' => 'object',
5025     'params' => 'string statment [, array options]',
5026     'description' => 'Prepares a statement for execution and returns a statement object',
5027   ),
5028   'PDO::beginTransaction' => 
5029   array (
5030     'return' => 'bool',
5031     'params' => '',
5032     'description' => 'Initiates a transaction',
5033   ),
5034   'PDO::commit' => 
5035   array (
5036     'return' => 'bool',
5037     'params' => '',
5038     'description' => 'Commit a transaction',
5039   ),
5040   'PDO::rollBack' => 
5041   array (
5042     'return' => 'bool',
5043     'params' => '',
5044     'description' => 'roll back a transaction',
5045   ),
5046   'PDO::setAttribute' => 
5047   array (
5048     'return' => 'bool',
5049     'params' => 'long attribute, mixed value',
5050     'description' => 'Set an attribute',
5051   ),
5052   'PDO::getAttribute' => 
5053   array (
5054     'return' => 'mixed',
5055     'params' => 'long attribute',
5056     'description' => 'Get an attribute',
5057   ),
5058   'PDO::exec' => 
5059   array (
5060     'return' => 'long',
5061     'params' => 'string query',
5062     'description' => 'Execute a query that does not return a row set, returning the number of affected rows',
5063   ),
5064   'PDO::lastInsertId' => 
5065   array (
5066     'return' => 'string',
5067     'params' => '[string seqname]',
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   ),
5070   'PDO::errorCode' => 
5071   array (
5072     'return' => 'string',
5073     'params' => '',
5074     'description' => 'Fetch the error code associated with the last operation on the database handle',
5075   ),
5076   'PDO::errorInfo' => 
5077   array (
5078     'return' => 'int',
5079     'params' => '',
5080     'description' => 'Fetch extended error information associated with the last operation on the database handle',
5081   ),
5082   'PDO::query' => 
5083   array (
5084     'return' => 'object',
5085     'params' => 'string sql [, PDOStatement::setFetchMode() args]',
5086     'description' => 'Prepare and execute $sql; returns the statement object for iteration',
5087   ),
5088   'PDO::quote' => 
5089   array (
5090     'return' => 'string',
5091     'params' => 'string string [, int paramtype]',
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   ),
5094   'PDO::__wakeup' => 
5095   array (
5096     'return' => 'int',
5097     'params' => '',
5098     'description' => 'Prevents use of a PDO instance that has been unserialized',
5099   ),
5100   'PDO::__sleep' => 
5101   array (
5102     'return' => 'int',
5103     'params' => '',
5104     'description' => 'Prevents serialization of a PDO instance',
5105   ),
5106   'pdo_drivers' => 
5107   array (
5108     'return' => 'array',
5109     'params' => '',
5110     'description' => 'Return array of available PDO drivers',
5111   ),
5112   'PDOStatement::execute' => 
5113   array (
5114     'return' => 'bool',
5115     'params' => '[array $bound_input_params]',
5116     'description' => 'Execute a prepared statement, optionally binding parameters',
5117   ),
5118   'PDOStatement::fetch' => 
5119   array (
5120     'return' => 'mixed',
5121     'params' => '[int $how = PDO_FETCH_BOTH [, int $orientation [, int $offset]]]',
5122     'description' => 'Fetches the next row and returns it, or false if there are no more rows',
5123   ),
5124   'PDOStatement::fetchObject' => 
5125   array (
5126     'return' => 'mixed',
5127     'params' => 'string class_name [, NULL|array ctor_args]',
5128     'description' => 'Fetches the next row and returns it as an object.',
5129   ),
5130   'PDOStatement::fetchColumn' => 
5131   array (
5132     'return' => 'string',
5133     'params' => '[int column_number]',
5134     'description' => 'Returns a data of the specified column in the result set.',
5135   ),
5136   'PDOStatement::fetchAll' => 
5137   array (
5138     'return' => 'array',
5139     'params' => '[int $how = PDO_FETCH_BOTH [, string class_name [, NULL|array ctor_args]]]',
5140     'description' => 'Returns an array of all of the results.',
5141   ),
5142   'PDOStatement::bindValue' => 
5143   array (
5144     'return' => 'bool',
5145     'params' => 'mixed $paramno, mixed $param [, int $type ]',
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   ),
5148   'PDOStatement::bindParam' => 
5149   array (
5150     'return' => 'bool',
5151     'params' => 'mixed $paramno, mixed &$param [, int $type [, int $maxlen [, mixed $driverdata]]]',
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   ),
5154   'PDOStatement::bindColumn' => 
5155   array (
5156     'return' => 'bool',
5157     'params' => 'mixed $column, mixed &$param [, int $type [, int $maxlen [, mixed $driverdata]]]',
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   ),
5160   'PDOStatement::rowCount' => 
5161   array (
5162     'return' => 'int',
5163     'params' => '',
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   ),
5166   'PDOStatement::errorCode' => 
5167   array (
5168     'return' => 'string',
5169     'params' => '',
5170     'description' => 'Fetch the error code associated with the last operation on the statement handle',
5171   ),
5172   'PDOStatement::errorInfo' => 
5173   array (
5174     'return' => 'array',
5175     'params' => '',
5176     'description' => 'Fetch extended error information associated with the last operation on the statement handle',
5177   ),
5178   'PDOStatement::setAttribute' => 
5179   array (
5180     'return' => 'bool',
5181     'params' => 'long attribute, mixed value',
5182     'description' => 'Set an attribute',
5183   ),
5184   'PDOStatement::getAttribute' => 
5185   array (
5186     'return' => 'mixed',
5187     'params' => 'long attribute',
5188     'description' => 'Get an attribute',
5189   ),
5190   'PDOStatement::columnCount' => 
5191   array (
5192     'return' => 'int',
5193     'params' => '',
5194     'description' => 'Returns the number of columns in the result set',
5195   ),
5196   'PDOStatement::getColumnMeta' => 
5197   array (
5198     'return' => 'array',
5199     'params' => 'int $column',
5200     'description' => 'Returns meta data for a numbered column',
5201   ),
5202   'PDOStatement::setFetchMode' => 
5203   array (
5204     'return' => 'bool',
5205     'params' => 'int mode [mixed* params]',
5206     'description' => 'Changes the default fetch mode for subsequent fetches (params have different meaning for different fetch modes)',
5207   ),
5208   'PDOStatement::nextRowset' => 
5209   array (
5210     'return' => 'bool',
5211     'params' => '',
5212     'description' => 'Advances to the next rowset in a multi-rowset statement handle. Returns true if it succeded, false otherwise',
5213   ),
5214   'PDOStatement::closeCursor' => 
5215   array (
5216     'return' => 'bool',
5217     'params' => '',
5218     'description' => 'Closes the cursor, leaving the statement ready for re-execution.',
5219   ),
5220   'PDOStatement::debugDumpParams' => 
5221   array (
5222     'return' => 'void',
5223     'params' => '',
5224     'description' => 'A utility for internals hackers to debug parameter internals',
5225   ),
5226   'PDOStatement::__wakeup' => 
5227   array (
5228     'return' => 'int',
5229     'params' => '',
5230     'description' => 'Prevents use of a PDOStatement instance that has been unserialized',
5231   ),
5232   'PDOStatement::__sleep' => 
5233   array (
5234     'return' => 'int',
5235     'params' => '',
5236     'description' => 'Prevents serialization of a PDOStatement instance',
5237   ),
5238   'xsl_xsltprocessor_import_stylesheet' => 
5239   array (
5240     'return' => 'void',
5241     'params' => 'domdocument doc',
5242     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Since:',
5243   ),
5244   'xsl_xsltprocessor_transform_to_doc' => 
5245   array (
5246     'return' => 'domdocument',
5247     'params' => 'domnode doc',
5248     'description' => 'URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Since:',
5249   ),
5250   'xsl_xsltprocessor_transform_to_uri' => 
5251   array (
5252     'return' => 'int',
5253     'params' => 'domdocument doc, string uri',
5254     'description' => '',
5255   ),
5256   'xsl_xsltprocessor_transform_to_xml' => 
5257   array (
5258     'return' => 'string',
5259     'params' => 'domdocument doc',
5260     'description' => '',
5261   ),
5262   'xsl_xsltprocessor_set_parameter' => 
5263   array (
5264     'return' => 'bool',
5265     'params' => 'string namespace, mixed name [, string value]',
5266     'description' => '',
5267   ),
5268   'xsl_xsltprocessor_get_parameter' => 
5269   array (
5270     'return' => 'string',
5271     'params' => 'string namespace, string name',
5272     'description' => '',
5273   ),
5274   'xsl_xsltprocessor_remove_parameter' => 
5275   array (
5276     'return' => 'bool',
5277     'params' => 'string namespace, string name',
5278     'description' => '',
5279   ),
5280   'xsl_xsltprocessor_register_php_functions' => 
5281   array (
5282     'return' => 'void',
5283     'params' => '',
5284     'description' => '',
5285   ),
5286   'xsl_xsltprocessor_has_exslt_support' => 
5287   array (
5288     'return' => 'bool',
5289     'params' => '',
5290     'description' => '',
5291   ),
5292   'libxml_set_streams_context' => 
5293   array (
5294     'return' => 'void',
5295     'params' => 'resource streams_context',
5296     'description' => 'Set the streams context for the next libxml document load or write',
5297   ),
5298   'libxml_use_internal_errors' => 
5299   array (
5300     'return' => 'void',
5301     'params' => 'boolean use_errors',
5302     'description' => 'Disable libxml errors and allow user to fetch error information as needed',
5303   ),
5304   'libxml_get_last_error' => 
5305   array (
5306     'return' => 'object',
5307     'params' => '',
5308     'description' => 'Retrieve last error from libxml',
5309   ),
5310   'libxml_get_errors' => 
5311   array (
5312     'return' => 'object',
5313     'params' => '',
5314     'description' => 'Retrieve array of errors',
5315   ),
5316   'libxml_clear_errors' => 
5317   array (
5318     'return' => 'void',
5319     'params' => '',
5320     'description' => 'Clear last error from libxml',
5321   ),
5322   'mssql_connect' => 
5323   array (
5324     'return' => 'int',
5325     'params' => '[string servername [, string username [, string password [, bool new_link]]]',
5326     'description' => 'Establishes a connection to a MS-SQL server',
5327   ),
5328   'mssql_pconnect' => 
5329   array (
5330     'return' => 'int',
5331     'params' => '[string servername [, string username [, string password [, bool new_link]]]]',
5332     'description' => 'Establishes a persistent connection to a MS-SQL server',
5333   ),
5334   'mssql_close' => 
5335   array (
5336     'return' => 'bool',
5337     'params' => '[resource conn_id]',
5338     'description' => 'Closes a connection to a MS-SQL server',
5339   ),
5340   'mssql_select_db' => 
5341   array (
5342     'return' => 'bool',
5343     'params' => 'string database_name [, resource conn_id]',
5344     'description' => 'Select a MS-SQL database',
5345   ),
5346   'mssql_fetch_batch' => 
5347   array (
5348     'return' => 'int',
5349     'params' => 'resource result_index',
5350     'description' => 'Returns the next batch of records',
5351   ),
5352   'mssql_query' => 
5353   array (
5354     'return' => 'resource',
5355     'params' => 'string query [, resource conn_id [, int batch_size]]',
5356     'description' => 'Perform an SQL query on a MS-SQL server database',
5357   ),
5358   'mssql_rows_affected' => 
5359   array (
5360     'return' => 'int',
5361     'params' => 'resource conn_id',
5362     'description' => 'Returns the number of records affected by the query',
5363   ),
5364   'mssql_free_result' => 
5365   array (
5366     'return' => 'bool',
5367     'params' => 'resource result_index',
5368     'description' => 'Free a MS-SQL result index',
5369   ),
5370   'mssql_get_last_message' => 
5371   array (
5372     'return' => 'string',
5373     'params' => 'void',
5374     'description' => 'Gets the last message from the MS-SQL server',
5375   ),
5376   'mssql_num_rows' => 
5377   array (
5378     'return' => 'int',
5379     'params' => 'resource mssql_result_index',
5380     'description' => 'Returns the number of rows fetched in from the result id specified',
5381   ),
5382   'mssql_num_fields' => 
5383   array (
5384     'return' => 'int',
5385     'params' => 'resource mssql_result_index',
5386     'description' => 'Returns the number of fields fetched in from the result id specified',
5387   ),
5388   'mssql_fetch_row' => 
5389   array (
5390     'return' => 'array',
5391     'params' => 'resource result_id',
5392     'description' => 'Returns an array of the current row in the result set specified by result_id',
5393   ),
5394   'mssql_fetch_object' => 
5395   array (
5396     'return' => 'object',
5397     'params' => 'resource result_id [, int result_type]',
5398     'description' => 'Returns a psuedo-object of the current row in the result set specified by result_id',
5399   ),
5400   'mssql_fetch_array' => 
5401   array (
5402     'return' => 'array',
5403     'params' => 'resource result_id [, int result_type]',
5404     'description' => 'Returns an associative array of the current row in the result set specified by result_id',
5405   ),
5406   'mssql_fetch_assoc' => 
5407   array (
5408     'return' => 'array',
5409     'params' => 'resource result_id',
5410     'description' => 'Returns an associative array of the current row in the result set specified by result_id',
5411   ),
5412   'mssql_data_seek' => 
5413   array (
5414     'return' => 'bool',
5415     'params' => 'resource result_id, int offset',
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   ),
5418   'mssql_fetch_field' => 
5419   array (
5420     'return' => 'object',
5421     'params' => 'resource result_id [, int offset]',
5422     'description' => 'Gets information about certain fields in a query result',
5423   ),
5424   'mssql_field_length' => 
5425   array (
5426     'return' => 'int',
5427     'params' => 'resource result_id [, int offset]',
5428     'description' => 'Get the length of a MS-SQL field',
5429   ),
5430   'mssql_field_name' => 
5431   array (
5432     'return' => 'string',
5433     'params' => 'resource result_id [, int offset]',
5434     'description' => 'Returns the name of the field given by offset in the result set given by result_id',
5435   ),
5436   'mssql_field_type' => 
5437   array (
5438     'return' => 'string',
5439     'params' => 'resource result_id [, int offset]',
5440     'description' => 'Returns the type of a field',
5441   ),
5442   'mssql_field_seek' => 
5443   array (
5444     'return' => 'bool',
5445     'params' => 'int result_id, int offset',
5446     'description' => 'Seeks to the specified field offset',
5447   ),
5448   'mssql_result' => 
5449   array (
5450     'return' => 'string',
5451     'params' => 'resource result_id, int row, mixed field',
5452     'description' => 'Returns the contents of one cell from a MS-SQL result set',
5453   ),
5454   'mssql_next_result' => 
5455   array (
5456     'return' => 'bool',
5457     'params' => 'resource result_id',
5458     'description' => 'Move the internal result pointer to the next result',
5459   ),
5460   'mssql_min_error_severity' => 
5461   array (
5462     'return' => 'void',
5463     'params' => 'int severity',
5464     'description' => 'Sets the lower error severity',
5465   ),
5466   'mssql_min_message_severity' => 
5467   array (
5468     'return' => 'void',
5469     'params' => 'int severity',
5470     'description' => 'Sets the lower message severity',
5471   ),
5472   'mssql_init' => 
5473   array (
5474     'return' => 'int',
5475     'params' => 'string sp_name [, resource conn_id]',
5476     'description' => 'Initializes a stored procedure or a remote stored procedure',
5477   ),
5478   'mssql_bind' => 
5479   array (
5480     'return' => 'bool',
5481     'params' => 'resource stmt, string param_name, mixed var, int type [, int is_output [, int is_null [, int maxlen]]]',
5482     'description' => 'Adds a parameter to a stored procedure or a remote stored procedure',
5483   ),
5484   'mssql_execute' => 
5485   array (
5486     'return' => 'mixed',
5487     'params' => 'resource stmt [, bool skip_results = false]',
5488     'description' => 'Executes a stored procedure on a MS-SQL server database',
5489   ),
5490   'mssql_free_statement' => 
5491   array (
5492     'return' => 'bool',
5493     'params' => 'resource result_index',
5494     'description' => 'Free a MS-SQL statement index',
5495   ),
5496   'mssql_guid_string' => 
5497   array (
5498     'return' => 'string',
5499     'params' => 'string binary [,int short_format]',
5500     'description' => 'Converts a 16 byte binary GUID to a string',
5501   ),
5502   'oci_define_by_name' => 
5503   array (
5504     'return' => 'bool',
5505     'params' => 'resource stmt, string name, mixed &var [, int type]',
5506     'description' => 'Define a PHP variable to an Oracle column by name',
5507   ),
5508   'oci_bind_by_name' => 
5509   array (
5510     'return' => 'bool',
5511     'params' => 'resource stmt, string name, mixed &var, [, int maxlength [, int type]]',
5512     'description' => 'Bind a PHP variable to an Oracle placeholder by name',
5513   ),
5514   'oci_bind_array_by_name' => 
5515   array (
5516     'return' => 'bool',
5517     'params' => 'resource stmt, string name, array &var, int max_table_length [, int max_item_length [, int type ]]',
5518     'description' => 'Bind a PHP array to an Oracle PL/SQL type by name',
5519   ),
5520   'oci_free_descriptor' => 
5521   array (
5522     'return' => 'bool',
5523     'params' => '',
5524     'description' => 'Deletes large object description',
5525   ),
5526   'oci_lob_save' => 
5527   array (
5528     'return' => 'bool',
5529     'params' => ' string data [, int offset ]',
5530     'description' => 'Saves a large object',
5531   ),
5532   'oci_lob_import' => 
5533   array (
5534     'return' => 'bool',
5535     'params' => ' string filename ',
5536     'description' => 'Loads file into a LOB',
5537   ),
5538   'oci_lob_load' => 
5539   array (
5540     'return' => 'string',
5541     'params' => '',
5542     'description' => 'Loads a large object',
5543   ),
5544   'oci_lob_read' => 
5545   array (
5546     'return' => 'string',
5547     'params' => ' int length ',
5548     'description' => 'Reads particular part of a large object',
5549   ),
5550   'oci_lob_eof' => 
5551   array (
5552     'return' => 'bool',
5553     'params' => '',
5554     'description' => 'Checks if EOF is reached',
5555   ),
5556   'oci_lob_tell' => 
5557   array (
5558     'return' => 'int',
5559     'params' => '',
5560     'description' => 'Tells LOB pointer position',
5561   ),
5562   'oci_lob_rewind' => 
5563   array (
5564     'return' => 'bool',
5565     'params' => '',
5566     'description' => 'Rewind pointer of a LOB',
5567   ),
5568   'oci_lob_seek' => 
5569   array (
5570     'return' => 'bool',
5571     'params' => ' int offset [, int whence ]',
5572     'description' => 'Moves the pointer of a LOB',
5573   ),
5574   'oci_lob_size' => 
5575   array (
5576     'return' => 'int',
5577     'params' => '',
5578     'description' => 'Returns size of a large object',
5579   ),
5580   'oci_lob_write' => 
5581   array (
5582     'return' => 'int',
5583     'params' => ' string string [, int length ]',
5584     'description' => 'Writes data to current position of a LOB',
5585   ),
5586   'oci_lob_append' => 
5587   array (
5588     'return' => 'bool',
5589     'params' => ' object lob ',
5590     'description' => 'Appends data from a LOB to another LOB',
5591   ),
5592   'oci_lob_truncate' => 
5593   array (
5594     'return' => 'bool',
5595     'params' => ' [ int length ]',
5596     'description' => 'Truncates a LOB',
5597   ),
5598   'oci_lob_erase' => 
5599   array (
5600     'return' => 'int',
5601     'params' => ' [ int offset [, int length ] ] ',
5602     'description' => 'Erases a specified portion of the internal LOB, starting at a specified offset',
5603   ),
5604   'oci_lob_flush' => 
5605   array (
5606     'return' => 'bool',
5607     'params' => ' [ int flag ] ',
5608     'description' => 'Flushes the LOB buffer',
5609   ),
5610   'ocisetbufferinglob' => 
5611   array (
5612     'return' => 'bool',
5613     'params' => ' boolean flag ',
5614     'description' => 'Enables/disables buffering for a LOB',
5615   ),
5616   'ocigetbufferinglob' => 
5617   array (
5618     'return' => 'bool',
5619     'params' => '',
5620     'description' => 'Returns current state of buffering for a LOB',
5621   ),
5622   'oci_lob_copy' => 
5623   array (
5624     'return' => 'bool',
5625     'params' => ' object lob_to, object lob_from [, int length ] ',
5626     'description' => 'Copies data from a LOB to another LOB',
5627   ),
5628   'oci_lob_is_equal' => 
5629   array (
5630     'return' => 'bool',
5631     'params' => ' object lob1, object lob2 ',
5632     'description' => 'Tests to see if two LOB/FILE locators are equal',
5633   ),
5634   'oci_lob_export' => 
5635   array (
5636     'return' => 'bool',
5637     'params' => '[string filename [, int start [, int length]]]',
5638     'description' => 'Writes a large object into a file',
5639   ),
5640   'oci_lob_write_temporary' => 
5641   array (
5642     'return' => 'bool',
5643     'params' => 'string var [, int lob_type]',
5644     'description' => 'Writes temporary blob',
5645   ),
5646   'oci_lob_close' => 
5647   array (
5648     'return' => 'bool',
5649     'params' => '',
5650     'description' => 'Closes lob descriptor',
5651   ),
5652   'oci_new_descriptor' => 
5653   array (
5654     'return' => 'object',
5655     'params' => 'resource connection [, int type]',
5656     'description' => 'Initialize a new empty descriptor LOB/FILE (LOB is default)',
5657   ),
5658   'oci_rollback' => 
5659   array (
5660     'return' => 'bool',
5661     'params' => 'resource connection',
5662     'description' => 'Rollback the current context',
5663   ),
5664   'oci_commit' => 
5665   array (
5666     'return' => 'bool',
5667     'params' => 'resource connection',
5668     'description' => 'Commit the current context',
5669   ),
5670   'oci_field_name' => 
5671   array (
5672     'return' => 'string',
5673     'params' => 'resource stmt, int col',
5674     'description' => 'Tell the name of a column',
5675   ),
5676   'oci_field_size' => 
5677   array (
5678     'return' => 'int',
5679     'params' => 'resource stmt, int col',
5680     'description' => 'Tell the maximum data size of a column',
5681   ),
5682   'oci_field_scale' => 
5683   array (
5684     'return' => 'int',
5685     'params' => 'resource stmt, int col',
5686     'description' => 'Tell the scale of a column',
5687   ),
5688   'oci_field_precision' => 
5689   array (
5690     'return' => 'int',
5691     'params' => 'resource stmt, int col',
5692     'description' => 'Tell the precision of a column',
5693   ),
5694   'oci_field_type' => 
5695   array (
5696     'return' => 'mixed',
5697     'params' => 'resource stmt, int col',
5698     'description' => 'Tell the data type of a column',
5699   ),
5700   'oci_field_type_raw' => 
5701   array (
5702     'return' => 'int',
5703     'params' => 'resource stmt, int col',
5704     'description' => 'Tell the raw oracle data type of a column',
5705   ),
5706   'oci_field_is_null' => 
5707   array (
5708     'return' => 'bool',
5709     'params' => 'resource stmt, int col',
5710     'description' => 'Tell whether a column is NULL',
5711   ),
5712   'oci_internal_debug' => 
5713   array (
5714     'return' => 'void',
5715     'params' => 'int onoff',
5716     'description' => 'Toggle internal debugging output for the OCI extension',
5717   ),
5718   'oci_execute' => 
5719   array (
5720     'return' => 'bool',
5721     'params' => 'resource stmt [, int mode]',
5722     'description' => 'Execute a parsed statement',
5723   ),
5724   'oci_cancel' => 
5725   array (
5726     'return' => 'bool',
5727     'params' => 'resource stmt',
5728     'description' => 'Cancel reading from a cursor',
5729   ),
5730   'oci_fetch' => 
5731   array (
5732     'return' => 'bool',
5733     'params' => 'resource stmt',
5734     'description' => 'Prepare a new row of data for reading',
5735   ),
5736   'ocifetchinto' => 
5737   array (
5738     'return' => 'int',
5739     'params' => 'resource stmt, array &output [, int mode]',
5740     'description' => 'Fetch a row of result data into an array',
5741   ),
5742   'oci_fetch_all' => 
5743   array (
5744     'return' => 'int',
5745     'params' => 'resource stmt, array &output[, int skip[, int maxrows[, int flags]]]',
5746     'description' => 'Fetch all rows of result data into an array',
5747   ),
5748   'oci_fetch_object' => 
5749   array (
5750     'return' => 'object',
5751     'params' => ' resource stmt ',
5752     'description' => 'Fetch a result row as an object',
5753   ),
5754   'oci_fetch_row' => 
5755   array (
5756     'return' => 'array',
5757     'params' => ' resource stmt ',
5758     'description' => 'Fetch a result row as an enumerated array',
5759   ),
5760   'oci_fetch_assoc' => 
5761   array (
5762     'return' => 'array',
5763     'params' => ' resource stmt ',
5764     'description' => 'Fetch a result row as an associative array',
5765   ),
5766   'oci_fetch_array' => 
5767   array (
5768     'return' => 'array',
5769     'params' => ' resource stmt [, int mode ]',
5770     'description' => 'Fetch a result row as an array',
5771   ),
5772   'oci_free_statement' => 
5773   array (
5774     'return' => 'bool',
5775     'params' => 'resource stmt',
5776     'description' => 'Free all resources associated with a statement',
5777   ),
5778   'oci_close' => 
5779   array (
5780     'return' => 'bool',
5781     'params' => 'resource connection',
5782     'description' => 'Disconnect from database',
5783   ),
5784   'oci_new_connect' => 
5785   array (
5786     'return' => 'resource',
5787     'params' => 'string user, string pass [, string db]',
5788     'description' => 'Connect to an Oracle database and log on. Returns a new session.',
5789   ),
5790   'oci_connect' => 
5791   array (
5792     'return' => 'resource',
5793     'params' => 'string user, string pass [, string db [, string charset [, int session_mode ]]',
5794     'description' => 'Connect to an Oracle database and log on. Returns a new session.',
5795   ),
5796   'oci_pconnect' => 
5797   array (
5798     'return' => 'resource',
5799     'params' => 'string user, string pass [, string db [, string charset ]]',
5800     'description' => 'Connect to an Oracle database using a persistent connection and log on. Returns a new session.',
5801   ),
5802   'oci_error' => 
5803   array (
5804     'return' => 'array',
5805     'params' => '[resource stmt|connection|global]',
5806     'description' => 'Return the last error of stmt|connection|global. If no error happened returns false.',
5807   ),
5808   'oci_num_fields' => 
5809   array (
5810     'return' => 'int',
5811     'params' => 'resource stmt',
5812     'description' => 'Return the number of result columns in a statement',
5813   ),
5814   'oci_parse' => 
5815   array (
5816     'return' => 'resource',
5817     'params' => 'resource connection, string query',
5818     'description' => 'Parse a query and return a statement',
5819   ),
5820   'oci_set_prefetch' => 
5821   array (
5822     'return' => 'bool',
5823     'params' => 'resource stmt, int prefetch_rows',
5824     'description' => 'Sets the number of rows to be prefetched on execute to prefetch_rows for stmt',
5825   ),
5826   'oci_password_change' => 
5827   array (
5828     'return' => 'bool',
5829     'params' => 'resource connection, string username, string old_password, string new_password',
5830     'description' => 'Changes the password of an account',
5831   ),
5832   'oci_new_cursor' => 
5833   array (
5834     'return' => 'resource',
5835     'params' => 'resource connection',
5836     'description' => 'Return a new cursor (Statement-Handle) - use this to bind ref-cursors!',
5837   ),
5838   'oci_result' => 
5839   array (
5840     'return' => 'string',
5841     'params' => 'resource stmt, mixed column',
5842     'description' => 'Return a single column of result data',
5843   ),
5844   'oci_server_version' => 
5845   array (
5846     'return' => 'string',
5847     'params' => 'resource connection',
5848     'description' => 'Return a string containing server version information',
5849   ),
5850   'oci_statement_type' => 
5851   array (
5852     'return' => 'string',
5853     'params' => 'resource stmt',
5854     'description' => 'Return the query type of an OCI statement',
5855   ),
5856   'oci_num_rows' => 
5857   array (
5858     'return' => 'int',
5859     'params' => 'resource stmt',
5860     'description' => 'Return the row count of an OCI statement',
5861   ),
5862   'oci_free_collection' => 
5863   array (
5864     'return' => 'bool',
5865     'params' => '',
5866     'description' => 'Deletes collection object',
5867   ),
5868   'oci_collection_append' => 
5869   array (
5870     'return' => 'bool',
5871     'params' => 'string value',
5872     'description' => 'Append an object to the collection',
5873   ),
5874   'oci_collection_element_get' => 
5875   array (
5876     'return' => 'string',
5877     'params' => 'int ndx',
5878     'description' => 'Retrieve the value at collection index ndx',
5879   ),
5880   'oci_collection_assign' => 
5881   array (
5882     'return' => 'bool',
5883     'params' => 'object from',
5884     'description' => 'Assign a collection from another existing collection',
5885   ),
5886   'oci_collection_element_assign' => 
5887   array (
5888     'return' => 'bool',
5889     'params' => 'int index, string val',
5890     'description' => 'Assign element val to collection at index ndx',
5891   ),
5892   'oci_collection_size' => 
5893   array (
5894     'return' => 'int',
5895     'params' => '',
5896     'description' => 'Return the size of a collection',
5897   ),
5898   'oci_collection_max' => 
5899   array (
5900     'return' => 'int',
5901     'params' => '',
5902     'description' => 'Return the max value of a collection. For a varray this is the maximum length of the array',
5903   ),
5904   'oci_collection_trim' => 
5905   array (
5906     'return' => 'bool',
5907     'params' => 'int num',
5908     'description' => 'Trim num elements from the end of a collection',
5909   ),
5910   'oci_new_collection' => 
5911   array (
5912     'return' => 'object',
5913     'params' => 'resource connection, string tdo [, string schema]',
5914     'description' => 'Initialize a new collection',
5915   ),
5916   'mb_language' => 
5917   array (
5918     'return' => 'string',
5919     'params' => '[string language]',
5920     'description' => 'Sets the current language or Returns the current language as a string',
5921   ),
5922   'mb_internal_encoding' => 
5923   array (
5924     'return' => 'string',
5925     'params' => '[string encoding]',
5926     'description' => 'Sets the current internal encoding or Returns the current internal encoding as a string',
5927   ),
5928   'mb_http_input' => 
5929   array (
5930     'return' => 'mixed',
5931     'params' => '[string type]',
5932     'description' => 'Returns the input encoding',
5933   ),
5934   'mb_http_output' => 
5935   array (
5936     'return' => 'string',
5937     'params' => '[string encoding]',
5938     'description' => 'Sets the current output_encoding or returns the current output_encoding as a string',
5939   ),
5940   'mb_detect_order' => 
5941   array (
5942     'return' => 'bool|array',
5943     'params' => '[mixed encoding-list]',
5944     'description' => 'Sets the current detect_order or Return the current detect_order as a array',
5945   ),
5946   'mb_substitute_character' => 
5947   array (
5948     'return' => 'mixed',
5949     'params' => '[mixed substchar]',
5950     'description' => 'Sets the current substitute_character or returns the current substitute_character',
5951   ),
5952   'mb_preferred_mime_name' => 
5953   array (
5954     'return' => 'string',
5955     'params' => 'string encoding',
5956     'description' => 'Return the preferred MIME name (charset) as a string',
5957   ),
5958   'mb_parse_str' => 
5959   array (
5960     'return' => 'bool',
5961     'params' => 'string encoded_string [, array result]',
5962     'description' => 'Parses GET/POST/COOKIE data and sets global variables',
5963   ),
5964   'mb_output_handler' => 
5965   array (
5966     'return' => 'string',
5967     'params' => 'string contents, int status',
5968     'description' => 'Returns string in output buffer converted to the http_output encoding',
5969   ),
5970   'mb_strlen' => 
5971   array (
5972     'return' => 'int',
5973     'params' => 'string str [, string encoding]',
5974     'description' => 'Get character numbers of a string',
5975   ),
5976   'mb_strpos' => 
5977   array (
5978     'return' => 'int',
5979     'params' => 'string haystack, string needle [, int offset [, string encoding]]',
5980     'description' => 'Find position of first occurrence of a string within another',
5981   ),
5982   'mb_strrpos' => 
5983   array (
5984     'return' => 'int',
5985     'params' => 'string haystack, string needle [, string encoding]',
5986     'description' => 'Find the last occurrence of a character in a string within another',
5987   ),
5988   'mb_substr_count' => 
5989   array (
5990     'return' => 'int',
5991     'params' => 'string haystack, string needle [, string encoding]',
5992     'description' => 'Count the number of substring occurrences',
5993   ),
5994   'mb_substr' => 
5995   array (
5996     'return' => 'string',
5997     'params' => 'string str, int start [, int length [, string encoding]]',
5998     'description' => 'Returns part of a string',
5999   ),
6000   'mb_strcut' => 
6001   array (
6002     'return' => 'string',
6003     'params' => 'string str, int start [, int length [, string encoding]]',
6004     'description' => 'Returns part of a string',
6005   ),
6006   'mb_strwidth' => 
6007   array (
6008     'return' => 'int',
6009     'params' => 'string str [, string encoding]',
6010     'description' => 'Gets terminal width of a string',
6011   ),
6012   'mb_strimwidth' => 
6013   array (
6014     'return' => 'string',
6015     'params' => 'string str, int start, int width [, string trimmarker [, string encoding]]',
6016     'description' => 'Trim the string in terminal width',
6017   ),
6018   'mb_convert_encoding' => 
6019   array (
6020     'return' => 'string',
6021     'params' => 'string str, string to-encoding [, mixed from-encoding]',
6022     'description' => 'Returns converted string in desired encoding',
6023   ),
6024   'mb_convert_case' => 
6025   array (
6026     'return' => 'string',
6027     'params' => 'string sourcestring, int mode [, string encoding]',
6028     'description' => 'Returns a case-folded version of sourcestring',
6029   ),
6030   'mb_strtoupper' => 
6031   array (
6032     'return' => 'string',
6033     'params' => 'string sourcestring [, string encoding]',
6034     'description' => '*  Returns a uppercased version of sourcestring',
6035   ),
6036   'mb_strtolower' => 
6037   array (
6038     'return' => 'string',
6039     'params' => 'string sourcestring [, string encoding]',
6040     'description' => '*  Returns a lowercased version of sourcestring',
6041   ),
6042   'mb_detect_encoding' => 
6043   array (
6044     'return' => 'string',
6045     'params' => 'string str [, mixed encoding_list [, bool strict]]',
6046     'description' => 'Encodings of the given string is returned (as a string)',
6047   ),
6048   'mb_list_encodings' => 
6049   array (
6050     'return' => 'array',
6051     'params' => '',
6052     'description' => 'Returns an array of all supported encodings',
6053   ),
6054   'mb_encode_mimeheader' => 
6055   array (
6056     'return' => 'string',
6057     'params' => 'string str [, string charset [, string transfer-encoding [, string linefeed [, int indent]]]]',
6058     'description' => 'Converts the string to MIME "encoded-word" in the format of =?charset?(B|Q)?encoded_string?=',
6059   ),
6060   'mb_decode_mimeheader' => 
6061   array (
6062     'return' => 'string',
6063     'params' => 'string string',
6064     'description' => 'Decodes the MIME "encoded-word" in the string',
6065   ),
6066   'mb_convert_kana' => 
6067   array (
6068     'return' => 'string',
6069     'params' => 'string str [, string option] [, string encoding]',
6070     'description' => 'Conversion between full-width character and half-width character (Japanese)',
6071   ),
6072   'mb_convert_variables' => 
6073   array (
6074     'return' => 'string',
6075     'params' => 'string to-encoding, mixed from-encoding [, mixed ...]',
6076     'description' => 'Converts the string resource in variables to desired encoding',
6077   ),
6078   'mb_encode_numericentity' => 
6079   array (
6080     'return' => 'string',
6081     'params' => 'string string, array convmap [, string encoding]',
6082     'description' => 'Converts specified characters to HTML numeric entities',
6083   ),
6084   'mb_decode_numericentity' => 
6085   array (
6086     'return' => 'string',
6087     'params' => 'string string, array convmap [, string encoding]',
6088     'description' => 'Converts HTML numeric entities to character code',
6089   ),
6090   'mb_send_mail' => 
6091   array (
6092     'return' => 'int',
6093     'params' => 'string to, string subject, string message [, string additional_headers [, string additional_parameters]]',
6094     'description' => '*  Sends an email message with MIME scheme',
6095   ),
6096   'mb_get_info' => 
6097   array (
6098     'return' => 'mixed',
6099     'params' => '[string type]',
6100     'description' => 'Returns the current settings of mbstring',
6101   ),
6102   'mb_check_encoding' => 
6103   array (
6104     'return' => 'bool',
6105     'params' => '[string var[, string encoding]]',
6106     'description' => 'Check if the string is valid for the specified encoding',
6107   ),
6108   'mb_regex_encoding' => 
6109   array (
6110     'return' => 'string',
6111     'params' => '[string encoding]',
6112     'description' => 'Returns the current encoding for regex as a string.',
6113   ),
6114   'mb_ereg' => 
6115   array (
6116     'return' => 'int',
6117     'params' => 'string pattern, string string [, array registers]',
6118     'description' => 'Regular expression match for multibyte string',
6119   ),
6120   'mb_eregi' => 
6121   array (
6122     'return' => 'int',
6123     'params' => 'string pattern, string string [, array registers]',
6124     'description' => 'Case-insensitive regular expression match for multibyte string',
6125   ),
6126   'mb_ereg_replace' => 
6127   array (
6128     'return' => 'string',
6129     'params' => 'string pattern, string replacement, string string [, string option]',
6130     'description' => 'Replace regular expression for multibyte string',
6131   ),
6132   'mb_eregi_replace' => 
6133   array (
6134     'return' => 'string',
6135     'params' => 'string pattern, string replacement, string string',
6136     'description' => 'Case insensitive replace regular expression for multibyte string',
6137   ),
6138   'mb_split' => 
6139   array (
6140     'return' => 'array',
6141     'params' => 'string pattern, string string [, int limit]',
6142     'description' => 'split multibyte string into array by regular expression',
6143   ),
6144   'mb_ereg_match' => 
6145   array (
6146     'return' => 'bool',
6147     'params' => 'string pattern, string string [,string option]',
6148     'description' => 'Regular expression match for multibyte string',
6149   ),
6150   'mb_ereg_search' => 
6151   array (
6152     'return' => 'bool',
6153     'params' => '[string pattern[, string option]]',
6154     'description' => 'Regular expression search for multibyte string',
6155   ),
6156   'mb_ereg_search_pos' => 
6157   array (
6158     'return' => 'array',
6159     'params' => '[string pattern[, string option]]',
6160     'description' => 'Regular expression search for multibyte string',
6161   ),
6162   'mb_ereg_search_regs' => 
6163   array (
6164     'return' => 'array',
6165     'params' => '[string pattern[, string option]]',
6166     'description' => 'Regular expression search for multibyte string',
6167   ),
6168   'mb_ereg_search_init' => 
6169   array (
6170     'return' => 'bool',
6171     'params' => 'string string [, string pattern[, string option]]',
6172     'description' => 'Initialize string and regular expression for search.',
6173   ),
6174   'mb_ereg_search_getregs' => 
6175   array (
6176     'return' => 'array',
6177     'params' => 'void',
6178     'description' => 'Get matched substring of the last time',
6179   ),
6180   'mb_ereg_search_getpos' => 
6181   array (
6182     'return' => 'int',
6183     'params' => 'void',
6184     'description' => 'Get search start position',
6185   ),
6186   'mb_ereg_search_setpos' => 
6187   array (
6188     'return' => 'bool',
6189     'params' => 'int position',
6190     'description' => 'Set search start position',
6191   ),
6192   'mb_regex_set_options' => 
6193   array (
6194     'return' => 'string',
6195     'params' => '[string options]',
6196     'description' => 'Set or get the default options for mbregex functions',
6197   ),
6198   'preg_match' => 
6199   array (
6200     'return' => 'int',
6201     'params' => 'string pattern, string subject [, array subpatterns [, int flags [, int offset]]]',
6202     'description' => 'Perform a Perl-style regular expression match',
6203   ),
6204   'preg_match_all' => 
6205   array (
6206     'return' => 'int',
6207     'params' => 'string pattern, string subject, array subpatterns [, int flags [, int offset]]',
6208     'description' => 'Perform a Perl-style global regular expression match',
6209   ),
6210   'preg_replace' => 
6211   array (
6212     'return' => 'string',
6213     'params' => 'mixed regex, mixed replace, mixed subject [, int limit [, count]]',
6214     'description' => 'Perform Perl-style regular expression replacement.',
6215   ),
6216   'preg_replace_callback' => 
6217   array (
6218     'return' => 'string',
6219     'params' => 'mixed regex, mixed callback, mixed subject [, int limit [, count]]',
6220     'description' => 'Perform Perl-style regular expression replacement using replacement callback.',
6221   ),
6222   'preg_split' => 
6223   array (
6224     'return' => 'array',
6225     'params' => 'string pattern, string subject [, int limit [, int flags]]',
6226     'description' => 'Split string into an array using a perl-style regular expression as a delimiter',
6227   ),
6228   'preg_quote' => 
6229   array (
6230     'return' => 'string',
6231     'params' => 'string str, string delim_char',
6232     'description' => 'Quote regular expression characters plus an optional character',
6233   ),
6234   'preg_grep' => 
6235   array (
6236     'return' => 'array',
6237     'params' => 'string regex, array input',
6238     'description' => 'Searches array and returns entries which match regex',
6239   ),
6240   'pcntl_fork' => 
6241   array (
6242     'return' => 'int',
6243     'params' => 'void',
6244     'description' => 'Forks the currently running process following the same behavior as the UNIX fork() system call',
6245   ),
6246   'pcntl_alarm' => 
6247   array (
6248     'return' => 'int',
6249     'params' => 'int seconds',
6250     'description' => 'Set an alarm clock for delivery of a signal',
6251   ),
6252   'pcntl_waitpid' => 
6253   array (
6254     'return' => 'int',
6255     'params' => 'int pid, int &status, int options',
6256     'description' => 'Waits on or returns the status of a forked child as defined by the waitpid() system call',
6257   ),
6258   'pcntl_wait' => 
6259   array (
6260     'return' => 'int',
6261     'params' => 'int &status',
6262     'description' => 'Waits on or returns the status of a forked child as defined by the waitpid() system call',
6263   ),
6264   'pcntl_wifexited' => 
6265   array (
6266     'return' => 'bool',
6267     'params' => 'int status',
6268     'description' => 'Returns true if the child status code represents a successful exit',
6269   ),
6270   'pcntl_wifstopped' => 
6271   array (
6272     'return' => 'bool',
6273     'params' => 'int status',
6274     'description' => 'Returns true if the child status code represents a stopped process (WUNTRACED must have been used with waitpid)',
6275   ),
6276   'pcntl_wifsignaled' => 
6277   array (
6278     'return' => 'bool',
6279     'params' => 'int status',
6280     'description' => 'Returns true if the child status code represents a process that was terminated due to a signal',
6281   ),
6282   'pcntl_wexitstatus' => 
6283   array (
6284     'return' => 'int',
6285     'params' => 'int status',
6286     'description' => 'Returns the status code of a child\'s exit',
6287   ),
6288   'pcntl_wtermsig' => 
6289   array (
6290     'return' => 'int',
6291     'params' => 'int status',
6292     'description' => 'Returns the number of the signal that terminated the process who\'s status code is passed',
6293   ),
6294   'pcntl_wstopsig' => 
6295   array (
6296     'return' => 'int',
6297     'params' => 'int status',
6298     'description' => 'Returns the number of the signal that caused the process to stop who\'s status code is passed',
6299   ),
6300   'pcntl_exec' => 
6301   array (
6302     'return' => 'bool',
6303     'params' => 'string path [, array args [, array envs]]',
6304     'description' => 'Executes specified program in current process space as defined by exec(2)',
6305   ),
6306   'pcntl_signal' => 
6307   array (
6308     'return' => 'bool',
6309     'params' => 'int signo, callback handle [, bool restart_syscalls]',
6310     'description' => 'Assigns a system signal handler to a PHP function',
6311   ),
6312   'pcntl_getpriority' => 
6313   array (
6314     'return' => 'int',
6315     'params' => '[int pid [, int process_identifier]]',
6316     'description' => 'Get the priority of any process',
6317   ),
6318   'pcntl_setpriority' => 
6319   array (
6320     'return' => 'bool',
6321     'params' => 'int priority [, int pid [, int process_identifier]]',
6322     'description' => 'Change the priority of any process',
6323   ),
6324   'mcrypt_module_open' => 
6325   array (
6326     'return' => 'resource',
6327     'params' => 'string cipher, string cipher_directory, string mode, string mode_directory',
6328     'description' => 'Opens the module of the algorithm and the mode to be used',
6329   ),
6330   'mcrypt_generic_init' => 
6331   array (
6332     'return' => 'int',
6333     'params' => 'resource td, string key, string iv',
6334     'description' => 'This function initializes all buffers for the specific module',
6335   ),
6336   'mcrypt_generic' => 
6337   array (
6338     'return' => 'string',
6339     'params' => 'resource td, string data',
6340     'description' => 'This function encrypts the plaintext',
6341   ),
6342   'mdecrypt_generic' => 
6343   array (
6344     'return' => 'string',
6345     'params' => 'resource td, string data',
6346     'description' => 'This function decrypts the plaintext',
6347   ),
6348   'mcrypt_enc_get_supported_key_sizes' => 
6349   array (
6350     'return' => 'array',
6351     'params' => 'resource td',
6352     'description' => 'This function decrypts the crypttext',
6353   ),
6354   'mcrypt_enc_self_test' => 
6355   array (
6356     'return' => 'int',
6357     'params' => 'resource td',
6358     'description' => 'This function runs the self test on the algorithm specified by the descriptor td',
6359   ),
6360   'mcrypt_module_close' => 
6361   array (
6362     'return' => 'bool',
6363     'params' => 'resource td',
6364     'description' => 'Free the descriptor td',
6365   ),
6366   'mcrypt_generic_end' => 
6367   array (
6368     'return' => 'bool',
6369     'params' => 'resource td',
6370     'description' => 'This function terminates encrypt specified by the descriptor td',
6371   ),
6372   'mcrypt_generic_deinit' => 
6373   array (
6374     'return' => 'bool',
6375     'params' => 'resource td',
6376     'description' => 'This function terminates encrypt specified by the descriptor td',
6377   ),
6378   'mcrypt_enc_is_block_algorithm_mode' => 
6379   array (
6380     'return' => 'bool',
6381     'params' => 'resource td',
6382     'description' => 'Returns TRUE if the mode is for use with block algorithms',
6383   ),
6384   'mcrypt_enc_is_block_algorithm' => 
6385   array (
6386     'return' => 'bool',
6387     'params' => 'resource td',
6388     'description' => 'Returns TRUE if the alrogithm is a block algorithms',
6389   ),
6390   'mcrypt_enc_is_block_mode' => 
6391   array (
6392     'return' => 'bool',
6393     'params' => 'resource td',
6394     'description' => 'Returns TRUE if the mode outputs blocks',
6395   ),
6396   'mcrypt_enc_get_block_size' => 
6397   array (
6398     'return' => 'int',
6399     'params' => 'resource td',
6400     'description' => 'Returns the block size of the cipher specified by the descriptor td',
6401   ),
6402   'mcrypt_enc_get_key_size' => 
6403   array (
6404     'return' => 'int',
6405     'params' => 'resource td',
6406     'description' => 'Returns the maximum supported key size in bytes of the algorithm specified by the descriptor td',
6407   ),
6408   'mcrypt_enc_get_iv_size' => 
6409   array (
6410     'return' => 'int',
6411     'params' => 'resource td',
6412     'description' => 'Returns the size of the IV in bytes of the algorithm specified by the descriptor td',
6413   ),
6414   'mcrypt_enc_get_algorithms_name' => 
6415   array (
6416     'return' => 'string',
6417     'params' => 'resource td',
6418     'description' => 'Returns the name of the algorithm specified by the descriptor td',
6419   ),
6420   'mcrypt_enc_get_modes_name' => 
6421   array (
6422     'return' => 'string',
6423     'params' => 'resource td',
6424     'description' => 'Returns the name of the mode specified by the descriptor td',
6425   ),
6426   'mcrypt_module_self_test' => 
6427   array (
6428     'return' => 'bool',
6429     'params' => 'string algorithm [, string lib_dir]',
6430     'description' => 'Does a self test of the module "module"',
6431   ),
6432   'mcrypt_module_is_block_algorithm_mode' => 
6433   array (
6434     'return' => 'bool',
6435     'params' => 'string mode [, string lib_dir]',
6436     'description' => 'Returns TRUE if the mode is for use with block algorithms',
6437   ),
6438   'mcrypt_module_is_block_algorithm' => 
6439   array (
6440     'return' => 'bool',
6441     'params' => 'string algorithm [, string lib_dir]',
6442     'description' => 'Returns TRUE if the algorithm is a block algorithm',
6443   ),
6444   'mcrypt_module_is_block_mode' => 
6445   array (
6446     'return' => 'bool',
6447     'params' => 'string mode [, string lib_dir]',
6448     'description' => 'Returns TRUE if the mode outputs blocks of bytes',
6449   ),
6450   'mcrypt_module_get_algo_block_size' => 
6451   array (
6452     'return' => 'int',
6453     'params' => 'string algorithm [, string lib_dir]',
6454     'description' => 'Returns the block size of the algorithm',
6455   ),
6456   'mcrypt_module_get_algo_key_size' => 
6457   array (
6458     'return' => 'int',
6459     'params' => 'string algorithm [, string lib_dir]',
6460     'description' => 'Returns the maximum supported key size of the algorithm',
6461   ),
6462   'mcrypt_module_get_supported_key_sizes' => 
6463   array (
6464     'return' => 'array',
6465     'params' => 'string algorithm [, string lib_dir]',
6466     'description' => 'This function decrypts the crypttext',
6467   ),
6468   'mcrypt_list_algorithms' => 
6469   array (
6470     'return' => 'array',
6471     'params' => '[string lib_dir]',
6472     'description' => 'List all algorithms in "module_dir"',
6473   ),
6474   'mcrypt_list_modes' => 
6475   array (
6476     'return' => 'array',
6477     'params' => '[string lib_dir]',
6478     'description' => 'List all modes "module_dir"',
6479   ),
6480   'mcrypt_get_key_size' => 
6481   array (
6482     'return' => 'int',
6483     'params' => 'string cipher, string module',
6484     'description' => 'Get the key size of cipher',
6485   ),
6486   'mcrypt_get_block_size' => 
6487   array (
6488     'return' => 'int',
6489     'params' => 'string cipher, string module',
6490     'description' => 'Get the key size of cipher',
6491   ),
6492   'mcrypt_get_iv_size' => 
6493   array (
6494     'return' => 'int',
6495     'params' => 'string cipher, string module',
6496     'description' => 'Get the IV size of cipher (Usually the same as the blocksize)',
6497   ),
6498   'mcrypt_get_cipher_name' => 
6499   array (
6500     'return' => 'string',
6501     'params' => 'string cipher',
6502     'description' => 'Get the key size of cipher',
6503   ),
6504   'mcrypt_encrypt' => 
6505   array (
6506     'return' => 'string',
6507     'params' => 'string cipher, string key, string data, string mode, string iv',
6508     'description' => 'OFB crypt/decrypt data using key key with cipher cipher starting with iv',
6509   ),
6510   'mcrypt_decrypt' => 
6511   array (
6512     'return' => 'string',
6513     'params' => 'string cipher, string key, string data, string mode, string iv',
6514     'description' => 'OFB crypt/decrypt data using key key with cipher cipher starting with iv',
6515   ),
6516   'mcrypt_ecb' => 
6517   array (
6518     'return' => 'string',
6519     'params' => 'int cipher, string key, string data, int mode, string iv',
6520     'description' => 'ECB crypt/decrypt data using key key with cipher cipher starting with iv',
6521   ),
6522   'mcrypt_cbc' => 
6523   array (
6524     'return' => 'string',
6525     'params' => 'int cipher, string key, string data, int mode, string iv',
6526     'description' => 'CBC crypt/decrypt data using key key with cipher cipher starting with iv',
6527   ),
6528   'mcrypt_cfb' => 
6529   array (
6530     'return' => 'string',
6531     'params' => 'int cipher, string key, string data, int mode, string iv',
6532     'description' => 'CFB crypt/decrypt data using key key with cipher cipher starting with iv',
6533   ),
6534   'mcrypt_ofb' => 
6535   array (
6536     'return' => 'string',
6537     'params' => 'int cipher, string key, string data, int mode, string iv',
6538     'description' => 'OFB crypt/decrypt data using key key with cipher cipher starting with iv',
6539   ),
6540   'mcrypt_create_iv' => 
6541   array (
6542     'return' => 'string',
6543     'params' => 'int size, int source',
6544     'description' => 'Create an initialization vector (IV)',
6545   ),
6546   'readline' => 
6547   array (
6548     'return' => 'string',
6549     'params' => '[string prompt]',
6550     'description' => 'Reads a line',
6551   ),
6552   'readline_info' => 
6553   array (
6554     'return' => 'mixed',
6555     'params' => '[string varname] [, string newvalue]',
6556     'description' => 'Gets/sets various internal readline variables.',
6557   ),
6558   'readline_add_history' => 
6559   array (
6560     'return' => 'bool',
6561     'params' => '[string prompt]',
6562     'description' => 'Adds a line to the history',
6563   ),
6564   'readline_clear_history' => 
6565   array (
6566     'return' => 'bool',
6567     'params' => 'void',
6568     'description' => 'Clears the history',
6569   ),
6570   'readline_list_history' => 
6571   array (
6572     'return' => 'array',
6573     'params' => 'void',
6574     'description' => 'Lists the history',
6575   ),
6576   'readline_read_history' => 
6577   array (
6578     'return' => 'bool',
6579     'params' => '[string filename] [, int from] [,int to]',
6580     'description' => 'Reads the history',
6581   ),
6582   'readline_write_history' => 
6583   array (
6584     'return' => 'bool',
6585     'params' => '[string filename]',
6586     'description' => 'Writes the history',
6587   ),
6588   'readline_completion_function' => 
6589   array (
6590     'return' => 'bool',
6591     'params' => 'string funcname',
6592     'description' => 'Readline completion function?',
6593   ),
6594   'readline_callback_handler_install' => 
6595   array (
6596     'return' => 'void',
6597     'params' => 'string prompt, mixed callback',
6598     'description' => 'Initializes the readline callback interface and terminal, prints the prompt and returns immediately',
6599   ),
6600   'readline_callback_read_char' => 
6601   array (
6602     'return' => 'void',
6603     'params' => '',
6604     'description' => 'Informs the readline callback interface that a character is ready for input',
6605   ),
6606   'readline_callback_handler_remove' => 
6607   array (
6608     'return' => 'bool',
6609     'params' => '',
6610     'description' => 'Removes a previously installed callback handler and restores terminal settings',
6611   ),
6612   'readline_redisplay' => 
6613   array (
6614     'return' => 'void',
6615     'params' => 'void',
6616     'description' => 'Ask readline to redraw the display',
6617   ),
6618   'readline_on_new_line' => 
6619   array (
6620     'return' => 'void',
6621     'params' => 'void',
6622     'description' => 'Inform readline that the cursor has moved to a new line',
6623   ),
6624   'dbase_open' => 
6625   array (
6626     'return' => 'int',
6627     'params' => 'string name, int mode',
6628     'description' => 'Opens a dBase-format database file',
6629   ),
6630   'dbase_close' => 
6631   array (
6632     'return' => 'bool',
6633     'params' => 'int identifier',
6634     'description' => 'Closes an open dBase-format database file',
6635   ),
6636   'dbase_numrecords' => 
6637   array (
6638     'return' => 'int',
6639     'params' => 'int identifier',
6640     'description' => 'Returns the number of records in the database',
6641   ),
6642   'dbase_numfields' => 
6643   array (
6644     'return' => 'int',
6645     'params' => 'int identifier',
6646     'description' => 'Returns the number of fields (columns) in the database',
6647   ),
6648   'dbase_pack' => 
6649   array (
6650     'return' => 'bool',
6651     'params' => 'int identifier',
6652     'description' => 'Packs the database (deletes records marked for deletion)',
6653   ),
6654   'dbase_add_record' => 
6655   array (
6656     'return' => 'bool',
6657     'params' => 'int identifier, array data',
6658     'description' => 'Adds a record to the database',
6659   ),
6660   'dbase_replace_record' => 
6661   array (
6662     'return' => 'bool',
6663     'params' => 'int identifier, array data, int recnum',
6664     'description' => 'Replaces a record to the database',
6665   ),
6666   'dbase_delete_record' => 
6667   array (
6668     'return' => 'bool',
6669     'params' => 'int identifier, int record',
6670     'description' => 'Marks a record to be deleted',
6671   ),
6672   'dbase_get_record' => 
6673   array (
6674     'return' => 'array',
6675     'params' => 'int identifier, int record',
6676     'description' => 'Returns an array representing a record from the database',
6677   ),
6678   'dbase_get_record_with_names' => 
6679   array (
6680     'return' => 'array',
6681     'params' => 'int identifier, int record',
6682     'description' => 'Returns an associative array representing a record from the database',
6683   ),
6684   'dbase_create' => 
6685   array (
6686     'return' => 'bool',
6687     'params' => 'string filename, array fields',
6688     'description' => 'Creates a new dBase-format database file',
6689   ),
6690   'dbase_get_header_info' => 
6691   array (
6692     'return' => 'array',
6693     'params' => 'int database_handle',
6694     'description' => '',
6695   ),
6696   'ibase_add_user' => 
6697   array (
6698     'return' => 'bool',
6699     'params' => 'resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]]',
6700     'description' => 'Add a user to security database',
6701   ),
6702   'ibase_modify_user' => 
6703   array (
6704     'return' => 'bool',
6705     'params' => 'resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]]',
6706     'description' => 'Modify a user in security database',
6707   ),
6708   'ibase_delete_user' => 
6709   array (
6710     'return' => 'bool',
6711     'params' => 'resource service_handle, string user_name, string password [, string first_name [, string middle_name [, string last_name]]]',
6712     'description' => 'Delete a user from security database',
6713   ),
6714   'ibase_service_attach' => 
6715   array (
6716     'return' => 'resource',
6717     'params' => 'string host, string dba_username, string dba_password',
6718     'description' => 'Connect to the service manager',
6719   ),
6720   'ibase_service_detach' => 
6721   array (
6722     'return' => 'bool',
6723     'params' => 'resource service_handle',
6724     'description' => 'Disconnect from the service manager',
6725   ),
6726   'ibase_backup' => 
6727   array (
6728     'return' => 'mixed',
6729     'params' => 'resource service_handle, string source_db, string dest_file [, int options [, bool verbose]]',
6730     'description' => 'Initiates a backup task in the service manager and returns immediately',
6731   ),
6732   'ibase_restore' => 
6733   array (
6734     'return' => 'mixed',
6735     'params' => 'resource service_handle, string source_file, string dest_db [, int options [, bool verbose]]',
6736     'description' => 'Initiates a restore task in the service manager and returns immediately',
6737   ),
6738   'ibase_maintain_db' => 
6739   array (
6740     'return' => 'bool',
6741     'params' => 'resource service_handle, string db, int action [, int argument]',
6742     'description' => 'Execute a maintenance command on the database server',
6743   ),
6744   'ibase_db_info' => 
6745   array (
6746     'return' => 'string',
6747     'params' => 'resource service_handle, string db, int action [, int argument]',
6748     'description' => 'Request statistics about a database',
6749   ),
6750   'ibase_server_info' => 
6751   array (
6752     'return' => 'string',
6753     'params' => 'resource service_handle, int action',
6754     'description' => 'Request information about a database server',
6755   ),
6756   'ibase_errmsg' => 
6757   array (
6758     'return' => 'string',
6759     'params' => 'void',
6760     'description' => 'Return error message',
6761   ),
6762   'ibase_errcode' => 
6763   array (
6764     'return' => 'int',
6765     'params' => 'void',
6766     'description' => 'Return error code',
6767   ),
6768   'ibase_connect' => 
6769   array (
6770     'return' => 'resource',
6771     'params' => 'string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]]',
6772     'description' => 'Open a connection to an InterBase database',
6773   ),
6774   'ibase_pconnect' => 
6775   array (
6776     'return' => 'resource',
6777     'params' => 'string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]]',
6778     'description' => 'Open a persistent connection to an InterBase database',
6779   ),
6780   'ibase_close' => 
6781   array (
6782     'return' => 'bool',
6783     'params' => '[resource link_identifier]',
6784     'description' => 'Close an InterBase connection',
6785   ),
6786   'ibase_drop_db' => 
6787   array (
6788     'return' => 'bool',
6789     'params' => '[resource link_identifier]',
6790     'description' => 'Drop an InterBase database',
6791   ),
6792   'ibase_trans' => 
6793   array (
6794     'return' => 'resource',
6795     'params' => '[int trans_args [, resource link_identifier [, ... ], int trans_args [, resource link_identifier [, ... ]] [, ...]]]',
6796     'description' => 'Start a transaction over one or several databases',
6797   ),
6798   'ibase_commit' => 
6799   array (
6800     'return' => 'bool',
6801     'params' => ' resource link_identifier ',
6802     'description' => 'Commit transaction',
6803   ),
6804   'ibase_rollback' => 
6805   array (
6806     'return' => 'bool',
6807     'params' => ' resource link_identifier ',
6808     'description' => 'Rollback transaction',
6809   ),
6810   'ibase_commit_ret' => 
6811   array (
6812     'return' => 'bool',
6813     'params' => ' resource link_identifier ',
6814     'description' => 'Commit transaction and retain the transaction context',
6815   ),
6816   'ibase_rollback_ret' => 
6817   array (
6818     'return' => 'bool',
6819     'params' => ' resource link_identifier ',
6820     'description' => 'Rollback transaction and retain the transaction context',
6821   ),
6822   'ibase_gen_id' => 
6823   array (
6824     'return' => 'int',
6825     'params' => 'string generator [, int increment [, resource link_identifier ]]',
6826     'description' => 'Increments the named generator and returns its new value',
6827   ),
6828   'ibase_blob_create' => 
6829   array (
6830     'return' => 'resource',
6831     'params' => '[resource link_identifier]',
6832     'description' => 'Create blob for adding data',
6833   ),
6834   'ibase_blob_open' => 
6835   array (
6836     'return' => 'resource',
6837     'params' => '[ resource link_identifier, ] string blob_id',
6838     'description' => 'Open blob for retrieving data parts',
6839   ),
6840   'ibase_blob_add' => 
6841   array (
6842     'return' => 'bool',
6843     'params' => 'resource blob_handle, string data',
6844     'description' => 'Add data into created blob',
6845   ),
6846   'ibase_blob_get' => 
6847   array (
6848     'return' => 'string',
6849     'params' => 'resource blob_handle, int len',
6850     'description' => 'Get len bytes data from open blob',
6851   ),
6852   'ibase_blob_close' => 
6853   array (
6854     'return' => 'string',
6855     'params' => 'resource blob_handle',
6856     'description' => 'Close blob',
6857   ),
6858   'ibase_blob_cancel' => 
6859   array (
6860     'return' => 'bool',
6861     'params' => 'resource blob_handle',
6862     'description' => 'Cancel creating blob',
6863   ),
6864   'ibase_blob_info' => 
6865   array (
6866     'return' => 'array',
6867     'params' => '[ resource link_identifier, ] string blob_id',
6868     'description' => 'Return blob length and other useful info',
6869   ),
6870   'ibase_blob_echo' => 
6871   array (
6872     'return' => 'bool',
6873     'params' => '[ resource link_identifier, ] string blob_id',
6874     'description' => 'Output blob contents to browser',
6875   ),
6876   'ibase_blob_import' => 
6877   array (
6878     'return' => 'string',
6879     'params' => '[ resource link_identifier, ] resource file',
6880     'description' => 'Create blob, copy file in it, and close it',
6881   ),
6882   'ibase_query' => 
6883   array (
6884     'return' => 'mixed',
6885     'params' => '[resource link_identifier, [ resource link_identifier, ]] string query [, mixed bind_arg [, mixed bind_arg [, ...]]]',
6886     'description' => 'Execute a query',
6887   ),
6888   'ibase_affected_rows' => 
6889   array (
6890     'return' => 'int',
6891     'params' => ' [ resource link_identifier ] ',
6892     'description' => 'Returns the number of rows affected by the previous INSERT, UPDATE or DELETE statement',
6893   ),
6894   'ibase_num_rows' => 
6895   array (
6896     'return' => 'int',
6897     'params' => ' resource result_identifier ',
6898     'description' => 'Return the number of rows that are available in a result',
6899   ),
6900   'ibase_fetch_row' => 
6901   array (
6902     'return' => 'array',
6903     'params' => 'resource result [, int fetch_flags]',
6904     'description' => 'Fetch a row  from the results of a query',
6905   ),
6906   'ibase_fetch_assoc' => 
6907   array (
6908     'return' => 'array',
6909     'params' => 'resource result [, int fetch_flags]',
6910     'description' => 'Fetch a row  from the results of a query',
6911   ),
6912   'ibase_fetch_object' => 
6913   array (
6914     'return' => 'object',
6915     'params' => 'resource result [, int fetch_flags]',
6916     'description' => 'Fetch a object from the results of a query',
6917   ),
6918   'ibase_name_result' => 
6919   array (
6920     'return' => 'bool',
6921     'params' => 'resource result, string name',
6922     'description' => 'Assign a name to a result for use with ... WHERE CURRENT OF <name> statements',
6923   ),
6924   'ibase_free_result' => 
6925   array (
6926     'return' => 'bool',
6927     'params' => 'resource result',
6928     'description' => 'Free the memory used by a result',
6929   ),
6930   'ibase_prepare' => 
6931   array (
6932     'return' => 'resource',
6933     'params' => '[resource link_identifier, ] string query',
6934     'description' => 'Prepare a query for later execution',
6935   ),
6936   'ibase_execute' => 
6937   array (
6938     'return' => 'mixed',
6939     'params' => 'resource query [, mixed bind_arg [, mixed bind_arg [, ...]]]',
6940     'description' => 'Execute a previously prepared query',
6941   ),
6942   'ibase_free_query' => 
6943   array (
6944     'return' => 'bool',
6945     'params' => 'resource query',
6946     'description' => 'Free memory used by a query',
6947   ),
6948   'ibase_num_fields' => 
6949   array (
6950     'return' => 'int',
6951     'params' => 'resource query_result',
6952     'description' => 'Get the number of fields in result',
6953   ),
6954   'ibase_field_info' => 
6955   array (
6956     'return' => 'array',
6957     'params' => 'resource query_result, int field_number',
6958     'description' => 'Get information about a field',
6959   ),
6960   'ibase_num_params' => 
6961   array (
6962     'return' => 'int',
6963     'params' => 'resource query',
6964     'description' => 'Get the number of params in a prepared query',
6965   ),
6966   'ibase_param_info' => 
6967   array (
6968     'return' => 'array',
6969     'params' => 'resource query, int field_number',
6970     'description' => 'Get information about a parameter',
6971   ),
6972   'ibase_wait_event' => 
6973   array (
6974     'return' => 'string',
6975     'params' => '[resource link_identifier,] string event [, string event [, ...]]',
6976     'description' => 'Waits for any one of the passed Interbase events to be posted by the database, and returns its name',
6977   ),
6978   'ibase_set_event_handler' => 
6979   array (
6980     'return' => 'resource',
6981     'params' => '[resource link_identifier,] callback handler, string event [, string event [, ...]]',
6982     'description' => 'Register the callback for handling each of the named events',
6983   ),
6984   'ibase_free_event_handler' => 
6985   array (
6986     'return' => 'bool',
6987     'params' => 'resource event',
6988     'description' => 'Frees the event handler set by ibase_set_event_handler()',
6989   ),
6990   'openssl_x509_export_to_file' => 
6991   array (
6992     'return' => 'bool',
6993     'params' => 'mixed x509, string outfilename [, bool notext = true]',
6994     'description' => 'Exports a CERT to file or a var',
6995   ),
6996   'openssl_x509_export' => 
6997   array (
6998     'return' => 'bool',
6999     'params' => 'mixed x509, string &out [, bool notext = true]',
7000     'description' => 'Exports a CERT to file or a var',
7001   ),
7002   'openssl_x509_check_private_key' => 
7003   array (
7004     'return' => 'bool',
7005     'params' => 'mixed cert, mixed key',
7006     'description' => 'Checks if a private key corresponds to a CERT',
7007   ),
7008   'openssl_x509_parse' => 
7009   array (
7010     'return' => 'array',
7011     'params' => 'mixed x509 [, bool shortnames=true]',
7012     'description' => 'Returns an array of the fields/values of the CERT',
7013   ),
7014   'openssl_x509_checkpurpose' => 
7015   array (
7016     'return' => 'int',
7017     'params' => 'mixed x509cert, int purpose, array cainfo [, string untrustedfile]',
7018     'description' => 'Checks the CERT to see if it can be used for the purpose in purpose. cainfo holds information about trusted CAs',
7019   ),
7020   'openssl_x509_read' => 
7021   array (
7022     'return' => 'resource',
7023     'params' => 'mixed cert',
7024     'description' => 'Reads X.509 certificates',
7025   ),
7026   'openssl_x509_free' => 
7027   array (
7028     'return' => 'void',
7029     'params' => 'resource x509',
7030     'description' => 'Frees X.509 certificates',
7031   ),
7032   'openssl_csr_export_to_file' => 
7033   array (
7034     'return' => 'bool',
7035     'params' => 'resource csr, string outfilename [, bool notext=true]',
7036     'description' => 'Exports a CSR to file',
7037   ),
7038   'openssl_csr_export' => 
7039   array (
7040     'return' => 'bool',
7041     'params' => 'resource csr, string &out [, bool notext=true]',
7042     'description' => 'Exports a CSR to file or a var',
7043   ),
7044   'openssl_csr_sign' => 
7045   array (
7046     'return' => 'resource',
7047     'params' => 'mixed csr, mixed x509, mixed priv_key, long days [, array config_args [, long serial]]',
7048     'description' => 'Signs a cert with another CERT',
7049   ),
7050   'openssl_csr_new' => 
7051   array (
7052     'return' => 'bool',
7053     'params' => 'array dn, resource &privkey [, array configargs, array extraattribs]',
7054     'description' => 'Generates a privkey and CSR',
7055   ),
7056   'openssl_pkey_new' => 
7057   array (
7058     'return' => 'resource',
7059     'params' => '[array configargs]',
7060     'description' => 'Generates a new private key',
7061   ),
7062   'openssl_pkey_export_to_file' => 
7063   array (
7064     'return' => 'bool',
7065     'params' => 'mixed key, string outfilename [, string passphrase, array config_args',
7066     'description' => 'Gets an exportable representation of a key into a file',
7067   ),
7068   'openssl_pkey_export' => 
7069   array (
7070     'return' => 'bool',
7071     'params' => 'mixed key, &mixed out [, string passphrase [, array config_args]]',
7072     'description' => 'Gets an exportable representation of a key into a string or file',
7073   ),
7074   'openssl_pkey_get_public' => 
7075   array (
7076     'return' => 'int',
7077     'params' => 'mixed cert',
7078     'description' => 'Gets public key from X.509 certificate',
7079   ),
7080   'openssl_pkey_free' => 
7081   array (
7082     'return' => 'void',
7083     'params' => 'int key',
7084     'description' => 'Frees a key',
7085   ),
7086   'openssl_pkey_get_private' => 
7087   array (
7088     'return' => 'int',
7089     'params' => 'string key [, string passphrase]',
7090     'description' => 'Gets private keys',
7091   ),
7092   'openssl_pkcs7_verify' => 
7093   array (
7094     'return' => 'bool',
7095     'params' => 'string filename, long flags [, string signerscerts [, array cainfo [, string extracerts [, string content]]]]',
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   ),
7098   'openssl_pkcs7_encrypt' => 
7099   array (
7100     'return' => 'bool',
7101     'params' => 'string infile, string outfile, mixed recipcerts, array headers [, long flags [, long cipher]]',
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   ),
7104   'openssl_pkcs7_sign' => 
7105   array (
7106     'return' => 'bool',
7107     'params' => 'string infile, string outfile, mixed signcert, mixed signkey, array headers [, long flags [, string extracertsfilename]]',
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   ),
7110   'openssl_pkcs7_decrypt' => 
7111   array (
7112     'return' => 'bool',
7113     'params' => 'string infilename, string outfilename, mixed recipcert [, mixed recipkey]',
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   ),
7116   'openssl_private_encrypt' => 
7117   array (
7118     'return' => 'bool',
7119     'params' => 'string data, string crypted, mixed key [, int padding]',
7120     'description' => 'Encrypts data with private key',
7121   ),
7122   'openssl_private_decrypt' => 
7123   array (
7124     'return' => 'bool',
7125     'params' => 'string data, string decrypted, mixed key [, int padding]',
7126     'description' => 'Decrypts data with private key',
7127   ),
7128   'openssl_public_encrypt' => 
7129   array (
7130     'return' => 'bool',
7131     'params' => 'string data, string crypted, mixed key [, int padding]',
7132     'description' => 'Encrypts data with public key',
7133   ),
7134   'openssl_public_decrypt' => 
7135   array (
7136     'return' => 'bool',
7137     'params' => 'string data, string crypted, resource key [, int padding]',
7138     'description' => 'Decrypts data with public key',
7139   ),
7140   'openssl_error_string' => 
7141   array (
7142     'return' => 'mixed',
7143     'params' => 'void',
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   ),
7146   'openssl_sign' => 
7147   array (
7148     'return' => 'bool',
7149     'params' => 'string data, &string signature, mixed key',
7150     'description' => 'Signs data',
7151   ),
7152   'openssl_verify' => 
7153   array (
7154     'return' => 'int',
7155     'params' => 'string data, string signature, mixed key',
7156     'description' => 'Verifys data',
7157   ),
7158   'openssl_seal' => 
7159   array (
7160     'return' => 'int',
7161     'params' => 'string data, &string sealdata, &array ekeys, array pubkeys',
7162     'description' => 'Seals data',
7163   ),
7164   'openssl_open' => 
7165   array (
7166     'return' => 'bool',
7167     'params' => 'string data, &string opendata, string ekey, mixed privkey',
7168     'description' => 'Opens data',
7169   ),
7170   'date' => 
7171   array (
7172     'return' => 'string',
7173     'params' => 'string format [, long timestamp]',
7174     'description' => 'Format a local date/time',
7175   ),
7176   'gmdate' => 
7177   array (
7178     'return' => 'string',
7179     'params' => 'string format [, long timestamp]',
7180     'description' => 'Format a GMT date/time',
7181   ),
7182   'idate' => 
7183   array (
7184     'return' => 'int',
7185     'params' => 'string format [, int timestamp]',
7186     'description' => 'Format a local time/date as integer',
7187   ),
7188   'strtotime' => 
7189   array (
7190     'return' => 'int',
7191     'params' => 'string time [, int now ]',
7192     'description' => 'Convert string representation of date and time to a timestamp',
7193   ),
7194   'mktime' => 
7195   array (
7196     'return' => 'int',
7197     'params' => 'int hour, int min, int sec, int mon, int day, int year',
7198     'description' => 'Get UNIX timestamp for a date',
7199   ),
7200   'gmmktime' => 
7201   array (
7202     'return' => 'int',
7203     'params' => 'int hour, int min, int sec, int mon, int day, int year',
7204     'description' => 'Get UNIX timestamp for a GMT date',
7205   ),
7206   'checkdate' => 
7207   array (
7208     'return' => 'bool',
7209     'params' => 'int month, int day, int year',
7210     'description' => 'Returns true(1) if it is a valid date in gregorian calendar',
7211   ),
7212   'strftime' => 
7213   array (
7214     'return' => 'string',
7215     'params' => 'string format [, int timestamp]',
7216     'description' => 'Format a local time/date according to locale settings',
7217   ),
7218   'gmstrftime' => 
7219   array (
7220     'return' => 'string',
7221     'params' => 'string format [, int timestamp]',
7222     'description' => 'Format a GMT/UCT time/date according to locale settings',
7223   ),
7224   'time' => 
7225   array (
7226     'return' => 'int',
7227     'params' => 'void',
7228     'description' => 'Return current UNIX timestamp',
7229   ),
7230   'localtime' => 
7231   array (
7232     'return' => 'array',
7233     'params' => '[int timestamp [, bool associative_array]]',
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   ),
7236   'getdate' => 
7237   array (
7238     'return' => 'array',
7239     'params' => '[int timestamp]',
7240     'description' => 'Get date/time information',
7241   ),
7242   'date_default_timezone_set' => 
7243   array (
7244     'return' => 'bool',
7245     'params' => 'string timezone_identifier',
7246     'description' => 'Sets the default timezone used by all date/time functions in a script',
7247   ),
7248   'date_default_timezone_get' => 
7249   array (
7250     'return' => 'string',
7251     'params' => '',
7252     'description' => 'Gets the default timezone used by all date/time functions in a script',
7253   ),
7254   'date_sunrise' => 
7255   array (
7256     'return' => 'mixed',
7257     'params' => 'mixed time [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]]',
7258     'description' => 'Returns time of sunrise for a given day and location',
7259   ),
7260   'date_sunset' => 
7261   array (
7262     'return' => 'mixed',
7263     'params' => 'mixed time [, int format [, float latitude [, float longitude [, float zenith [, float gmt_offset]]]]]',
7264     'description' => 'Returns time of sunset for a given day and location',
7265   ),
7266   'date_sun_info' => 
7267   array (
7268     'return' => 'array',
7269     'params' => 'long time, float latitude, float longitude',
7270     'description' => 'Returns an array with information about sun set/rise and twilight begin/end',
7271   ),
7272   'wddx_serialize_value' => 
7273   array (
7274     'return' => 'string',
7275     'params' => 'mixed var [, string comment]',
7276     'description' => 'Creates a new packet and serializes the given value',
7277   ),
7278   'wddx_serialize_vars' => 
7279   array (
7280     'return' => 'string',
7281     'params' => 'mixed var_name [, mixed ...]',
7282     'description' => 'Creates a new packet and serializes given variables into a struct',
7283   ),
7284   'wddx_packet_start' => 
7285   array (
7286     'return' => 'int',
7287     'params' => '[string comment]',
7288     'description' => 'Starts a WDDX packet with optional comment and returns the packet id',
7289   ),
7290   'wddx_packet_end' => 
7291   array (
7292     'return' => 'string',
7293     'params' => 'int packet_id',
7294     'description' => 'Ends specified WDDX packet and returns the string containing the packet',
7295   ),
7296   'wddx_add_vars' => 
7297   array (
7298     'return' => 'int',
7299     'params' => 'int packet_id,  mixed var_names [, mixed ...]',
7300     'description' => 'Serializes given variables and adds them to packet given by packet_id',
7301   ),
7302   'wddx_deserialize' => 
7303   array (
7304     'return' => 'mixed',
7305     'params' => 'mixed packet',
7306     'description' => 'Deserializes given packet and returns a PHP value',
7307   ),
7308   'gmp_init' => 
7309   array (
7310     'return' => 'resource',
7311     'params' => 'mixed number [, int base]',
7312     'description' => 'Initializes GMP number',
7313   ),
7314   'gmp_intval' => 
7315   array (
7316     'return' => 'int',
7317     'params' => 'resource gmpnumber',
7318     'description' => 'Gets signed long value of GMP number',
7319   ),
7320   'gmp_strval' => 
7321   array (
7322     'return' => 'string',
7323     'params' => 'resource gmpnumber [, int base]',
7324     'description' => 'Gets string representation of GMP number',
7325   ),
7326   'gmp_add' => 
7327   array (
7328     'return' => 'resource',
7329     'params' => 'resource a, resource b',
7330     'description' => 'Add a and b',
7331   ),
7332   'gmp_sub' => 
7333   array (
7334     'return' => 'resource',
7335     'params' => 'resource a, resource b',
7336     'description' => 'Subtract b from a',
7337   ),
7338   'gmp_mul' => 
7339   array (
7340     'return' => 'resource',
7341     'params' => 'resource a, resource b',
7342     'description' => 'Multiply a and b',
7343   ),
7344   'gmp_div_qr' => 
7345   array (
7346     'return' => 'array',
7347     'params' => 'resource a, resource b [, int round]',
7348     'description' => 'Divide a by b, returns quotient and reminder',
7349   ),
7350   'gmp_div_r' => 
7351   array (
7352     'return' => 'resource',
7353     'params' => 'resource a, resource b [, int round]',
7354     'description' => 'Divide a by b, returns reminder only',
7355   ),
7356   'gmp_div_q' => 
7357   array (
7358     'return' => 'resource',
7359     'params' => 'resource a, resource b [, int round]',
7360     'description' => 'Divide a by b, returns quotient only',
7361   ),
7362   'gmp_mod' => 
7363   array (
7364     'return' => 'resource',
7365     'params' => 'resource a, resource b',
7366     'description' => 'Computes a modulo b',
7367   ),
7368   'gmp_divexact' => 
7369   array (
7370     'return' => 'resource',
7371     'params' => 'resource a, resource b',
7372     'description' => 'Divide a by b using exact division algorithm',
7373   ),
7374   'gmp_neg' => 
7375   array (
7376     'return' => 'resource',
7377     'params' => 'resource a',
7378     'description' => 'Negates a number',
7379   ),
7380   'gmp_abs' => 
7381   array (
7382     'return' => 'resource',
7383     'params' => 'resource a',
7384     'description' => 'Calculates absolute value',
7385   ),
7386   'gmp_fact' => 
7387   array (
7388     'return' => 'resource',
7389     'params' => 'int a',
7390     'description' => 'Calculates factorial function',
7391   ),
7392   'gmp_pow' => 
7393   array (
7394     'return' => 'resource',
7395     'params' => 'resource base, int exp',
7396     'description' => 'Raise base to power exp',
7397   ),
7398   'gmp_powm' => 
7399   array (
7400     'return' => 'resource',
7401     'params' => 'resource base, resource exp, resource mod',
7402     'description' => 'Raise base to power exp and take result modulo mod',
7403   ),
7404   'gmp_sqrt' => 
7405   array (
7406     'return' => 'resource',
7407     'params' => 'resource a',
7408     'description' => 'Takes integer part of square root of a',
7409   ),
7410   'gmp_sqrtrem' => 
7411   array (
7412     'return' => 'array',
7413     'params' => 'resource a',
7414     'description' => 'Square root with remainder',
7415   ),
7416   'gmp_perfect_square' => 
7417   array (
7418     'return' => 'bool',
7419     'params' => 'resource a',
7420     'description' => 'Checks if a is an exact square',
7421   ),
7422   'gmp_prob_prime' => 
7423   array (
7424     'return' => 'int',
7425     'params' => 'resource a[, int reps]',
7426     'description' => 'Checks if a is "probably prime"',
7427   ),
7428   'gmp_gcd' => 
7429   array (
7430     'return' => 'resource',
7431     'params' => 'resource a, resource b',
7432     'description' => 'Computes greatest common denominator (gcd) of a and b',
7433   ),
7434   'gmp_gcdext' => 
7435   array (
7436     'return' => 'array',
7437     'params' => 'resource a, resource b',
7438     'description' => 'Computes G, S, and T, such that AS + BT = G = `gcd\' (A, B)',
7439   ),
7440   'gmp_invert' => 
7441   array (
7442     'return' => 'resource',
7443     'params' => 'resource a, resource b',
7444     'description' => 'Computes the inverse of a modulo b',
7445   ),
7446   'gmp_jacobi' => 
7447   array (
7448     'return' => 'int',
7449     'params' => 'resource a, resource b',
7450     'description' => 'Computes Jacobi symbol',
7451   ),
7452   'gmp_legendre' => 
7453   array (
7454     'return' => 'int',
7455     'params' => 'resource a, resource b',
7456     'description' => 'Computes Legendre symbol',
7457   ),
7458   'gmp_cmp' => 
7459   array (
7460     'return' => 'int',
7461     'params' => 'resource a, resource b',
7462     'description' => 'Compares two numbers',
7463   ),
7464   'gmp_sign' => 
7465   array (
7466     'return' => 'int',
7467     'params' => 'resource a',
7468     'description' => 'Gets the sign of the number',
7469   ),
7470   'gmp_random' => 
7471   array (
7472     'return' => 'resource',
7473     'params' => '[int limiter]',
7474     'description' => 'Gets random number',
7475   ),
7476   'gmp_and' => 
7477   array (
7478     'return' => 'resource',
7479     'params' => 'resource a, resource b',
7480     'description' => 'Calculates logical AND of a and b',
7481   ),
7482   'gmp_or' => 
7483   array (
7484     'return' => 'resource',
7485     'params' => 'resource a, resource b',
7486     'description' => 'Calculates logical OR of a and b',
7487   ),
7488   'gmp_com' => 
7489   array (
7490     'return' => 'resource',
7491     'params' => 'resource a',
7492     'description' => 'Calculates one\'s complement of a',
7493   ),
7494   'gmp_xor' => 
7495   array (
7496     'return' => 'resource',
7497     'params' => 'resource a, resource b',
7498     'description' => 'Calculates logical exclusive OR of a and b',
7499   ),
7500   'gmp_setbit' => 
7501   array (
7502     'return' => 'void',
7503     'params' => 'resource &a, int index[, bool set_clear]',
7504     'description' => 'Sets or clear bit in a',
7505   ),
7506   'gmp_clrbit' => 
7507   array (
7508     'return' => 'void',
7509     'params' => 'resource &a, int index',
7510     'description' => 'Clears bit in a',
7511   ),
7512   'gmp_popcount' => 
7513   array (
7514     'return' => 'int',
7515     'params' => 'resource a',
7516     'description' => 'Calculates the population count of a',
7517   ),
7518   'gmp_hamdist' => 
7519   array (
7520     'return' => 'int',
7521     'params' => 'resource a, resource b',
7522     'description' => 'Calculates hamming distance between a and b',
7523   ),
7524   'gmp_scan0' => 
7525   array (
7526     'return' => 'int',
7527     'params' => 'resource a, int start',
7528     'description' => 'Finds first zero bit',
7529   ),
7530   'gmp_scan1' => 
7531   array (
7532     'return' => 'int',
7533     'params' => 'resource a, int start',
7534     'description' => 'Finds first non-zero bit',
7535   ),
7536   'gd_info' => 
7537   array (
7538     'return' => 'array',
7539     'params' => '',
7540     'description' => '',
7541   ),
7542   'imageloadfont' => 
7543   array (
7544     'return' => 'int',
7545     'params' => 'string filename',
7546     'description' => 'Load a new font',
7547   ),
7548   'imagesetstyle' => 
7549   array (
7550     'return' => 'bool',
7551     'params' => 'resource im, array styles',
7552     'description' => 'Set the line drawing styles for use with imageline and IMG_COLOR_STYLED.',
7553   ),
7554   'imagecreatetruecolor' => 
7555   array (
7556     'return' => 'resource',
7557     'params' => 'int x_size, int y_size',
7558     'description' => 'Create a new true color image',
7559   ),
7560   'imageistruecolor' => 
7561   array (
7562     'return' => 'bool',
7563     'params' => 'resource im',
7564     'description' => 'return true if the image uses truecolor',
7565   ),
7566   'imagetruecolortopalette' => 
7567   array (
7568     'return' => 'void',
7569     'params' => 'resource im, bool ditherFlag, int colorsWanted',
7570     'description' => 'Convert a true colour image to a palette based image with a number of colours, optionally using dithering.',
7571   ),
7572   'imagecolormatch' => 
7573   array (
7574     'return' => 'bool',
7575     'params' => 'resource im1, resource im2',
7576     'description' => 'Makes the colors of the palette version of an image more closely match the true color version',
7577   ),
7578   'imagesetthickness' => 
7579   array (
7580     'return' => 'bool',
7581     'params' => 'resource im, int thickness',
7582     'description' => 'Set line thickness for drawing lines, ellipses, rectangles, polygons etc.',
7583   ),
7584   'imagefilledellipse' => 
7585   array (
7586     'return' => 'bool',
7587     'params' => 'resource im, int cx, int cy, int w, int h, int color',
7588     'description' => 'Draw an ellipse',
7589   ),
7590   'imagefilledarc' => 
7591   array (
7592     'return' => 'bool',
7593     'params' => 'resource im, int cx, int cy, int w, int h, int s, int e, int col, int style',
7594     'description' => 'Draw a filled partial ellipse',
7595   ),
7596   'imagealphablending' => 
7597   array (
7598     'return' => 'bool',
7599     'params' => 'resource im, bool on',
7600     'description' => 'Turn alpha blending mode on or off for the given image',
7601   ),
7602   'imagesavealpha' => 
7603   array (
7604     'return' => 'bool',
7605     'params' => 'resource im, bool on',
7606     'description' => 'Include alpha channel to a saved image',
7607   ),
7608   'imagelayereffect' => 
7609   array (
7610     'return' => 'bool',
7611     'params' => 'resource im, int effect',
7612     'description' => 'Set the alpha blending flag to use the bundled libgd layering effects',
7613   ),
7614   'imagecolorallocatealpha' => 
7615   array (
7616     'return' => 'int',
7617     'params' => 'resource im, int red, int green, int blue, int alpha',
7618     'description' => 'Allocate a color with an alpha level.  Works for true color and palette based images',
7619   ),
7620   'imagecolorresolvealpha' => 
7621   array (
7622     'return' => 'int',
7623     'params' => 'resource im, int red, int green, int blue, int alpha',
7624     'description' => 'Resolve/Allocate a colour with an alpha level.  Works for true colour and palette based images',
7625   ),
7626   'imagecolorclosestalpha' => 
7627   array (
7628     'return' => 'int',
7629     'params' => 'resource im, int red, int green, int blue, int alpha',
7630     'description' => 'Find the closest matching colour with alpha transparency',
7631   ),
7632   'imagecolorexactalpha' => 
7633   array (
7634     'return' => 'int',
7635     'params' => 'resource im, int red, int green, int blue, int alpha',
7636     'description' => 'Find exact match for colour with transparency',
7637   ),
7638   'imagecopyresampled' => 
7639   array (
7640     'return' => 'bool',
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     'description' => 'Copy and resize part of an image using resampling to help ensure clarity',
7643   ),
7644   'imagerotate' => 
7645   array (
7646     'return' => 'resource',
7647     'params' => 'resource src_im, float angle, int bgdcolor',
7648     'description' => 'Rotate an image using a custom angle',
7649   ),
7650   'imagesettile' => 
7651   array (
7652     'return' => 'bool',
7653     'params' => 'resource image, resource tile',
7654     'description' => 'Set the tile image to $tile when filling $image with the "IMG_COLOR_TILED" color',
7655   ),
7656   'imagesetbrush' => 
7657   array (
7658     'return' => 'bool',
7659     'params' => 'resource image, resource brush',
7660     'description' => 'Set the brush image to $brush when filling $image with the "IMG_COLOR_BRUSHED" color',
7661   ),
7662   'imagecreate' => 
7663   array (
7664     'return' => 'resource',
7665     'params' => 'int x_size, int y_size',
7666     'description' => 'Create a new image',
7667   ),
7668   'imagetypes' => 
7669   array (
7670     'return' => 'int',
7671     'params' => 'void',
7672     'description' => 'Return the types of images supported in a bitfield - 1=GIF, 2=JPEG, 4=PNG, 8=WBMP, 16=XPM',
7673   ),
7674   'imagecreatefromstring' => 
7675   array (
7676     'return' => 'resource',
7677     'params' => 'string image',
7678     'description' => 'Create a new image from the image stream in the string',
7679   ),
7680   'imagecreatefromgif' => 
7681   array (
7682     'return' => 'resource',
7683     'params' => 'string filename',
7684     'description' => 'Create a new image from GIF file or URL',
7685   ),
7686   'imagecreatefromjpeg' => 
7687   array (
7688     'return' => 'resource',
7689     'params' => 'string filename',
7690     'description' => 'Create a new image from JPEG file or URL',
7691   ),
7692   'imagecreatefrompng' => 
7693   array (
7694     'return' => 'resource',
7695     'params' => 'string filename',
7696     'description' => 'Create a new image from PNG file or URL',
7697   ),
7698   'imagecreatefromxbm' => 
7699   array (
7700     'return' => 'resource',
7701     'params' => 'string filename',
7702     'description' => 'Create a new image from XBM file or URL',
7703   ),
7704   'imagecreatefromxpm' => 
7705   array (
7706     'return' => 'resource',
7707     'params' => 'string filename',
7708     'description' => 'Create a new image from XPM file or URL',
7709   ),
7710   'imagecreatefromwbmp' => 
7711   array (
7712     'return' => 'resource',
7713     'params' => 'string filename',
7714     'description' => 'Create a new image from WBMP file or URL',
7715   ),
7716   'imagecreatefromgd' => 
7717   array (
7718     'return' => 'resource',
7719     'params' => 'string filename',
7720     'description' => 'Create a new image from GD file or URL',
7721   ),
7722   'imagecreatefromgd2' => 
7723   array (
7724     'return' => 'resource',
7725     'params' => 'string filename',
7726     'description' => 'Create a new image from GD2 file or URL',
7727   ),
7728   'imagecreatefromgd2part' => 
7729   array (
7730     'return' => 'resource',
7731     'params' => 'string filename, int srcX, int srcY, int width, int height',
7732     'description' => 'Create a new image from a given part of GD2 file or URL',
7733   ),
7734   'imagexbm' => 
7735   array (
7736     'return' => 'int',
7737     'params' => 'int im, string filename [, int foreground]',
7738     'description' => 'Output XBM image to browser or file',
7739   ),
7740   'imagegif' => 
7741   array (
7742     'return' => 'bool',
7743     'params' => 'resource im [, string filename]',
7744     'description' => 'Output GIF image to browser or file',
7745   ),
7746   'imagepng' => 
7747   array (
7748     'return' => 'bool',
7749     'params' => 'resource im [, string filename]',
7750     'description' => 'Output PNG image to browser or file',
7751   ),
7752   'imagejpeg' => 
7753   array (
7754     'return' => 'bool',
7755     'params' => 'resource im [, string filename [, int quality]]',
7756     'description' => 'Output JPEG image to browser or file',
7757   ),
7758   'imagewbmp' => 
7759   array (
7760     'return' => 'bool',
7761     'params' => 'resource im [, string filename, [, int foreground]]',
7762     'description' => 'Output WBMP image to browser or file',
7763   ),
7764   'imagegd' => 
7765   array (
7766     'return' => 'bool',
7767     'params' => 'resource im [, string filename]',
7768     'description' => 'Output GD image to browser or file',
7769   ),
7770   'imagegd2' => 
7771   array (
7772     'return' => 'bool',
7773     'params' => 'resource im [, string filename, [, int chunk_size, [, int type]]]',
7774     'description' => 'Output GD2 image to browser or file',
7775   ),
7776   'imagedestroy' => 
7777   array (
7778     'return' => 'bool',
7779     'params' => 'resource im',
7780     'description' => 'Destroy an image',
7781   ),
7782   'imagecolorallocate' => 
7783   array (
7784     'return' => 'int',
7785     'params' => 'resource im, int red, int green, int blue',
7786     'description' => 'Allocate a color for an image',
7787   ),
7788   'imagepalettecopy' => 
7789   array (
7790     'return' => 'void',
7791     'params' => 'resource dst, resource src',
7792     'description' => 'Copy the palette from the src image onto the dst image',
7793   ),
7794   'imagecolorat' => 
7795   array (
7796     'return' => 'int',
7797     'params' => 'resource im, int x, int y',
7798     'description' => 'Get the index of the color of a pixel',
7799   ),
7800   'imagecolorclosest' => 
7801   array (
7802     'return' => 'int',
7803     'params' => 'resource im, int red, int green, int blue',
7804     'description' => 'Get the index of the closest color to the specified color',
7805   ),
7806   'imagecolorclosesthwb' => 
7807   array (
7808     'return' => 'int',
7809     'params' => 'resource im, int red, int green, int blue',
7810     'description' => 'Get the index of the color which has the hue, white and blackness nearest to the given color',
7811   ),
7812   'imagecolordeallocate' => 
7813   array (
7814     'return' => 'bool',
7815     'params' => 'resource im, int index',
7816     'description' => 'De-allocate a color for an image',
7817   ),
7818   'imagecolorresolve' => 
7819   array (
7820     'return' => 'int',
7821     'params' => 'resource im, int red, int green, int blue',
7822     'description' => 'Get the index of the specified color or its closest possible alternative',
7823   ),
7824   'imagecolorexact' => 
7825   array (
7826     'return' => 'int',
7827     'params' => 'resource im, int red, int green, int blue',
7828     'description' => 'Get the index of the specified color',
7829   ),
7830   'imagecolorset' => 
7831   array (
7832     'return' => 'void',
7833     'params' => 'resource im, int col, int red, int green, int blue',
7834     'description' => 'Set the color for the specified palette index',
7835   ),
7836   'imagecolorsforindex' => 
7837   array (
7838     'return' => 'array',
7839     'params' => 'resource im, int col',
7840     'description' => 'Get the colors for an index',
7841   ),
7842   'imagegammacorrect' => 
7843   array (
7844     'return' => 'bool',
7845     'params' => 'resource im, float inputgamma, float outputgamma',
7846     'description' => 'Apply a gamma correction to a GD image',
7847   ),
7848   'imagesetpixel' => 
7849   array (
7850     'return' => 'bool',
7851     'params' => 'resource im, int x, int y, int col',
7852     'description' => 'Set a single pixel',
7853   ),
7854   'imageline' => 
7855   array (
7856     'return' => 'bool',
7857     'params' => 'resource im, int x1, int y1, int x2, int y2, int col',
7858     'description' => 'Draw a line',
7859   ),
7860   'imagedashedline' => 
7861   array (
7862     'return' => 'bool',
7863     'params' => 'resource im, int x1, int y1, int x2, int y2, int col',
7864     'description' => 'Draw a dashed line',
7865   ),
7866   'imagerectangle' => 
7867   array (
7868     'return' => 'bool',
7869     'params' => 'resource im, int x1, int y1, int x2, int y2, int col',
7870     'description' => 'Draw a rectangle',
7871   ),
7872   'imagefilledrectangle' => 
7873   array (
7874     'return' => 'bool',
7875     'params' => 'resource im, int x1, int y1, int x2, int y2, int col',
7876     'description' => 'Draw a filled rectangle',
7877   ),
7878   'imagearc' => 
7879   array (
7880     'return' => 'bool',
7881     'params' => 'resource im, int cx, int cy, int w, int h, int s, int e, int col',
7882     'description' => 'Draw a partial ellipse',
7883   ),
7884   'imageellipse' => 
7885   array (
7886     'return' => 'bool',
7887     'params' => 'resource im, int cx, int cy, int w, int h, int color',
7888     'description' => 'Draw an ellipse',
7889   ),
7890   'imagefilltoborder' => 
7891   array (
7892     'return' => 'bool',
7893     'params' => 'resource im, int x, int y, int border, int col',
7894     'description' => 'Flood fill to specific color',
7895   ),
7896   'imagefill' => 
7897   array (
7898     'return' => 'bool',
7899     'params' => 'resource im, int x, int y, int col',
7900     'description' => 'Flood fill',
7901   ),
7902   'imagecolorstotal' => 
7903   array (
7904     'return' => 'int',
7905     'params' => 'resource im',
7906     'description' => 'Find out the number of colors in an image\'s palette',
7907   ),
7908   'imagecolortransparent' => 
7909   array (
7910     'return' => 'int',
7911     'params' => 'resource im [, int col]',
7912     'description' => 'Define a color as transparent',
7913   ),
7914   'imageinterlace' => 
7915   array (
7916     'return' => 'int',
7917     'params' => 'resource im [, int interlace]',
7918     'description' => 'Enable or disable interlace',
7919   ),
7920   'imagepolygon' => 
7921   array (
7922     'return' => 'bool',
7923     'params' => 'resource im, array point, int num_points, int col',
7924     'description' => 'Draw a polygon',
7925   ),
7926   'imagefilledpolygon' => 
7927   array (
7928     'return' => 'bool',
7929     'params' => 'resource im, array point, int num_points, int col',
7930     'description' => 'Draw a filled polygon',
7931   ),
7932   'imagefontwidth' => 
7933   array (
7934     'return' => 'int',
7935     'params' => 'int font',
7936     'description' => 'Get font width',
7937   ),
7938   'imagefontheight' => 
7939   array (
7940     'return' => 'int',
7941     'params' => 'int font',
7942     'description' => 'Get font height',
7943   ),
7944   'imagechar' => 
7945   array (
7946     'return' => 'bool',
7947     'params' => 'resource im, int font, int x, int y, string c, int col',
7948     'description' => 'Draw a character',
7949   ),
7950   'imagecharup' => 
7951   array (
7952     'return' => 'bool',
7953     'params' => 'resource im, int font, int x, int y, string c, int col',
7954     'description' => 'Draw a character rotated 90 degrees counter-clockwise',
7955   ),
7956   'imagestring' => 
7957   array (
7958     'return' => 'bool',
7959     'params' => 'resource im, int font, int x, int y, string str, int col',
7960     'description' => 'Draw a string horizontally',
7961   ),
7962   'imagestringup' => 
7963   array (
7964     'return' => 'bool',
7965     'params' => 'resource im, int font, int x, int y, string str, int col',
7966     'description' => 'Draw a string vertically - rotated 90 degrees counter-clockwise',
7967   ),
7968   'imagecopy' => 
7969   array (
7970     'return' => 'bool',
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     'description' => 'Copy part of an image',
7973   ),
7974   'imagecopymerge' => 
7975   array (
7976     'return' => 'bool',
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     'description' => 'Merge one part of an image with another',
7979   ),
7980   'imagecopymergegray' => 
7981   array (
7982     'return' => 'bool',
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     'description' => 'Merge one part of an image with another',
7985   ),
7986   'imagecopyresized' => 
7987   array (
7988     'return' => 'bool',
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     'description' => 'Copy and resize part of an image',
7991   ),
7992   'imagesx' => 
7993   array (
7994     'return' => 'int',
7995     'params' => 'resource im',
7996     'description' => 'Get image width',
7997   ),
7998   'imagesy' => 
7999   array (
8000     'return' => 'int',
8001     'params' => 'resource im',
8002     'description' => 'Get image height',
8003   ),
8004   'imageftbbox' => 
8005   array (
8006     'return' => 'array',
8007     'params' => 'float size, float angle, string font_file, string text [, array extrainfo]',
8008     'description' => 'Give the bounding box of a text using fonts via freetype2',
8009   ),
8010   'imagefttext' => 
8011   array (
8012     'return' => 'array',
8013     'params' => 'resource im, float size, float angle, int x, int y, int col, string font_file, string text [, array extrainfo]',
8014     'description' => 'Write text to the image using fonts via freetype2',
8015   ),
8016   'imagettfbbox' => 
8017   array (
8018     'return' => 'array',
8019     'params' => 'float size, float angle, string font_file, string text',
8020     'description' => 'Give the bounding box of a text using TrueType fonts',
8021   ),
8022   'imagettftext' => 
8023   array (
8024     'return' => 'array',
8025     'params' => 'resource im, float size, float angle, int x, int y, int col, string font_file, string text',
8026     'description' => 'Write text to the image using a TrueType font',
8027   ),
8028   'imagepsloadfont' => 
8029   array (
8030     'return' => 'resource',
8031     'params' => 'string pathname',
8032     'description' => 'Load a new font from specified file',
8033   ),
8034   'imagepscopyfont' => 
8035   array (
8036     'return' => 'int',
8037     'params' => 'int font_index',
8038     'description' => 'Make a copy of a font for purposes like extending or reenconding',
8039   ),
8040   'imagepsfreefont' => 
8041   array (
8042     'return' => 'bool',
8043     'params' => 'resource font_index',
8044     'description' => 'Free memory used by a font',
8045   ),
8046   'imagepsencodefont' => 
8047   array (
8048     'return' => 'bool',
8049     'params' => 'resource font_index, string filename',
8050     'description' => 'To change a fonts character encoding vector',
8051   ),
8052   'imagepsextendfont' => 
8053   array (
8054     'return' => 'bool',
8055     'params' => 'resource font_index, float extend',
8056     'description' => 'Extend or or condense (if extend < 1) a font',
8057   ),
8058   'imagepsslantfont' => 
8059   array (
8060     'return' => 'bool',
8061     'params' => 'resource font_index, float slant',
8062     'description' => 'Slant a font',
8063   ),
8064   'imagepstext' => 
8065   array (
8066     'return' => 'array',
8067     'params' => 'resource image, string text, resource font, int size, int xcoord, int ycoord [, int space, int tightness, float angle, int antialias]',
8068     'description' => 'Rasterize a string over an image',
8069   ),
8070   'imagepsbbox' => 
8071   array (
8072     'return' => 'array',
8073     'params' => 'string text, resource font, int size [, int space, int tightness, int angle]',
8074     'description' => 'Return the bounding box needed by a string if rasterized',
8075   ),
8076   'image2wbmp' => 
8077   array (
8078     'return' => 'bool',
8079     'params' => 'resource im [, string filename [, int threshold]]',
8080     'description' => 'Output WBMP image to browser or file',
8081   ),
8082   'imagefilter' => 
8083   array (
8084     'return' => 'bool',
8085     'params' => 'resource src_im, int filtertype, [args] ',
8086     'description' => 'Applies Filter an image using a custom angle',
8087   ),
8088   'imageconvolution' => 
8089   array (
8090     'return' => 'resource',
8091     'params' => 'resource src_im, array matrix3x3, double div, double offset',
8092     'description' => 'Apply a 3x3 convolution matrix, using coefficient div and offset',
8093   ),
8094   'imageantialias' => 
8095   array (
8096     'return' => 'bool',
8097     'params' => 'resource im, bool on',
8098     'description' => 'Should antialiased functions used or not',
8099   ),
8100   'recode_string' => 
8101   array (
8102     'return' => 'string',
8103     'params' => 'string request, string str',
8104     'description' => 'Recode string str according to request string',
8105   ),
8106   'recode_file' => 
8107   array (
8108     'return' => 'bool',
8109     'params' => 'string request, resource input, resource output',
8110     'description' => 'Recode file input into file output according to request',
8111   ),
8112   'posix_kill' => 
8113   array (
8114     'return' => 'bool',
8115     'params' => 'int pid, int sig',
8116     'description' => 'Send a signal to a process (POSIX.1, 3.3.2)',
8117   ),
8118   'posix_getpid' => 
8119   array (
8120     'return' => 'int',
8121     'params' => 'void',
8122     'description' => 'Get the current process id (POSIX.1, 4.1.1)',
8123   ),
8124   'posix_getppid' => 
8125   array (
8126     'return' => 'int',
8127     'params' => 'void',
8128     'description' => 'Get the parent process id (POSIX.1, 4.1.1)',
8129   ),
8130   'posix_getuid' => 
8131   array (
8132     'return' => 'int',
8133     'params' => 'void',
8134     'description' => 'Get the current user id (POSIX.1, 4.2.1)',
8135   ),
8136   'posix_getgid' => 
8137   array (
8138     'return' => 'int',
8139     'params' => 'void',
8140     'description' => 'Get the current group id (POSIX.1, 4.2.1)',
8141   ),
8142   'posix_geteuid' => 
8143   array (
8144     'return' => 'int',
8145     'params' => 'void',
8146     'description' => 'Get the current effective user id (POSIX.1, 4.2.1)',
8147   ),
8148   'posix_getegid' => 
8149   array (
8150     'return' => 'int',
8151     'params' => 'void',
8152     'description' => 'Get the current effective group id (POSIX.1, 4.2.1)',
8153   ),
8154   'posix_setuid' => 
8155   array (
8156     'return' => 'bool',
8157     'params' => 'long uid',
8158     'description' => 'Set user id (POSIX.1, 4.2.2)',
8159   ),
8160   'posix_setgid' => 
8161   array (
8162     'return' => 'bool',
8163     'params' => 'int uid',
8164     'description' => 'Set group id (POSIX.1, 4.2.2)',
8165   ),
8166   'posix_seteuid' => 
8167   array (
8168     'return' => 'bool',
8169     'params' => 'long uid',
8170     'description' => 'Set effective user id',
8171   ),
8172   'posix_setegid' => 
8173   array (
8174     'return' => 'bool',
8175     'params' => 'long uid',
8176     'description' => 'Set effective group id',
8177   ),
8178   'posix_getgroups' => 
8179   array (
8180     'return' => 'array',
8181     'params' => 'void',
8182     'description' => 'Get supplementary group id\'s (POSIX.1, 4.2.3)',
8183   ),
8184   'posix_getlogin' => 
8185   array (
8186     'return' => 'string',
8187     'params' => 'void',
8188     'description' => 'Get user name (POSIX.1, 4.2.4)',
8189   ),
8190   'posix_getpgrp' => 
8191   array (
8192     'return' => 'int',
8193     'params' => 'void',
8194     'description' => 'Get current process group id (POSIX.1, 4.3.1)',
8195   ),
8196   'posix_setsid' => 
8197   array (
8198     'return' => 'int',
8199     'params' => 'void',
8200     'description' => 'Create session and set process group id (POSIX.1, 4.3.2)',
8201   ),
8202   'posix_setpgid' => 
8203   array (
8204     'return' => 'bool',
8205     'params' => 'int pid, int pgid',
8206     'description' => 'Set process group id for job control (POSIX.1, 4.3.3)',
8207   ),
8208   'posix_getpgid' => 
8209   array (
8210     'return' => 'int',
8211     'params' => 'void',
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   ),
8214   'posix_getsid' => 
8215   array (
8216     'return' => 'int',
8217     'params' => 'void',
8218     'description' => 'Get process group id of session leader (This is not a POSIX function, but a SVR4ism, so be compile conditionally)',
8219   ),
8220   'posix_uname' => 
8221   array (
8222     'return' => 'array',
8223     'params' => 'void',
8224     'description' => 'Get system name (POSIX.1, 4.4.1)',
8225   ),
8226   'posix_times' => 
8227   array (
8228     'return' => 'array',
8229     'params' => 'void',
8230     'description' => 'Get process times (POSIX.1, 4.5.2)',
8231   ),
8232   'posix_ctermid' => 
8233   array (
8234     'return' => 'string',
8235     'params' => 'void',
8236     'description' => 'Generate terminal path name (POSIX.1, 4.7.1)',
8237   ),
8238   'posix_ttyname' => 
8239   array (
8240     'return' => 'string',
8241     'params' => 'int fd',
8242     'description' => 'Determine terminal device name (POSIX.1, 4.7.2)',
8243   ),
8244   'posix_isatty' => 
8245   array (
8246     'return' => 'bool',
8247     'params' => 'int fd',
8248     'description' => 'Determine if filedesc is a tty (POSIX.1, 4.7.1)',
8249   ),
8250   'posix_getcwd' => 
8251   array (
8252     'return' => 'string',
8253     'params' => 'void',
8254     'description' => 'Get working directory pathname (POSIX.1, 5.2.2)',
8255   ),
8256   'posix_mkfifo' => 
8257   array (
8258     'return' => 'bool',
8259     'params' => 'string pathname, int mode',
8260     'description' => 'Make a FIFO special file (POSIX.1, 5.4.2)',
8261   ),
8262   'posix_mknod' => 
8263   array (
8264     'return' => 'bool',
8265     'params' => 'string pathname, int mode [, int major [, int minor]]',
8266     'description' => 'Make a special or ordinary file (POSIX.1)',
8267   ),
8268   'posix_access' => 
8269   array (
8270     'return' => 'bool',
8271     'params' => 'string file [, int mode]',
8272     'description' => 'Determine accessibility of a file (POSIX.1 5.6.3)',
8273   ),
8274   'posix_getgrnam' => 
8275   array (
8276     'return' => 'array',
8277     'params' => 'string groupname',
8278     'description' => 'Group database access (POSIX.1, 9.2.1)',
8279   ),
8280   'posix_getgrgid' => 
8281   array (
8282     'return' => 'array',
8283     'params' => 'long gid',
8284     'description' => 'Group database access (POSIX.1, 9.2.1)',
8285   ),
8286   'posix_getpwnam' => 
8287   array (
8288     'return' => 'array',
8289     'params' => 'string groupname',
8290     'description' => 'User database access (POSIX.1, 9.2.2)',
8291   ),
8292   'posix_getpwuid' => 
8293   array (
8294     'return' => 'array',
8295     'params' => 'long uid',
8296     'description' => 'User database access (POSIX.1, 9.2.2)',
8297   ),
8298   'posix_getrlimit' => 
8299   array (
8300     'return' => 'array',
8301     'params' => 'void',
8302     'description' => 'Get system resource consumption limits (This is not a POSIX function, but a BSDism and a SVR4ism. We compile conditionally)',
8303   ),
8304   'posix_get_last_error' => 
8305   array (
8306     'return' => 'int',
8307     'params' => 'void',
8308     'description' => 'Retrieve the error number set by the last posix function which failed.',
8309   ),
8310   'posix_strerror' => 
8311   array (
8312     'return' => 'string',
8313     'params' => 'int errno',
8314     'description' => 'Retrieve the system error message associated with the given errno.',
8315   ),
8316   'curl_multi_init' => 
8317   array (
8318     'return' => 'resource',
8319     'params' => 'void',
8320     'description' => 'Returns a new cURL multi handle',
8321   ),
8322   'curl_multi_add_handle' => 
8323   array (
8324     'return' => 'int',
8325     'params' => 'resource multi, resource ch',
8326     'description' => 'Add a normal cURL handle to a cURL multi handle',
8327   ),
8328   'curl_multi_remove_handle' => 
8329   array (
8330     'return' => 'int',
8331     'params' => 'resource mh, resource ch',
8332     'description' => 'Remove a multi handle from a set of cURL handles',
8333   ),
8334   'curl_multi_select' => 
8335   array (
8336     'return' => 'int',
8337     'params' => 'resource mh[, double timeout]',
8338     'description' => 'Get all the sockets associated with the cURL extension, which can then be "selected"',
8339   ),
8340   'curl_multi_exec' => 
8341   array (
8342     'return' => 'int',
8343     'params' => 'resource mh, int &still_running',
8344     'description' => 'Run the sub-connections of the current cURL handle',
8345   ),
8346   'curl_multi_getcontent' => 
8347   array (
8348     'return' => 'string',
8349     'params' => 'resource ch',
8350     'description' => 'Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set',
8351   ),
8352   'curl_multi_info_read' => 
8353   array (
8354     'return' => 'array',
8355     'params' => 'resource mh',
8356     'description' => 'Get information about the current transfers',
8357   ),
8358   'curl_multi_close' => 
8359   array (
8360     'return' => 'void',
8361     'params' => 'resource mh',
8362     'description' => 'Close a set of cURL handles',
8363   ),
8364   'curl_version' => 
8365   array (
8366     'return' => 'array',
8367     'params' => '[int version]',
8368     'description' => 'Return cURL version information.',
8369   ),
8370   'curl_init' => 
8371   array (
8372     'return' => 'resource',
8373     'params' => '[string url]',
8374     'description' => 'Initialize a CURL session',
8375   ),
8376   'curl_copy_handle' => 
8377   array (
8378     'return' => 'resource',
8379     'params' => 'resource ch',
8380     'description' => 'Copy a cURL handle along with all of it\'s preferences',
8381   ),
8382   'curl_setopt' => 
8383   array (
8384     'return' => 'bool',
8385     'params' => 'resource ch, int option, mixed value',
8386     'description' => 'Set an option for a CURL transfer',
8387   ),
8388   'curl_setopt_array' => 
8389   array (
8390     'return' => 'bool',
8391     'params' => 'resource ch, array options',
8392     'description' => 'Set an array of option for a CURL transfer',
8393   ),
8394   'curl_exec' => 
8395   array (
8396     'return' => 'bool',
8397     'params' => 'resource ch',
8398     'description' => 'Perform a CURL session',
8399   ),
8400   'curl_getinfo' => 
8401   array (
8402     'return' => 'mixed',
8403     'params' => 'resource ch, int opt',
8404     'description' => 'Get information regarding a specific transfer',
8405   ),
8406   'curl_error' => 
8407   array (
8408     'return' => 'string',
8409     'params' => 'resource ch',
8410     'description' => 'Return a string contain the last error for the current session',
8411   ),
8412   'curl_errno' => 
8413   array (
8414     'return' => 'int',
8415     'params' => 'resource ch',
8416     'description' => 'Return an integer containing the last error number',
8417   ),
8418   'curl_close' => 
8419   array (
8420     'return' => 'void',
8421     'params' => 'resource ch',
8422     'description' => 'Close a CURL session',
8423   ),
8424   'ncurses_addch' => 
8425   array (
8426     'return' => 'int',
8427     'params' => 'int ch',
8428     'description' => 'Adds character at current position and advance cursor',
8429   ),
8430   'ncurses_waddch' => 
8431   array (
8432     'return' => 'int',
8433     'params' => 'resource window, int ch',
8434     'description' => 'Adds character at current position in a window and advance cursor',
8435   ),
8436   'ncurses_color_set' => 
8437   array (
8438     'return' => 'int',
8439     'params' => 'int pair',
8440     'description' => 'Sets fore- and background color',
8441   ),
8442   'ncurses_delwin' => 
8443   array (
8444     'return' => 'bool',
8445     'params' => 'resource window',
8446     'description' => 'Deletes a ncurses window',
8447   ),
8448   'ncurses_end' => 
8449   array (
8450     'return' => 'int',
8451     'params' => 'void',
8452     'description' => 'Stops using ncurses, clean up the screen',
8453   ),
8454   'ncurses_getch' => 
8455   array (
8456     'return' => 'int',
8457     'params' => 'void',
8458     'description' => 'Reads a character from keyboard',
8459   ),
8460   'ncurses_has_colors' => 
8461   array (
8462     'return' => 'bool',
8463     'params' => 'void',
8464     'description' => 'Checks if terminal has colors',
8465   ),
8466   'ncurses_init' => 
8467   array (
8468     'return' => 'int',
8469     'params' => 'void',
8470     'description' => 'Initializes ncurses',
8471   ),
8472   'ncurses_init_pair' => 
8473   array (
8474     'return' => 'int',
8475     'params' => 'int pair, int fg, int bg',
8476     'description' => 'Allocates a color pair',
8477   ),
8478   'ncurses_move' => 
8479   array (
8480     'return' => 'int',
8481     'params' => 'int y, int x',
8482     'description' => 'Moves output position',
8483   ),
8484   'ncurses_newpad' => 
8485   array (
8486     'return' => 'resource',
8487     'params' => 'int rows, int cols',
8488     'description' => 'Creates a new pad (window)',
8489   ),
8490   'ncurses_prefresh' => 
8491   array (
8492     'return' => 'int',
8493     'params' => 'resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol',
8494     'description' => 'Copys a region from a pad into the virtual screen',
8495   ),
8496   'ncurses_pnoutrefresh' => 
8497   array (
8498     'return' => 'int',
8499     'params' => 'resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol',
8500     'description' => 'Copys a region from a pad into the virtual screen',
8501   ),
8502   'ncurses_newwin' => 
8503   array (
8504     'return' => 'int',
8505     'params' => 'int rows, int cols, int y, int x',
8506     'description' => 'Creates a new window',
8507   ),
8508   'ncurses_refresh' => 
8509   array (
8510     'return' => 'int',
8511     'params' => 'int ch',
8512     'description' => 'Refresh screen',
8513   ),
8514   'ncurses_start_color' => 
8515   array (
8516     'return' => 'int',
8517     'params' => 'void',
8518     'description' => 'Starts using colors',
8519   ),
8520   'ncurses_standout' => 
8521   array (
8522     'return' => 'int',
8523     'params' => 'void',
8524     'description' => 'Starts using \'standout\' attribute',
8525   ),
8526   'ncurses_standend' => 
8527   array (
8528     'return' => 'int',
8529     'params' => 'void',
8530     'description' => 'Stops using \'standout\' attribute',
8531   ),
8532   'ncurses_baudrate' => 
8533   array (
8534     'return' => 'int',
8535     'params' => 'void',
8536     'description' => 'Returns baudrate of terminal',
8537   ),
8538   'ncurses_beep' => 
8539   array (
8540     'return' => 'int',
8541     'params' => 'void',
8542     'description' => 'Let the terminal beep',
8543   ),
8544   'ncurses_can_change_color' => 
8545   array (
8546     'return' => 'bool',
8547     'params' => 'void',
8548     'description' => 'Checks if we can change terminals colors',
8549   ),
8550   'ncurses_cbreak' => 
8551   array (
8552     'return' => 'bool',
8553     'params' => 'void',
8554     'description' => 'Switches of input buffering',
8555   ),
8556   'ncurses_clear' => 
8557   array (
8558     'return' => 'bool',
8559     'params' => 'void',
8560     'description' => 'Clears screen',
8561   ),
8562   'ncurses_clrtobot' => 
8563   array (
8564     'return' => 'bool',
8565     'params' => 'void',
8566     'description' => 'Clears screen from current position to bottom',
8567   ),
8568   'ncurses_clrtoeol' => 
8569   array (
8570     'return' => 'bool',
8571     'params' => 'void',
8572     'description' => 'Clears screen from current position to end of line',
8573   ),
8574   'ncurses_reset_prog_mode' => 
8575   array (
8576     'return' => 'int',
8577     'params' => 'void',
8578     'description' => 'Resets the prog mode saved by def_prog_mode',
8579   ),
8580   'ncurses_reset_shell_mode' => 
8581   array (
8582     'return' => 'int',
8583     'params' => 'void',
8584     'description' => 'Resets the shell mode saved by def_shell_mode',
8585   ),
8586   'ncurses_def_prog_mode' => 
8587   array (
8588     'return' => 'int',
8589     'params' => 'void',
8590     'description' => 'Saves terminals (program) mode',
8591   ),
8592   'ncurses_def_shell_mode' => 
8593   array (
8594     'return' => 'int',
8595     'params' => 'void',
8596     'description' => 'Saves terminal (shell) mode',
8597   ),
8598   'ncurses_delch' => 
8599   array (
8600     'return' => 'int',
8601     'params' => 'void',
8602     'description' => 'Deletes character at current position, move rest of line left',
8603   ),
8604   'ncurses_deleteln' => 
8605   array (
8606     'return' => 'int',
8607     'params' => 'void',
8608     'description' => 'Deletes line at current position, move rest of screen up',
8609   ),
8610   'ncurses_doupdate' => 
8611   array (
8612     'return' => 'int',
8613     'params' => 'void',
8614     'description' => 'Writes all prepared refreshes to terminal',
8615   ),
8616   'ncurses_echo' => 
8617   array (
8618     'return' => 'int',
8619     'params' => 'void',
8620     'description' => 'Activates keyboard input echo',
8621   ),
8622   'ncurses_erase' => 
8623   array (
8624     'return' => 'int',
8625     'params' => 'void',
8626     'description' => 'Erases terminal screen',
8627   ),
8628   'ncurses_erasechar' => 
8629   array (
8630     'return' => 'string',
8631     'params' => 'void',
8632     'description' => 'Returns current erase character',
8633   ),
8634   'ncurses_flash' => 
8635   array (
8636     'return' => 'int',
8637     'params' => 'void',
8638     'description' => 'Flashes terminal screen (visual bell)',
8639   ),
8640   'ncurses_flushinp' => 
8641   array (
8642     'return' => 'int',
8643     'params' => 'void',
8644     'description' => 'Flushes keyboard input buffer',
8645   ),
8646   'ncurses_has_ic' => 
8647   array (
8648     'return' => 'int',
8649     'params' => 'void',
8650     'description' => 'Checks for insert- and delete-capabilities',
8651   ),
8652   'ncurses_has_il' => 
8653   array (
8654     'return' => 'int',
8655     'params' => 'void',
8656     'description' => 'Checks for line insert- and delete-capabilities',
8657   ),
8658   'ncurses_inch' => 
8659   array (
8660     'return' => 'string',
8661     'params' => 'void',
8662     'description' => 'Gets character and attribute at current position',
8663   ),
8664   'ncurses_insertln' => 
8665   array (
8666     'return' => 'int',
8667     'params' => 'void',
8668     'description' => 'Inserts a line, move rest of screen down',
8669   ),
8670   'ncurses_isendwin' => 
8671   array (
8672     'return' => 'int',
8673     'params' => 'void',
8674     'description' => 'Ncurses is in endwin mode, normal screen output may be performed',
8675   ),
8676   'ncurses_killchar' => 
8677   array (
8678     'return' => 'string',
8679     'params' => 'void',
8680     'description' => 'Returns current line kill character',
8681   ),
8682   'ncurses_nl' => 
8683   array (
8684     'return' => 'int',
8685     'params' => 'void',
8686     'description' => 'Translates newline and carriage return / line feed',
8687   ),
8688   'ncurses_nocbreak' => 
8689   array (
8690     'return' => 'int',
8691     'params' => 'void',
8692     'description' => 'Switches terminal to cooked mode',
8693   ),
8694   'ncurses_noecho' => 
8695   array (
8696     'return' => 'int',
8697     'params' => 'void',
8698     'description' => 'Switches off keyboard input echo',
8699   ),
8700   'ncurses_nonl' => 
8701   array (
8702     'return' => 'int',
8703     'params' => 'void',
8704     'description' => 'Do not ranslate newline and carriage return / line feed',
8705   ),
8706   'ncurses_noraw' => 
8707   array (
8708     'return' => 'bool',
8709     'params' => 'void',
8710     'description' => 'Switches terminal out of raw mode',
8711   ),
8712   'ncurses_raw' => 
8713   array (
8714     'return' => 'int',
8715     'params' => 'void',
8716     'description' => 'Switches terminal into raw mode',
8717   ),
8718   'ncurses_meta' => 
8719   array (
8720     'return' => 'int',
8721     'params' => 'resource window, bool 8bit',
8722     'description' => 'Enables/Disable 8-bit meta key information',
8723   ),
8724   'ncurses_werase' => 
8725   array (
8726     'return' => 'int',
8727     'params' => 'resource window',
8728     'description' => 'Erase window contents',
8729   ),
8730   'ncurses_resetty' => 
8731   array (
8732     'return' => 'int',
8733     'params' => 'void',
8734     'description' => 'Restores saved terminal state',
8735   ),
8736   'ncurses_savetty' => 
8737   array (
8738     'return' => 'int',
8739     'params' => 'void',
8740     'description' => 'Saves terminal state',
8741   ),
8742   'ncurses_termattrs' => 
8743   array (
8744     'return' => 'int',
8745     'params' => 'void',
8746     'description' => 'Returns a logical OR of all attribute flags supported by terminal',
8747   ),
8748   'ncurses_use_default_colors' => 
8749   array (
8750     'return' => 'int',
8751     'params' => 'void',
8752     'description' => 'Assigns terminal default colors to color id -1',
8753   ),
8754   'ncurses_slk_attr' => 
8755   array (
8756     'return' => 'int',
8757     'params' => 'void',
8758     'description' => 'Returns current soft label keys attribute',
8759   ),
8760   'ncurses_slk_clear' => 
8761   array (
8762     'return' => 'int',
8763     'params' => 'void',
8764     'description' => 'Clears soft label keys from screen',
8765   ),
8766   'ncurses_slk_noutrefresh' => 
8767   array (
8768     'return' => 'int',
8769     'params' => 'void',
8770     'description' => 'Copies soft label keys to virtual screen',
8771   ),
8772   'ncurses_slk_refresh' => 
8773   array (
8774     'return' => 'int',
8775     'params' => 'void',
8776     'description' => 'Copies soft label keys to screen',
8777   ),
8778   'ncurses_slk_restore' => 
8779   array (
8780     'return' => 'int',
8781     'params' => 'void',
8782     'description' => 'Restores soft label keys',
8783   ),
8784   'ncurses_slk_touch' => 
8785   array (
8786     'return' => 'int',
8787     'params' => 'void',
8788     'description' => 'Forces output when ncurses_slk_noutrefresh is performed',
8789   ),
8790   'ncurses_slk_set' => 
8791   array (
8792     'return' => 'bool',
8793     'params' => 'int labelnr, string label, int format',
8794     'description' => 'Sets function key labels',
8795   ),
8796   'ncurses_attroff' => 
8797   array (
8798     'return' => 'int',
8799     'params' => 'int attributes',
8800     'description' => 'Turns off the given attributes',
8801   ),
8802   'ncurses_attron' => 
8803   array (
8804     'return' => 'int',
8805     'params' => 'int attributes',
8806     'description' => 'Turns on the given attributes',
8807   ),
8808   'ncurses_attrset' => 
8809   array (
8810     'return' => 'int',
8811     'params' => 'int attributes',
8812     'description' => 'Sets given attributes',
8813   ),
8814   'ncurses_bkgd' => 
8815   array (
8816     'return' => 'int',
8817     'params' => 'int attrchar',
8818     'description' => 'Sets background property for terminal screen',
8819   ),
8820   'ncurses_curs_set' => 
8821   array (
8822     'return' => 'int',
8823     'params' => 'int visibility',
8824     'description' => 'Sets cursor state',
8825   ),
8826   'ncurses_delay_output' => 
8827   array (
8828     'return' => 'int',
8829     'params' => 'int milliseconds',
8830     'description' => 'Delays output on terminal using padding characters',
8831   ),
8832   'ncurses_echochar' => 
8833   array (
8834     'return' => 'int',
8835     'params' => 'int character',
8836     'description' => 'Single character output including refresh',
8837   ),
8838   'ncurses_halfdelay' => 
8839   array (
8840     'return' => 'int',
8841     'params' => 'int tenth',
8842     'description' => 'Puts terminal into halfdelay mode',
8843   ),
8844   'ncurses_has_key' => 
8845   array (
8846     'return' => 'int',
8847     'params' => 'int keycode',
8848     'description' => 'Checks for presence of a function key on terminal keyboard',
8849   ),
8850   'ncurses_insch' => 
8851   array (
8852     'return' => 'int',
8853     'params' => 'int character',
8854     'description' => 'Inserts character moving rest of line including character at current position',
8855   ),
8856   'ncurses_insdelln' => 
8857   array (
8858     'return' => 'int',
8859     'params' => 'int count',
8860     'description' => 'Inserts lines before current line scrolling down (negative numbers delete and scroll up)',
8861   ),
8862   'ncurses_mouseinterval' => 
8863   array (
8864     'return' => 'int',
8865     'params' => 'int milliseconds',
8866     'description' => 'Sets timeout for mouse button clicks',
8867   ),
8868   'ncurses_napms' => 
8869   array (
8870     'return' => 'int',
8871     'params' => 'int milliseconds',
8872     'description' => 'Sleep',
8873   ),
8874   'ncurses_scrl' => 
8875   array (
8876     'return' => 'int',
8877     'params' => 'int count',
8878     'description' => 'Scrolls window content up or down without changing current position',
8879   ),
8880   'ncurses_slk_attroff' => 
8881   array (
8882     'return' => 'int',
8883     'params' => 'int intarg',
8884     'description' => '???',
8885   ),
8886   'ncurses_slk_attron' => 
8887   array (
8888     'return' => 'int',
8889     'params' => 'int intarg',
8890     'description' => '???',
8891   ),
8892   'ncurses_slk_attrset' => 
8893   array (
8894     'return' => 'int',
8895     'params' => 'int intarg',
8896     'description' => '???',
8897   ),
8898   'ncurses_slk_color' => 
8899   array (
8900     'return' => 'int',
8901     'params' => 'int intarg',
8902     'description' => 'Sets color for soft label keys',
8903   ),
8904   'ncurses_slk_init' => 
8905   array (
8906     'return' => 'int',
8907     'params' => 'int intarg',
8908     'description' => 'Inits soft label keys',
8909   ),
8910   'ncurses_typeahead' => 
8911   array (
8912     'return' => 'int',
8913     'params' => 'int fd',
8914     'description' => 'Specifys different filedescriptor for typeahead checking',
8915   ),
8916   'ncurses_ungetch' => 
8917   array (
8918     'return' => 'int',
8919     'params' => 'int keycode',
8920     'description' => 'Puts a character back into the input stream',
8921   ),
8922   'ncurses_vidattr' => 
8923   array (
8924     'return' => 'int',
8925     'params' => 'int intarg',
8926     'description' => '???',
8927   ),
8928   'ncurses_use_extended_names' => 
8929   array (
8930     'return' => 'int',
8931     'params' => 'bool flag',
8932     'description' => 'Controls use of extended names in terminfo descriptions',
8933   ),
8934   'ncurses_bkgdset' => 
8935   array (
8936     'return' => 'void',
8937     'params' => 'int attrchar',
8938     'description' => 'Controls screen background',
8939   ),
8940   'ncurses_filter' => 
8941   array (
8942     'return' => 'void',
8943     'params' => 'void',
8944     'description' => '',
8945   ),
8946   'ncurses_noqiflush' => 
8947   array (
8948     'return' => 'int',
8949     'params' => 'void',
8950     'description' => 'Do not flush on signal characters',
8951   ),
8952   'ncurses_qiflush' => 
8953   array (
8954     'return' => 'void',
8955     'params' => 'void',
8956     'description' => 'Flushes on signal characters',
8957   ),
8958   'ncurses_timeout' => 
8959   array (
8960     'return' => 'void',
8961     'params' => 'int millisec',
8962     'description' => 'Sets timeout for special key sequences',
8963   ),
8964   'ncurses_use_env' => 
8965   array (
8966     'return' => 'void',
8967     'params' => 'int flag',
8968     'description' => 'Controls use of environment information about terminal size',
8969   ),
8970   'ncurses_addstr' => 
8971   array (
8972     'return' => 'int',
8973     'params' => 'string text',
8974     'description' => 'Outputs text at current position',
8975   ),
8976   'ncurses_putp' => 
8977   array (
8978     'return' => 'int',
8979     'params' => 'string text',
8980     'description' => '???',
8981   ),
8982   'ncurses_scr_dump' => 
8983   array (
8984     'return' => 'int',
8985     'params' => 'string filename',
8986     'description' => 'Dumps screen content to file',
8987   ),
8988   'ncurses_scr_init' => 
8989   array (
8990     'return' => 'int',
8991     'params' => 'string filename',
8992     'description' => 'Initializes screen from file dump',
8993   ),
8994   'ncurses_scr_restore' => 
8995   array (
8996     'return' => 'int',
8997     'params' => 'string filename',
8998     'description' => 'Restores screen from file dump',
8999   ),
9000   'ncurses_scr_set' => 
9001   array (
9002     'return' => 'int',
9003     'params' => 'string filename',
9004     'description' => 'Inherits screen from file dump',
9005   ),
9006   'ncurses_mvaddch' => 
9007   array (
9008     'return' => 'int',
9009     'params' => 'int y, int x, int c',
9010     'description' => 'Moves current position and add character',
9011   ),
9012   'ncurses_mvaddchnstr' => 
9013   array (
9014     'return' => 'int',
9015     'params' => 'int y, int x, string s, int n',
9016     'description' => 'Moves position and add attrributed string with specified length',
9017   ),
9018   'ncurses_addchnstr' => 
9019   array (
9020     'return' => 'int',
9021     'params' => 'string s, int n',
9022     'description' => 'Adds attributed string with specified length at current position',
9023   ),
9024   'ncurses_mvaddchstr' => 
9025   array (
9026     'return' => 'int',
9027     'params' => 'int y, int x, string s',
9028     'description' => 'Moves position and add attributed string',
9029   ),
9030   'ncurses_addchstr' => 
9031   array (
9032     'return' => 'int',
9033     'params' => 'string s',
9034     'description' => 'Adds attributed string at current position',
9035   ),
9036   'ncurses_mvaddnstr' => 
9037   array (
9038     'return' => 'int',
9039     'params' => 'int y, int x, string s, int n',
9040     'description' => 'Moves position and add string with specified length',
9041   ),
9042   'ncurses_addnstr' => 
9043   array (
9044     'return' => 'int',
9045     'params' => 'string s, int n',
9046     'description' => 'Adds string with specified length at current position',
9047   ),
9048   'ncurses_mvaddstr' => 
9049   array (
9050     'return' => 'int',
9051     'params' => 'int y, int x, string s',
9052     'description' => 'Moves position and add string',
9053   ),
9054   'ncurses_mvdelch' => 
9055   array (
9056     'return' => 'int',
9057     'params' => 'int y, int x',
9058     'description' => 'Moves position and delete character, shift rest of line left',
9059   ),
9060   'ncurses_mvgetch' => 
9061   array (
9062     'return' => 'int',
9063     'params' => 'int y, int x',
9064     'description' => 'Moves position and get character at new position',
9065   ),
9066   'ncurses_mvinch' => 
9067   array (
9068     'return' => 'int',
9069     'params' => 'int y, int x',
9070     'description' => 'Moves position and get attributed character at new position',
9071   ),
9072   'ncurses_insstr' => 
9073   array (
9074     'return' => 'int',
9075     'params' => 'string text',
9076     'description' => 'Inserts string at current position, moving rest of line right',
9077   ),
9078   'ncurses_instr' => 
9079   array (
9080     'return' => 'int',
9081     'params' => 'string &buffer',
9082     'description' => 'Reads string from terminal screen',
9083   ),
9084   'ncurses_mvhline' => 
9085   array (
9086     'return' => 'int',
9087     'params' => 'int y, int x, int attrchar, int n',
9088     'description' => 'Sets new position and draw a horizontal line using an attributed character and max. n characters long',
9089   ),
9090   'ncurses_mvvline' => 
9091   array (
9092     'return' => 'int',
9093     'params' => 'int y, int x, int attrchar, int n',
9094     'description' => 'Sets new position and draw a vertical line using an attributed character and max. n characters long',
9095   ),
9096   'ncurses_mvcur' => 
9097   array (
9098     'return' => 'int',
9099     'params' => 'int old_y,int old_x, int new_y, int new_x',
9100     'description' => 'Moves cursor immediately',
9101   ),
9102   'ncurses_init_color' => 
9103   array (
9104     'return' => 'int',
9105     'params' => 'int color, int r, int g, int b',
9106     'description' => 'Sets new RGB value for color',
9107   ),
9108   'ncurses_color_content' => 
9109   array (
9110     'return' => 'int',
9111     'params' => 'int color, int &r, int &g, int &b',
9112     'description' => 'Gets the RGB value for color',
9113   ),
9114   'ncurses_pair_content' => 
9115   array (
9116     'return' => 'int',
9117     'params' => 'int pair, int &f, int &b',
9118     'description' => 'Gets the RGB value for color',
9119   ),
9120   'ncurses_border' => 
9121   array (
9122     'return' => 'int',
9123     'params' => 'int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner',
9124     'description' => 'Draws a border around the screen using attributed characters',
9125   ),
9126   'ncurses_wborder' => 
9127   array (
9128     'return' => 'int',
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     'description' => 'Draws a border around the window using attributed characters',
9131   ),
9132   'ncurses_assume_default_colors' => 
9133   array (
9134     'return' => 'int',
9135     'params' => 'int fg, int bg',
9136     'description' => 'Defines default colors for color 0',
9137   ),
9138   'ncurses_define_key' => 
9139   array (
9140     'return' => 'int',
9141     'params' => 'string definition, int keycode',
9142     'description' => 'Defines a keycode',
9143   ),
9144   'ncurses_hline' => 
9145   array (
9146     'return' => 'int',
9147     'params' => 'int charattr, int n',
9148     'description' => 'Draws a horizontal line at current position using an attributed character and max. n characters long',
9149   ),
9150   'ncurses_vline' => 
9151   array (
9152     'return' => 'int',
9153     'params' => 'int charattr, int n',
9154     'description' => 'Draws a vertical line at current position using an attributed character and max. n characters long',
9155   ),
9156   'ncurses_whline' => 
9157   array (
9158     'return' => 'int',
9159     'params' => 'resource window, int charattr, int n',
9160     'description' => 'Draws a horizontal line in a window at current position using an attributed character and max. n characters long',
9161   ),
9162   'ncurses_wvline' => 
9163   array (
9164     'return' => 'int',
9165     'params' => 'resource window, int charattr, int n',
9166     'description' => 'Draws a vertical line in a window at current position using an attributed character and max. n characters long',
9167   ),
9168   'ncurses_keyok' => 
9169   array (
9170     'return' => 'int',
9171     'params' => 'int keycode, int enable',
9172     'description' => 'Enables or disable a keycode',
9173   ),
9174   'ncurses_mvwaddstr' => 
9175   array (
9176     'return' => 'int',
9177     'params' => 'resource window, int y, int x, string text',
9178     'description' => 'Adds string at new position in window',
9179   ),
9180   'ncurses_wrefresh' => 
9181   array (
9182     'return' => 'int',
9183     'params' => 'resource window',
9184     'description' => 'Refreshes window on terminal screen',
9185   ),
9186   'ncurses_termname' => 
9187   array (
9188     'return' => 'string',
9189     'params' => 'void',
9190     'description' => 'Returns terminal name',
9191   ),
9192   'ncurses_longname' => 
9193   array (
9194     'return' => 'string',
9195     'params' => 'void',
9196     'description' => 'Returns terminal description',
9197   ),
9198   'ncurses_mousemask' => 
9199   array (
9200     'return' => 'int',
9201     'params' => 'int newmask, int &oldmask',
9202     'description' => 'Returns and sets mouse options',
9203   ),
9204   'ncurses_getmouse' => 
9205   array (
9206     'return' => 'bool',
9207     'params' => 'array &mevent',
9208     'description' => 'Reads mouse event from queue. The content of mevent is cleared before new data is added.',
9209   ),
9210   'ncurses_ungetmouse' => 
9211   array (
9212     'return' => 'int',
9213     'params' => 'array mevent',
9214     'description' => 'Pushes mouse event to queue',
9215   ),
9216   'ncurses_mouse_trafo' => 
9217   array (
9218     'return' => 'bool',
9219     'params' => 'int &y, int &x, bool toscreen',
9220     'description' => 'Transforms coordinates',
9221   ),
9222   'ncurses_wmouse_trafo' => 
9223   array (
9224     'return' => 'bool',
9225     'params' => 'resource window, int &y, int &x, bool toscreen',
9226     'description' => 'Transforms window/stdscr coordinates',
9227   ),
9228   'ncurses_getyx' => 
9229   array (
9230     'return' => 'void',
9231     'params' => 'resource window, int &y, int &x',
9232     'description' => 'Returns the current cursor position for a window',
9233   ),
9234   'ncurses_getmaxyx' => 
9235   array (
9236     'return' => 'void',
9237     'params' => 'resource window, int &y, int &x',
9238     'description' => 'Returns the size of a window',
9239   ),
9240   'ncurses_wmove' => 
9241   array (
9242     'return' => 'int',
9243     'params' => 'resource window, int y, int x',
9244     'description' => 'Moves windows output position',
9245   ),
9246   'ncurses_keypad' => 
9247   array (
9248     'return' => 'int',
9249     'params' => 'resource window, bool bf',
9250     'description' => 'Turns keypad on or off',
9251   ),
9252   'ncurses_wcolor_set' => 
9253   array (
9254     'return' => 'int',
9255     'params' => 'resource window, int color_pair',
9256     'description' => 'Sets windows color pairings',
9257   ),
9258   'ncurses_wclear' => 
9259   array (
9260     'return' => 'int',
9261     'params' => 'resource window',
9262     'description' => 'Clears window',
9263   ),
9264   'ncurses_wnoutrefresh' => 
9265   array (
9266     'return' => 'int',
9267     'params' => 'resource window',
9268     'description' => 'Copies window to virtual screen',
9269   ),
9270   'ncurses_waddstr' => 
9271   array (
9272     'return' => 'int',
9273     'params' => 'resource window, string str [, int n]',
9274     'description' => 'Outputs text at current postion in window',
9275   ),
9276   'ncurses_wgetch' => 
9277   array (
9278     'return' => 'int',
9279     'params' => 'resource window',
9280     'description' => 'Reads a character from keyboard (window)',
9281   ),
9282   'ncurses_wattroff' => 
9283   array (
9284     'return' => 'int',
9285     'params' => 'resource window, int attrs',
9286     'description' => 'Turns off attributes for a window',
9287   ),
9288   'ncurses_wattron' => 
9289   array (
9290     'return' => 'int',
9291     'params' => 'resource window, int attrs',
9292     'description' => 'Turns on attributes for a window',
9293   ),
9294   'ncurses_wattrset' => 
9295   array (
9296     'return' => 'int',
9297     'params' => 'resource window, int attrs',
9298     'description' => 'Set the attributes for a window',
9299   ),
9300   'ncurses_wstandend' => 
9301   array (
9302     'return' => 'int',
9303     'params' => 'resource window',
9304     'description' => 'End standout mode for a window',
9305   ),
9306   'ncurses_wstandout' => 
9307   array (
9308     'return' => 'int',
9309     'params' => 'resource window',
9310     'description' => 'Enter standout mode for a window',
9311   ),
9312   'ncurses_new_panel' => 
9313   array (
9314     'return' => 'resource',
9315     'params' => 'resource window',
9316     'description' => 'Create a new panel and associate it with window',
9317   ),
9318   'ncurses_del_panel' => 
9319   array (
9320     'return' => 'bool',
9321     'params' => 'resource panel',
9322     'description' => 'Remove panel from the stack and delete it (but not the associated window)',
9323   ),
9324   'ncurses_hide_panel' => 
9325   array (
9326     'return' => 'int',
9327     'params' => 'resource panel',
9328     'description' => 'Remove panel from the stack, making it invisible',
9329   ),
9330   'ncurses_show_panel' => 
9331   array (
9332     'return' => 'int',
9333     'params' => 'resource panel',
9334     'description' => 'Places an invisible panel on top of the stack, making it visible',
9335   ),
9336   'ncurses_top_panel' => 
9337   array (
9338     'return' => 'int',
9339     'params' => 'resource panel',
9340     'description' => 'Moves a visible panel to the top of the stack',
9341   ),
9342   'ncurses_bottom_panel' => 
9343   array (
9344     'return' => 'int',
9345     'params' => 'resource panel',
9346     'description' => 'Moves a visible panel to the bottom of the stack',
9347   ),
9348   'ncurses_move_panel' => 
9349   array (
9350     'return' => 'int',
9351     'params' => 'resource panel, int startx, int starty',
9352     'description' => 'Moves a panel so that it\'s upper-left corner is at [startx, starty]',
9353   ),
9354   'ncurses_replace_panel' => 
9355   array (
9356     'return' => 'int',
9357     'params' => 'resource panel, resource window',
9358     'description' => 'Replaces the window associated with panel',
9359   ),
9360   'ncurses_panel_above' => 
9361   array (
9362     'return' => 'resource',
9363     'params' => 'resource panel',
9364     'description' => 'Returns the panel above panel. If panel is null, returns the bottom panel in the stack',
9365   ),
9366   'ncurses_panel_below' => 
9367   array (
9368     'return' => 'resource',
9369     'params' => 'resource panel',
9370     'description' => 'Returns the panel below panel. If panel is null, returns the top panel in the stack',
9371   ),
9372   'ncurses_panel_window' => 
9373   array (
9374     'return' => 'resource',
9375     'params' => 'resource panel',
9376     'description' => 'Returns the window associated with panel',
9377   ),
9378   'ncurses_update_panels' => 
9379   array (
9380     'return' => 'void',
9381     'params' => 'void',
9382     'description' => 'Refreshes the virtual screen to reflect the relations between panels in the stack.',
9383   ),
9384   'ftp_connect' => 
9385   array (
9386     'return' => 'resource',
9387     'params' => 'string host [, int port [, int timeout]]',
9388     'description' => 'Opens a FTP stream',
9389   ),
9390   'ftp_ssl_connect' => 
9391   array (
9392     'return' => 'resource',
9393     'params' => 'string host [, int port [, int timeout]]',
9394     'description' => 'Opens a FTP-SSL stream',
9395   ),
9396   'ftp_login' => 
9397   array (
9398     'return' => 'bool',
9399     'params' => 'resource stream, string username, string password',
9400     'description' => 'Logs into the FTP server',
9401   ),
9402   'ftp_pwd' => 
9403   array (
9404     'return' => 'string',
9405     'params' => 'resource stream',
9406     'description' => 'Returns the present working directory',
9407   ),
9408   'ftp_cdup' => 
9409   array (
9410     'return' => 'bool',
9411     'params' => 'resource stream',
9412     'description' => 'Changes to the parent directory',
9413   ),
9414   'ftp_chdir' => 
9415   array (
9416     'return' => 'bool',
9417     'params' => 'resource stream, string directory',
9418     'description' => 'Changes directories',
9419   ),
9420   'ftp_exec' => 
9421   array (
9422     'return' => 'bool',
9423     'params' => 'resource stream, string command',
9424     'description' => 'Requests execution of a program on the FTP server',
9425   ),
9426   'ftp_raw' => 
9427   array (
9428     'return' => 'array',
9429     'params' => 'resource stream, string command',
9430     'description' => 'Sends a literal command to the FTP server',
9431   ),
9432   'ftp_mkdir' => 
9433   array (
9434     'return' => 'string',
9435     'params' => 'resource stream, string directory',
9436     'description' => 'Creates a directory and returns the absolute path for the new directory or false on error',
9437   ),
9438   'ftp_rmdir' => 
9439   array (
9440     'return' => 'bool',
9441     'params' => 'resource stream, string directory',
9442     'description' => 'Removes a directory',
9443   ),
9444   'ftp_chmod' => 
9445   array (
9446     'return' => 'int',
9447     'params' => 'resource stream, int mode, string filename',
9448     'description' => 'Sets permissions on a file',
9449   ),
9450   'ftp_alloc' => 
9451   array (
9452     'return' => 'bool',
9453     'params' => 'resource stream, int size[, &response]',
9454     'description' => 'Attempt to allocate space on the remote FTP server',
9455   ),
9456   'ftp_nlist' => 
9457   array (
9458     'return' => 'array',
9459     'params' => 'resource stream, string directory',
9460     'description' => 'Returns an array of filenames in the given directory',
9461   ),
9462   'ftp_rawlist' => 
9463   array (
9464     'return' => 'array',
9465     'params' => 'resource stream, string directory [, bool recursive]',
9466     'description' => 'Returns a detailed listing of a directory as an array of output lines',
9467   ),
9468   'ftp_systype' => 
9469   array (
9470     'return' => 'string',
9471     'params' => 'resource stream',
9472     'description' => 'Returns the system type identifier',
9473   ),
9474   'ftp_fget' => 
9475   array (
9476     'return' => 'bool',
9477     'params' => 'resource stream, resource fp, string remote_file, int mode[, int resumepos]',
9478     'description' => 'Retrieves a file from the FTP server and writes it to an open file',
9479   ),
9480   'ftp_nb_fget' => 
9481   array (
9482     'return' => 'int',
9483     'params' => 'resource stream, resource fp, string remote_file, int mode[, int resumepos]',
9484     'description' => 'Retrieves a file from the FTP server asynchronly and writes it to an open file',
9485   ),
9486   'ftp_pasv' => 
9487   array (
9488     'return' => 'bool',
9489     'params' => 'resource stream, bool pasv',
9490     'description' => 'Turns passive mode on or off',
9491   ),
9492   'ftp_get' => 
9493   array (
9494     'return' => 'bool',
9495     'params' => 'resource stream, string local_file, string remote_file, int mode[, int resume_pos]',
9496     'description' => 'Retrieves a file from the FTP server and writes it to a local file',
9497   ),
9498   'ftp_nb_get' => 
9499   array (
9500     'return' => 'int',
9501     'params' => 'resource stream, string local_file, string remote_file, int mode[, int resume_pos]',
9502     'description' => 'Retrieves a file from the FTP server nbhronly and writes it to a local file',
9503   ),
9504   'ftp_nb_continue' => 
9505   array (
9506     'return' => 'int',
9507     'params' => 'resource stream',
9508     'description' => 'Continues retrieving/sending a file nbronously',
9509   ),
9510   'ftp_fput' => 
9511   array (
9512     'return' => 'bool',
9513     'params' => 'resource stream, string remote_file, resource fp, int mode[, int startpos]',
9514     'description' => 'Stores a file from an open file to the FTP server',
9515   ),
9516   'ftp_nb_fput' => 
9517   array (
9518     'return' => 'int',
9519     'params' => 'resource stream, string remote_file, resource fp, int mode[, int startpos]',
9520     'description' => 'Stores a file from an open file to the FTP server nbronly',
9521   ),
9522   'ftp_put' => 
9523   array (
9524     'return' => 'bool',
9525     'params' => 'resource stream, string remote_file, string local_file, int mode[, int startpos]',
9526     'description' => 'Stores a file on the FTP server',
9527   ),
9528   'ftp_nb_put' => 
9529   array (
9530     'return' => 'int',
9531     'params' => 'resource stream, string remote_file, string local_file, int mode[, int startpos]',
9532     'description' => 'Stores a file on the FTP server',
9533   ),
9534   'ftp_size' => 
9535   array (
9536     'return' => 'int',
9537     'params' => 'resource stream, string filename',
9538     'description' => 'Returns the size of the file, or -1 on error',
9539   ),
9540   'ftp_mdtm' => 
9541   array (
9542     'return' => 'int',
9543     'params' => 'resource stream, string filename',
9544     'description' => 'Returns the last modification time of the file, or -1 on error',
9545   ),
9546   'ftp_rename' => 
9547   array (
9548     'return' => 'bool',
9549     'params' => 'resource stream, string src, string dest',
9550     'description' => 'Renames the given file to a new path',
9551   ),
9552   'ftp_delete' => 
9553   array (
9554     'return' => 'bool',
9555     'params' => 'resource stream, string file',
9556     'description' => 'Deletes a file',
9557   ),
9558   'ftp_site' => 
9559   array (
9560     'return' => 'bool',
9561     'params' => 'resource stream, string cmd',
9562     'description' => 'Sends a SITE command to the server',
9563   ),
9564   'ftp_close' => 
9565   array (
9566     'return' => 'bool',
9567     'params' => 'resource stream',
9568     'description' => 'Closes the FTP stream',
9569   ),
9570   'ftp_set_option' => 
9571   array (
9572     'return' => 'bool',
9573     'params' => 'resource stream, int option, mixed value',
9574     'description' => 'Sets an FTP option',
9575   ),
9576   'ftp_get_option' => 
9577   array (
9578     'return' => 'mixed',
9579     'params' => 'resource stream, int option',
9580     'description' => 'Gets an FTP option',
9581   ),
9582   'birdstep_connect' => 
9583   array (
9584     'return' => 'int',
9585     'params' => 'string server, string user, string pass',
9586     'description' => '',
9587   ),
9588   'birdstep_close' => 
9589   array (
9590     'return' => 'bool',
9591     'params' => 'int id',
9592     'description' => '',
9593   ),
9594   'birdstep_exec' => 
9595   array (
9596     'return' => 'int',
9597     'params' => 'int index, string exec_str',
9598     'description' => '',
9599   ),
9600   'birdstep_fetch' => 
9601   array (
9602     'return' => 'bool',
9603     'params' => 'int index',
9604     'description' => '',
9605   ),
9606   'birdstep_result' => 
9607   array (
9608     'return' => 'mixed',
9609     'params' => 'int index, int col',
9610     'description' => '',
9611   ),
9612   'birdstep_freeresult' => 
9613   array (
9614     'return' => 'bool',
9615     'params' => 'int index',
9616     'description' => '',
9617   ),
9618   'birdstep_autocommit' => 
9619   array (
9620     'return' => 'bool',
9621     'params' => 'int index',
9622     'description' => '',
9623   ),
9624   'birdstep_off_autocommit' => 
9625   array (
9626     'return' => 'bool',
9627     'params' => 'int index',
9628     'description' => '',
9629   ),
9630   'birdstep_commit' => 
9631   array (
9632     'return' => 'bool',
9633     'params' => 'int index',
9634     'description' => '',
9635   ),
9636   'birdstep_rollback' => 
9637   array (
9638     'return' => 'bool',
9639     'params' => 'int index',
9640     'description' => '',
9641   ),
9642   'birdstep_fieldname' => 
9643   array (
9644     'return' => 'string',
9645     'params' => 'int index, int col',
9646     'description' => '',
9647   ),
9648   'birdstep_fieldnum' => 
9649   array (
9650     'return' => 'int',
9651     'params' => 'int index',
9652     'description' => '',
9653   ),
9654   'odbc_close_all' => 
9655   array (
9656     'return' => 'void',
9657     'params' => 'void',
9658     'description' => 'Close all ODBC connections',
9659   ),
9660   'odbc_binmode' => 
9661   array (
9662     'return' => 'bool',
9663     'params' => 'int result_id, int mode',
9664     'description' => 'Handle binary column data',
9665   ),
9666   'odbc_longreadlen' => 
9667   array (
9668     'return' => 'bool',
9669     'params' => 'int result_id, int length',
9670     'description' => 'Handle LONG columns',
9671   ),
9672   'odbc_prepare' => 
9673   array (
9674     'return' => 'resource',
9675     'params' => 'resource connection_id, string query',
9676     'description' => 'Prepares a statement for execution',
9677   ),
9678   'odbc_execute' => 
9679   array (
9680     'return' => 'bool',
9681     'params' => 'resource result_id [, array parameters_array]',
9682     'description' => 'Execute a prepared statement',
9683   ),
9684   'odbc_cursor' => 
9685   array (
9686     'return' => 'string',
9687     'params' => 'resource result_id',
9688     'description' => 'Get cursor name',
9689   ),
9690   'odbc_data_source' => 
9691   array (
9692     'return' => 'array',
9693     'params' => 'resource connection_id, int fetch_type',
9694     'description' => 'Return information about the currently connected data source',
9695   ),
9696   'odbc_exec' => 
9697   array (
9698     'return' => 'resource',
9699     'params' => 'resource connection_id, string query [, int flags]',
9700     'description' => 'Prepare and execute an SQL statement',
9701   ),
9702   'odbc_fetch_object' => 
9703   array (
9704     'return' => 'object',
9705     'params' => 'int result [, int rownumber]',
9706     'description' => 'Fetch a result row as an object',
9707   ),
9708   'odbc_fetch_array' => 
9709   array (
9710     'return' => 'array',
9711     'params' => 'int result [, int rownumber]',
9712     'description' => 'Fetch a result row as an associative array',
9713   ),
9714   'odbc_fetch_into' => 
9715   array (
9716     'return' => 'int',
9717     'params' => 'resource result_id, array result_array, [, int rownumber]',
9718     'description' => 'Fetch one result row into an array',
9719   ),
9720   'solid_fetch_prev' => 
9721   array (
9722     'return' => 'bool',
9723     'params' => 'resource result_id',
9724     'description' => '',
9725   ),
9726   'odbc_fetch_row' => 
9727   array (
9728     'return' => 'bool',
9729     'params' => 'resource result_id [, int row_number]',
9730     'description' => 'Fetch a row',
9731   ),
9732   'odbc_result' => 
9733   array (
9734     'return' => 'mixed',
9735     'params' => 'resource result_id, mixed field',
9736     'description' => 'Get result data',
9737   ),
9738   'odbc_result_all' => 
9739   array (
9740     'return' => 'int',
9741     'params' => 'resource result_id [, string format]',
9742     'description' => 'Print result as HTML table',
9743   ),
9744   'odbc_free_result' => 
9745   array (
9746     'return' => 'bool',
9747     'params' => 'resource result_id',
9748     'description' => 'Free resources associated with a result',
9749   ),
9750   'odbc_connect' => 
9751   array (
9752     'return' => 'resource',
9753     'params' => 'string DSN, string user, string password [, int cursor_option]',
9754     'description' => 'Connect to a datasource',
9755   ),
9756   'odbc_pconnect' => 
9757   array (
9758     'return' => 'resource',
9759     'params' => 'string DSN, string user, string password [, int cursor_option]',
9760     'description' => 'Establish a persistent connection to a datasource',
9761   ),
9762   'odbc_close' => 
9763   array (
9764     'return' => 'void',
9765     'params' => 'resource connection_id',
9766     'description' => 'Close an ODBC connection',
9767   ),
9768   'odbc_num_rows' => 
9769   array (
9770     'return' => 'int',
9771     'params' => 'resource result_id',
9772     'description' => 'Get number of rows in a result',
9773   ),
9774   'odbc_next_result' => 
9775   array (
9776     'return' => 'bool',
9777     'params' => 'resource result_id',
9778     'description' => 'Checks if multiple results are avaiable',
9779   ),
9780   'odbc_num_fields' => 
9781   array (
9782     'return' => 'int',
9783     'params' => 'resource result_id',
9784     'description' => 'Get number of columns in a result',
9785   ),
9786   'odbc_field_name' => 
9787   array (
9788     'return' => 'string',
9789     'params' => 'resource result_id, int field_number',
9790     'description' => 'Get a column name',
9791   ),
9792   'odbc_field_type' => 
9793   array (
9794     'return' => 'string',
9795     'params' => 'resource result_id, int field_number',
9796     'description' => 'Get the datatype of a column',
9797   ),
9798   'odbc_field_len' => 
9799   array (
9800     'return' => 'int',
9801     'params' => 'resource result_id, int field_number',
9802     'description' => 'Get the length (precision) of a column',
9803   ),
9804   'odbc_field_scale' => 
9805   array (
9806     'return' => 'int',
9807     'params' => 'resource result_id, int field_number',
9808     'description' => 'Get the scale of a column',
9809   ),
9810   'odbc_field_num' => 
9811   array (
9812     'return' => 'int',
9813     'params' => 'resource result_id, string field_name',
9814     'description' => 'Return column number',
9815   ),
9816   'odbc_autocommit' => 
9817   array (
9818     'return' => 'mixed',
9819     'params' => 'resource connection_id [, int OnOff]',
9820     'description' => 'Toggle autocommit mode or get status',
9821   ),
9822   'odbc_commit' => 
9823   array (
9824     'return' => 'bool',
9825     'params' => 'resource connection_id',
9826     'description' => 'Commit an ODBC transaction',
9827   ),
9828   'odbc_rollback' => 
9829   array (
9830     'return' => 'bool',
9831     'params' => 'resource connection_id',
9832     'description' => 'Rollback a transaction',
9833   ),
9834   'odbc_error' => 
9835   array (
9836     'return' => 'string',
9837     'params' => '[resource connection_id]',
9838     'description' => 'Get the last error code',
9839   ),
9840   'odbc_errormsg' => 
9841   array (
9842     'return' => 'string',
9843     'params' => '[resource connection_id]',
9844     'description' => 'Get the last error message',
9845   ),
9846   'odbc_setoption' => 
9847   array (
9848     'return' => 'bool',
9849     'params' => 'resource conn_id|result_id, int which, int option, int value',
9850     'description' => 'Sets connection or statement options',
9851   ),
9852   'odbc_tables' => 
9853   array (
9854     'return' => 'resource',
9855     'params' => 'resource connection_id [, string qualifier [, string owner [, string name [, string table_types]]]]',
9856     'description' => 'Call the SQLTables function',
9857   ),
9858   'odbc_columns' => 
9859   array (
9860     'return' => 'resource',
9861     'params' => 'resource connection_id [, string qualifier [, string owner [, string table_name [, string column_name]]]]',
9862     'description' => 'Returns a result identifier that can be used to fetch a list of column names in specified tables',
9863   ),
9864   'odbc_columnprivileges' => 
9865   array (
9866     'return' => 'resource',
9867     'params' => 'resource connection_id, string catalog, string schema, string table, string column',
9868     'description' => 'Returns a result identifier that can be used to fetch a list of columns and associated privileges for the specified table',
9869   ),
9870   'odbc_foreignkeys' => 
9871   array (
9872     'return' => 'resource',
9873     'params' => 'resource connection_id, string pk_qualifier, string pk_owner, string pk_table, string fk_qualifier, string fk_owner, string fk_table',
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   ),
9876   'odbc_gettypeinfo' => 
9877   array (
9878     'return' => 'resource',
9879     'params' => 'resource connection_id [, int data_type]',
9880     'description' => 'Returns a result identifier containing information about data types supported by the data source',
9881   ),
9882   'odbc_primarykeys' => 
9883   array (
9884     'return' => 'resource',
9885     'params' => 'resource connection_id, string qualifier, string owner, string table',
9886     'description' => 'Returns a result identifier listing the column names that comprise the primary key for a table',
9887   ),
9888   'odbc_procedurecolumns' => 
9889   array (
9890     'return' => 'resource',
9891     'params' => 'resource connection_id [, string qualifier, string owner, string proc, string column]',
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   ),
9894   'odbc_procedures' => 
9895   array (
9896     'return' => 'resource',
9897     'params' => 'resource connection_id [, string qualifier, string owner, string name]',
9898     'description' => 'Returns a result identifier containg the list of procedure names in a datasource',
9899   ),
9900   'odbc_specialcolumns' => 
9901   array (
9902     'return' => 'resource',
9903     'params' => 'resource connection_id, int type, string qualifier, string owner, string table, int scope, int nullable',
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   ),
9906   'odbc_statistics' => 
9907   array (
9908     'return' => 'resource',
9909     'params' => 'resource connection_id, string qualifier, string owner, string name, int unique, int accuracy',
9910     'description' => 'Returns a result identifier that contains statistics about a single table and the indexes associated with the table',
9911   ),
9912   'odbc_tableprivileges' => 
9913   array (
9914     'return' => 'resource',
9915     'params' => 'resource connection_id, string qualifier, string owner, string name',
9916     'description' => 'Returns a result identifier containing a list of tables and the privileges associated with each table',
9917   ),
9918   'pspell_new' => 
9919   array (
9920     'return' => 'int',
9921     'params' => 'string language [, string spelling [, string jargon [, string encoding [, int mode]]]]',
9922     'description' => 'Load a dictionary',
9923   ),
9924   'pspell_new_personal' => 
9925   array (
9926     'return' => 'int',
9927     'params' => 'string personal, string language [, string spelling [, string jargon [, string encoding [, int mode]]]]',
9928     'description' => 'Load a dictionary with a personal wordlist',
9929   ),
9930   'pspell_new_config' => 
9931   array (
9932     'return' => 'int',
9933     'params' => 'int config',
9934     'description' => 'Load a dictionary based on the given config',
9935   ),
9936   'pspell_check' => 
9937   array (
9938     'return' => 'bool',
9939     'params' => 'int pspell, string word',
9940     'description' => 'Returns true if word is valid',
9941   ),
9942   'pspell_suggest' => 
9943   array (
9944     'return' => 'array',
9945     'params' => 'int pspell, string word',
9946     'description' => 'Returns array of suggestions',
9947   ),
9948   'pspell_store_replacement' => 
9949   array (
9950     'return' => 'bool',
9951     'params' => 'int pspell, string misspell, string correct',
9952     'description' => 'Notify the dictionary of a user-selected replacement',
9953   ),
9954   'pspell_add_to_personal' => 
9955   array (
9956     'return' => 'bool',
9957     'params' => 'int pspell, string word',
9958     'description' => 'Adds a word to a personal list',
9959   ),
9960   'pspell_add_to_session' => 
9961   array (
9962     'return' => 'bool',
9963     'params' => 'int pspell, string word',
9964     'description' => 'Adds a word to the current session',
9965   ),
9966   'pspell_clear_session' => 
9967   array (
9968     'return' => 'bool',
9969     'params' => 'int pspell',
9970     'description' => 'Clears the current session',
9971   ),
9972   'pspell_save_wordlist' => 
9973   array (
9974     'return' => 'bool',
9975     'params' => 'int pspell',
9976     'description' => 'Saves the current (personal) wordlist',
9977   ),
9978   'pspell_config_create' => 
9979   array (
9980     'return' => 'int',
9981     'params' => 'string language [, string spelling [, string jargon [, string encoding]]]',
9982     'description' => 'Create a new config to be used later to create a manager',
9983   ),
9984   'pspell_config_runtogether' => 
9985   array (
9986     'return' => 'bool',
9987     'params' => 'int conf, bool runtogether',
9988     'description' => 'Consider run-together words as valid components',
9989   ),
9990   'pspell_config_mode' => 
9991   array (
9992     'return' => 'bool',
9993     'params' => 'int conf, long mode',
9994     'description' => 'Select mode for config (PSPELL_FAST, PSPELL_NORMAL or PSPELL_BAD_SPELLERS)',
9995   ),
9996   'pspell_config_ignore' => 
9997   array (
9998     'return' => 'bool',
9999     'params' => 'int conf, int ignore',
10000     'description' => 'Ignore words <= n chars',
10001   ),
10002   'pspell_config_personal' => 
10003   array (
10004     'return' => 'bool',
10005     'params' => 'int conf, string personal',
10006     'description' => 'Use a personal dictionary for this config',
10007   ),
10008   'pspell_config_dict_dir' => 
10009   array (
10010     'return' => 'bool',
10011     'params' => 'int conf, string directory',
10012     'description' => 'location of the main word list',
10013   ),
10014   'pspell_config_data_dir' => 
10015   array (
10016     'return' => 'bool',
10017     'params' => 'int conf, string directory',
10018     'description' => 'location of language data files',
10019   ),
10020   'pspell_config_repl' => 
10021   array (
10022     'return' => 'bool',
10023     'params' => 'int conf, string repl',
10024     'description' => 'Use a personal dictionary with replacement pairs for this config',
10025   ),
10026   'pspell_config_save_repl' => 
10027   array (
10028     'return' => 'bool',
10029     'params' => 'int conf, bool save',
10030     'description' => 'Save replacement pairs when personal list is saved for this config',
10031   ),
10032   'dl' => 
10033   array (
10034     'return' => 'int',
10035     'params' => 'string extension_filename',
10036     'description' => 'Load a PHP extension at runtime',
10037   ),
10038   'ftok' => 
10039   array (
10040     'return' => 'int',
10041     'params' => 'string pathname, string proj',
10042     'description' => 'Convert a pathname and a project identifier to a System V IPC key',
10043   ),
10044   'assert' => 
10045   array (
10046     'return' => 'int',
10047     'params' => 'string|bool assertion',
10048     'description' => 'Checks if assertion is false',
10049   ),
10050   'assert_options' => 
10051   array (
10052     'return' => 'mixed',
10053     'params' => 'int what [, mixed value]',
10054     'description' => 'Set/get the various assert flags',
10055   ),
10056   'sprintf' => 
10057   array (
10058     'return' => 'string',
10059     'params' => 'string format [, mixed arg1 [, mixed ...]]',
10060     'description' => 'Return a formatted string',
10061   ),
10062   'vsprintf' => 
10063   array (
10064     'return' => 'string',
10065     'params' => 'string format, array args',
10066     'description' => 'Return a formatted string',
10067   ),
10068   'printf' => 
10069   array (
10070     'return' => 'int',
10071     'params' => 'string format [, mixed arg1 [, mixed ...]]',
10072     'description' => 'Output a formatted string',
10073   ),
10074   'vprintf' => 
10075   array (
10076     'return' => 'int',
10077     'params' => 'string format, array args',
10078     'description' => 'Output a formatted string',
10079   ),
10080   'fprintf' => 
10081   array (
10082     'return' => 'int',
10083     'params' => 'resource stream, string format [, mixed arg1 [, mixed ...]]',
10084     'description' => 'Output a formatted string into a stream',
10085   ),
10086   'vfprintf' => 
10087   array (
10088     'return' => 'int',
10089     'params' => 'resource stream, string format, array args',
10090     'description' => 'Output a formatted string into a stream',
10091   ),
10092   'stream_socket_pair' => 
10093   array (
10094     'return' => 'array',
10095     'params' => 'int domain, int type, int protocol',
10096     'description' => 'Creates a pair of connected, indistinguishable socket streams',
10097   ),
10098   'stream_socket_client' => 
10099   array (
10100     'return' => 'resource',
10101     'params' => 'string remoteaddress [, long &errcode, string &errstring, double timeout, long flags, resource context]',
10102     'description' => 'Open a client connection to a remote address',
10103   ),
10104   'stream_socket_server' => 
10105   array (
10106     'return' => 'resource',
10107     'params' => 'string localaddress [, long &errcode, string &errstring, long flags, resource context]',
10108     'description' => 'Create a server socket bound to localaddress',
10109   ),
10110   'stream_socket_accept' => 
10111   array (
10112     'return' => 'resource',
10113     'params' => 'resource serverstream, [ double timeout, string &peername ]',
10114     'description' => 'Accept a client connection from a server socket',
10115   ),
10116   'stream_socket_get_name' => 
10117   array (
10118     'return' => 'string',
10119     'params' => 'resource stream, bool want_peer',
10120     'description' => 'Returns either the locally bound or remote name for a socket stream',
10121   ),
10122   'stream_socket_sendto' => 
10123   array (
10124     'return' => 'long',
10125     'params' => 'resouce stream, string data [, long flags [, string target_addr]]',
10126     'description' => 'Send data to a socket stream.  If target_addr is specified it must be in dotted quad (or [ipv6]) format',
10127   ),
10128   'stream_socket_recvfrom' => 
10129   array (
10130     'return' => 'string',
10131     'params' => 'resource stream, long amount [, long flags [, string &remote_addr]]',
10132     'description' => 'Receives data from a socket stream',
10133   ),
10134   'stream_get_contents' => 
10135   array (
10136     'return' => 'long',
10137     'params' => 'resource source [, long maxlen [, long offset]]',
10138     'description' => 'Reads all remaining bytes (or up to maxlen bytes) from a stream and returns them as a string.',
10139   ),
10140   'stream_copy_to_stream' => 
10141   array (
10142     'return' => 'long',
10143     'params' => 'resource source, resource dest [, long maxlen [, long pos]]',
10144     'description' => 'Reads up to maxlen bytes from source stream and writes them to dest stream.',
10145   ),
10146   'stream_get_meta_data' => 
10147   array (
10148     'return' => 'resource',
10149     'params' => 'resource fp',
10150     'description' => 'Retrieves header/meta data from streams/file pointers',
10151   ),
10152   'stream_get_transports' => 
10153   array (
10154     'return' => 'array',
10155     'params' => '',
10156     'description' => 'Retrieves list of registered socket transports',
10157   ),
10158   'stream_get_wrappers' => 
10159   array (
10160     'return' => 'array',
10161     'params' => '',
10162     'description' => 'Retrieves list of registered stream wrappers',
10163   ),
10164   'stream_select' => 
10165   array (
10166     'return' => 'int',
10167     'params' => 'array &read_streams, array &write_streams, array &except_streams, int tv_sec[, int tv_usec]',
10168     'description' => 'Runs the select() system call on the sets of streams with a timeout specified by tv_sec and tv_usec',
10169   ),
10170   'stream_context_get_options' => 
10171   array (
10172     'return' => 'array',
10173     'params' => 'resource context|resource stream',
10174     'description' => 'Retrieve options for a stream/wrapper/context',
10175   ),
10176   'stream_context_set_option' => 
10177   array (
10178     'return' => 'bool',
10179     'params' => 'resource context|resource stream, string wrappername, string optionname, mixed value',
10180     'description' => 'Set an option for a wrapper',
10181   ),
10182   'stream_context_set_params' => 
10183   array (
10184     'return' => 'bool',
10185     'params' => 'resource context|resource stream, array options',
10186     'description' => 'Set parameters for a file context',
10187   ),
10188   'stream_context_get_default' => 
10189   array (
10190     'return' => 'resource',
10191     'params' => '[array options]',
10192     'description' => 'Get a handle on the default file/stream context and optionally set parameters',
10193   ),
10194   'stream_context_create' => 
10195   array (
10196     'return' => 'resource',
10197     'params' => '[array options]',
10198     'description' => 'Create a file context and optionally set parameters',
10199   ),
10200   'stream_filter_prepend' => 
10201   array (
10202     'return' => 'resource',
10203     'params' => 'resource stream, string filtername[, int read_write[, string filterparams]]',
10204     'description' => 'Prepend a filter to a stream',
10205   ),
10206   'stream_filter_append' => 
10207   array (
10208     'return' => 'resource',
10209     'params' => 'resource stream, string filtername[, int read_write[, string filterparams]]',
10210     'description' => 'Append a filter to a stream',
10211   ),
10212   'stream_filter_remove' => 
10213   array (
10214     'return' => 'bool',
10215     'params' => 'resource stream_filter',
10216     'description' => 'Flushes any data in the filter\'s internal buffer, removes it from the chain, and frees the resource',
10217   ),
10218   'stream_get_line' => 
10219   array (
10220     'return' => 'string',
10221     'params' => 'resource stream, int maxlen [, string ending]',
10222     'description' => 'Read up to maxlen bytes from a stream or until the ending string is found',
10223   ),
10224   'stream_set_blocking' => 
10225   array (
10226     'return' => 'bool',
10227     'params' => 'resource socket, int mode',
10228     'description' => 'Set blocking/non-blocking mode on a socket or stream',
10229   ),
10230   'set_socket_blocking' => 
10231   array (
10232     'return' => 'bool',
10233     'params' => 'resource socket, int mode',
10234     'description' => 'Set blocking/non-blocking mode on a socket',
10235   ),
10236   'stream_set_timeout' => 
10237   array (
10238     'return' => 'bool',
10239     'params' => 'resource stream, int seconds, int microseconds',
10240     'description' => 'Set timeout on stream read to seconds + microseonds',
10241   ),
10242   'stream_set_write_buffer' => 
10243   array (
10244     'return' => 'int',
10245     'params' => 'resource fp, int buffer',
10246     'description' => 'Set file write buffer',
10247   ),
10248   'stream_socket_enable_crypto' => 
10249   array (
10250     'return' => 'int',
10251     'params' => 'resource stream, bool enable [, int cryptokind, resource sessionstream]',
10252     'description' => 'Enable or disable a specific kind of crypto on the stream',
10253   ),
10254   'proc_terminate' => 
10255   array (
10256     'return' => 'int',
10257     'params' => 'resource process [, long signal]',
10258     'description' => 'kill a process opened by proc_open',
10259   ),
10260   'proc_close' => 
10261   array (
10262     'return' => 'int',
10263     'params' => 'resource process',
10264     'description' => 'close a process opened by proc_open',
10265   ),
10266   'proc_get_status' => 
10267   array (
10268     'return' => 'array',
10269     'params' => 'resource process',
10270     'description' => 'get information about a process opened by proc_open',
10271   ),
10272   'proc_open' => 
10273   array (
10274     'return' => 'resource',
10275     'params' => 'string command, array descriptorspec, array &pipes [, string cwd [, array env [, array other_options]]]',
10276     'description' => 'Run a process with more control over it\'s file descriptors',
10277   ),
10278   'opendir' => 
10279   array (
10280     'return' => 'mixed',
10281     'params' => 'string path[, resource context]',
10282     'description' => 'Open a directory and return a dir_handle',
10283   ),
10284   'dir' => 
10285   array (
10286     'return' => 'object',
10287     'params' => 'string directory[, resource context]',
10288     'description' => 'Directory class with properties, handle and class and methods read, rewind and close',
10289   ),
10290   'closedir' => 
10291   array (
10292     'return' => 'void',
10293     'params' => '[resource dir_handle]',
10294     'description' => 'Close directory connection identified by the dir_handle',
10295   ),
10296   'chroot' => 
10297   array (
10298     'return' => 'bool',
10299     'params' => 'string directory',
10300     'description' => 'Change root directory',
10301   ),
10302   'chdir' => 
10303   array (
10304     'return' => 'bool',
10305     'params' => 'string directory',
10306     'description' => 'Change the current directory',
10307   ),
10308   'getcwd' => 
10309   array (
10310     'return' => 'mixed',
10311     'params' => 'void',
10312     'description' => 'Gets the current directory',
10313   ),
10314   'rewinddir' => 
10315   array (
10316     'return' => 'void',
10317     'params' => '[resource dir_handle]',
10318     'description' => 'Rewind dir_handle back to the start',
10319   ),
10320   'readdir' => 
10321   array (
10322     'return' => 'string',
10323     'params' => '[resource dir_handle]',
10324     'description' => 'Read directory entry from dir_handle',
10325   ),
10326   'glob' => 
10327   array (
10328     'return' => 'array',
10329     'params' => 'string pattern [, int flags]',
10330     'description' => 'Find pathnames matching a pattern',
10331   ),
10332   'scandir' => 
10333   array (
10334     'return' => 'array',
10335     'params' => 'string dir [, int sorting_order [, resource context]]',
10336     'description' => 'List files & directories inside the specified path',
10337   ),
10338   'disk_total_space' => 
10339   array (
10340     'return' => 'float',
10341     'params' => 'string path',
10342     'description' => 'Get total disk space for filesystem that path is on',
10343   ),
10344   'disk_free_space' => 
10345   array (
10346     'return' => 'float',
10347     'params' => 'string path',
10348     'description' => 'Get free disk space for filesystem that path is on',
10349   ),
10350   'chgrp' => 
10351   array (
10352     'return' => 'bool',
10353     'params' => 'string filename, mixed group',
10354     'description' => 'Change file group',
10355   ),
10356   'lchgrp' => 
10357   array (
10358     'return' => 'bool',
10359     'params' => 'string filename, mixed group',
10360     'description' => 'Change symlink group',
10361   ),
10362   'chmod' => 
10363   array (
10364     'return' => 'bool',
10365     'params' => 'string filename, int mode',
10366     'description' => 'Change file mode',
10367   ),
10368   'touch' => 
10369   array (
10370     'return' => 'bool',
10371     'params' => 'string filename [, int time [, int atime]]',
10372     'description' => 'Set modification time of file',
10373   ),
10374   'clearstatcache' => 
10375   array (
10376     'return' => 'void',
10377     'params' => 'void',
10378     'description' => 'Clear file stat cache',
10379   ),
10380   'fileperms' => 
10381   array (
10382     'return' => 'int',
10383     'params' => 'string filename',
10384     'description' => 'Get file permissions',
10385   ),
10386   'fileinode' => 
10387   array (
10388     'return' => 'int',
10389     'params' => 'string filename',
10390     'description' => 'Get file inode',
10391   ),
10392   'filesize' => 
10393   array (
10394     'return' => 'int',
10395     'params' => 'string filename',
10396     'description' => 'Get file size',
10397   ),
10398   'fileowner' => 
10399   array (
10400     'return' => 'int',
10401     'params' => 'string filename',
10402     'description' => 'Get file owner',
10403   ),
10404   'filegroup' => 
10405   array (
10406     'return' => 'int',
10407     'params' => 'string filename',
10408     'description' => 'Get file group',
10409   ),
10410   'fileatime' => 
10411   array (
10412     'return' => 'int',
10413     'params' => 'string filename',
10414     'description' => 'Get last access time of file',
10415   ),
10416   'filemtime' => 
10417   array (
10418     'return' => 'int',
10419     'params' => 'string filename',
10420     'description' => 'Get last modification time of file',
10421   ),
10422   'filectime' => 
10423   array (
10424     'return' => 'int',
10425     'params' => 'string filename',
10426     'description' => 'Get inode modification time of file',
10427   ),
10428   'filetype' => 
10429   array (
10430     'return' => 'string',
10431     'params' => 'string filename',
10432     'description' => 'Get file type',
10433   ),
10434   'is_writable' => 
10435   array (
10436     'return' => 'bool',
10437     'params' => 'string filename',
10438     'description' => 'Returns true if file can be written',
10439   ),
10440   'is_readable' => 
10441   array (
10442     'return' => 'bool',
10443     'params' => 'string filename',
10444     'description' => 'Returns true if file can be read',
10445   ),
10446   'is_executable' => 
10447   array (
10448     'return' => 'bool',
10449     'params' => 'string filename',
10450     'description' => 'Returns true if file is executable',
10451   ),
10452   'is_file' => 
10453   array (
10454     'return' => 'bool',
10455     'params' => 'string filename',
10456     'description' => 'Returns true if file is a regular file',
10457   ),
10458   'is_dir' => 
10459   array (
10460     'return' => 'bool',
10461     'params' => 'string filename',
10462     'description' => 'Returns true if file is directory',
10463   ),
10464   'is_link' => 
10465   array (
10466     'return' => 'bool',
10467     'params' => 'string filename',
10468     'description' => 'Returns true if file is symbolic link',
10469   ),
10470   'file_exists' => 
10471   array (
10472     'return' => 'bool',
10473     'params' => 'string filename',
10474     'description' => 'Returns true if filename exists',
10475   ),
10476   'lstat' => 
10477   array (
10478     'return' => 'array',
10479     'params' => 'string filename',
10480     'description' => 'Give information about a file or symbolic link',
10481   ),
10482   'stat' => 
10483   array (
10484     'return' => 'array',
10485     'params' => 'string filename',
10486     'description' => 'Give information about a file',
10487   ),
10488   'convert_cyr_string' => 
10489   array (
10490     'return' => 'string',
10491     'params' => 'string str, string from, string to',
10492     'description' => 'Convert from one Cyrillic character set to another',
10493   ),
10494   'krsort' => 
10495   array (
10496     'return' => 'bool',
10497     'params' => 'array array_arg [, int sort_flags]',
10498     'description' => 'Sort an array by key value in reverse order',
10499   ),
10500   'ksort' => 
10501   array (
10502     'return' => 'bool',
10503     'params' => 'array array_arg [, int sort_flags]',
10504     'description' => 'Sort an array by key',
10505   ),
10506   'count' => 
10507   array (
10508     'return' => 'int',
10509     'params' => 'mixed var [, int mode]',
10510     'description' => 'Count the number of elements in a variable (usually an array)',
10511   ),
10512   'natsort' => 
10513   array (
10514     'return' => 'void',
10515     'params' => 'array array_arg',
10516     'description' => 'Sort an array using natural sort',
10517   ),
10518   'natcasesort' => 
10519   array (
10520     'return' => 'void',
10521     'params' => 'array array_arg',
10522     'description' => 'Sort an array using case-insensitive natural sort',
10523   ),
10524   'asort' => 
10525   array (
10526     'return' => 'bool',
10527     'params' => 'array array_arg [, int sort_flags]',
10528     'description' => 'Sort an array and maintain index association',
10529   ),
10530   'arsort' => 
10531   array (
10532     'return' => 'bool',
10533     'params' => 'array array_arg [, int sort_flags]',
10534     'description' => 'Sort an array in reverse order and maintain index association',
10535   ),
10536   'sort' => 
10537   array (
10538     'return' => 'bool',
10539     'params' => 'array array_arg [, int sort_flags]',
10540     'description' => 'Sort an array',
10541   ),
10542   'rsort' => 
10543   array (
10544     'return' => 'bool',
10545     'params' => 'array array_arg [, int sort_flags]',
10546     'description' => 'Sort an array in reverse order',
10547   ),
10548   'usort' => 
10549   array (
10550     'return' => 'bool',
10551     'params' => 'array array_arg, string cmp_function',
10552     'description' => 'Sort an array by values using a user-defined comparison function',
10553   ),
10554   'uasort' => 
10555   array (
10556     'return' => 'bool',
10557     'params' => 'array array_arg, string cmp_function',
10558     'description' => 'Sort an array with a user-defined comparison function and maintain index association',
10559   ),
10560   'uksort' => 
10561   array (
10562     'return' => 'bool',
10563     'params' => 'array array_arg, string cmp_function',
10564     'description' => 'Sort an array by keys using a user-defined comparison function',
10565   ),
10566   'end' => 
10567   array (
10568     'return' => 'mixed',
10569     'params' => 'array array_arg',
10570     'description' => 'Advances array argument\'s internal pointer to the last element and return it',
10571   ),
10572   'prev' => 
10573   array (
10574     'return' => 'mixed',
10575     'params' => 'array array_arg',
10576     'description' => 'Move array argument\'s internal pointer to the previous element and return it',
10577   ),
10578   'next' => 
10579   array (
10580     'return' => 'mixed',
10581     'params' => 'array array_arg',
10582     'description' => 'Move array argument\'s internal pointer to the next element and return it',
10583   ),
10584   'reset' => 
10585   array (
10586     'return' => 'mixed',
10587     'params' => 'array array_arg',
10588     'description' => 'Set array argument\'s internal pointer to the first element and return it',
10589   ),
10590   'current' => 
10591   array (
10592     'return' => 'mixed',
10593     'params' => 'array array_arg',
10594     'description' => 'Return the element currently pointed to by the internal array pointer',
10595   ),
10596   'key' => 
10597   array (
10598     'return' => 'mixed',
10599     'params' => 'array array_arg',
10600     'description' => 'Return the key of the element currently pointed to by the internal array pointer',
10601   ),
10602   'min' => 
10603   array (
10604     'return' => 'mixed',
10605     'params' => 'mixed arg1 [, mixed arg2 [, mixed ...]]',
10606     'description' => 'Return the lowest value in an array or a series of arguments',
10607   ),
10608   'max' => 
10609   array (
10610     'return' => 'mixed',
10611     'params' => 'mixed arg1 [, mixed arg2 [, mixed ...]]',
10612     'description' => 'Return the highest value in an array or a series of arguments',
10613   ),
10614   'array_walk' => 
10615   array (
10616     'return' => 'bool',
10617     'params' => 'array input, string funcname [, mixed userdata]',
10618     'description' => 'Apply a user function to every member of an array',
10619   ),
10620   'array_walk_recursive' => 
10621   array (
10622     'return' => 'bool',
10623     'params' => 'array input, string funcname [, mixed userdata]',
10624     'description' => 'Apply a user function recursively to every member of an array',
10625   ),
10626   'in_array' => 
10627   array (
10628     'return' => 'bool',
10629     'params' => 'mixed needle, array haystack [, bool strict]',
10630     'description' => 'Checks if the given value exists in the array',
10631   ),
10632   'array_search' => 
10633   array (
10634     'return' => 'mixed',
10635     'params' => 'mixed needle, array haystack [, bool strict]',
10636     'description' => 'Searches the array for a given value and returns the corresponding key if successful',
10637   ),
10638   'extract' => 
10639   array (
10640     'return' => 'int',
10641     'params' => 'array var_array [, int extract_type [, string prefix]]',
10642     'description' => 'Imports variables into symbol table from an array',
10643   ),
10644   'compact' => 
10645   array (
10646     'return' => 'array',
10647     'params' => 'mixed var_names [, mixed ...]',
10648     'description' => 'Creates a hash containing variables and their values',
10649   ),
10650   'array_fill' => 
10651   array (
10652     'return' => 'array',
10653     'params' => 'int start_key, int num, mixed val',
10654     'description' => 'Create an array containing num elements starting with index start_key each initialized to val',
10655   ),
10656   'range' => 
10657   array (
10658     'return' => 'array',
10659     'params' => 'mixed low, mixed high[, int step]',
10660     'description' => 'Create an array containing the range of integers or characters from low to high (inclusive)',
10661   ),
10662   'shuffle' => 
10663   array (
10664     'return' => 'bool',
10665     'params' => 'array array_arg',
10666     'description' => 'Randomly shuffle the contents of an array',
10667   ),
10668   'array_push' => 
10669   array (
10670     'return' => 'int',
10671     'params' => 'array stack, mixed var [, mixed ...]',
10672     'description' => 'Pushes elements onto the end of the array',
10673   ),
10674   'array_pop' => 
10675   array (
10676     'return' => 'mixed',
10677     'params' => 'array stack',
10678     'description' => 'Pops an element off the end of the array',
10679   ),
10680   'array_shift' => 
10681   array (
10682     'return' => 'mixed',
10683     'params' => 'array stack',
10684     'description' => 'Pops an element off the beginning of the array',
10685   ),
10686   'array_unshift' => 
10687   array (
10688     'return' => 'int',
10689     'params' => 'array stack, mixed var [, mixed ...]',
10690     'description' => 'Pushes elements onto the beginning of the array',
10691   ),
10692   'array_splice' => 
10693   array (
10694     'return' => 'array',
10695     'params' => 'array input, int offset [, int length [, array replacement]]',
10696     'description' => 'Removes the elements designated by offset and length and replace them with supplied array',
10697   ),
10698   'array_slice' => 
10699   array (
10700     'return' => 'array',
10701     'params' => 'array input, int offset [, int length]',
10702     'description' => 'Returns elements specified by offset and length',
10703   ),
10704   'array_merge' => 
10705   array (
10706     'return' => 'array',
10707     'params' => 'array arr1, array arr2 [, array ...]',
10708     'description' => 'Merges elements from passed arrays into one array',
10709   ),
10710   'array_merge_recursive' => 
10711   array (
10712     'return' => 'array',
10713     'params' => 'array arr1, array arr2 [, array ...]',
10714     'description' => 'Recursively merges elements from passed arrays into one array',
10715   ),
10716   'array_keys' => 
10717   array (
10718     'return' => 'array',
10719     'params' => 'array input [, mixed search_value[, bool strict]]',
10720     'description' => 'Return just the keys from the input array, optionally only for the specified search_value',
10721   ),
10722   'array_values' => 
10723   array (
10724     'return' => 'array',
10725     'params' => 'array input',
10726     'description' => 'Return just the values from the input array',
10727   ),
10728   'array_count_values' => 
10729   array (
10730     'return' => 'array',
10731     'params' => 'array input',
10732     'description' => 'Return the value as key and the frequency of that value in input as value',
10733   ),
10734   'array_reverse' => 
10735   array (
10736     'return' => 'array',
10737     'params' => 'array input [, bool preserve keys]',
10738     'description' => 'Return input as a new array with the order of the entries reversed',
10739   ),
10740   'array_pad' => 
10741   array (
10742     'return' => 'array',
10743     'params' => 'array input, int pad_size, mixed pad_value',
10744     'description' => 'Returns a copy of input array padded with pad_value to size pad_size',
10745   ),
10746   'array_flip' => 
10747   array (
10748     'return' => 'array',
10749     'params' => 'array input',
10750     'description' => 'Return array with key <-> value flipped',
10751   ),
10752   'array_change_key_case' => 
10753   array (
10754     'return' => 'array',
10755     'params' => 'array input [, int case=CASE_LOWER]',
10756     'description' => 'Retuns an array with all string keys lowercased [or uppercased]',
10757   ),
10758   'array_unique' => 
10759   array (
10760     'return' => 'array',
10761     'params' => 'array input',
10762     'description' => 'Removes duplicate values from array',
10763   ),
10764   'array_intersect_key' => 
10765   array (
10766     'return' => 'array',
10767     'params' => 'array arr1, array arr2 [, array ...]',
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   ),
10770   'array_intersect_ukey' => 
10771   array (
10772     'return' => 'array',
10773     'params' => 'array arr1, array arr2 [, array ...], callback key_compare_func',
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   ),
10776   'array_intersect' => 
10777   array (
10778     'return' => 'array',
10779     'params' => 'array arr1, array arr2 [, array ...]',
10780     'description' => 'Returns the entries of arr1 that have values which are present in all the other arguments',
10781   ),
10782   'array_uintersect' => 
10783   array (
10784     'return' => 'array',
10785     'params' => 'array arr1, array arr2 [, array ...], callback data_compare_func',
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   ),
10788   'array_intersect_assoc' => 
10789   array (
10790     'return' => 'array',
10791     'params' => 'array arr1, array arr2 [, array ...]',
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   ),
10794   'array_uintersect_assoc' => 
10795   array (
10796     'return' => 'array',
10797     'params' => 'array arr1, array arr2 [, array ...], callback data_compare_func',
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   ),
10800   'array_intersect_uassoc' => 
10801   array (
10802     'return' => 'array',
10803     'params' => 'array arr1, array arr2 [, array ...], callback key_compare_func',
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   ),
10806   'array_uintersect_uassoc' => 
10807   array (
10808     'return' => 'array',
10809     'params' => 'array arr1, array arr2 [, array ...], callback data_compare_func, callback key_compare_func',
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   ),
10812   'array_diff_key' => 
10813   array (
10814     'return' => 'array',
10815     'params' => 'array arr1, array arr2 [, array ...]',
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   ),
10818   'array_diff_ukey' => 
10819   array (
10820     'return' => 'array',
10821     'params' => 'array arr1, array arr2 [, array ...], callback key_comp_func',
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   ),
10824   'array_diff' => 
10825   array (
10826     'return' => 'array',
10827     'params' => 'array arr1, array arr2 [, array ...]',
10828     'description' => 'Returns the entries of arr1 that have values which are not present in any of the others arguments.',
10829   ),
10830   'array_udiff' => 
10831   array (
10832     'return' => 'array',
10833     'params' => 'array arr1, array arr2 [, array ...], callback data_comp_func',
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   ),
10836   'array_diff_assoc' => 
10837   array (
10838     'return' => 'array',
10839     'params' => 'array arr1, array arr2 [, array ...]',
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   ),
10842   'array_diff_uassoc' => 
10843   array (
10844     'return' => 'array',
10845     'params' => 'array arr1, array arr2 [, array ...], callback data_comp_func',
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   ),
10848   'array_udiff_assoc' => 
10849   array (
10850     'return' => 'array',
10851     'params' => 'array arr1, array arr2 [, array ...], callback key_comp_func',
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   ),
10854   'array_udiff_uassoc' => 
10855   array (
10856     'return' => 'array',
10857     'params' => 'array arr1, array arr2 [, array ...], callback data_comp_func, callback key_comp_func',
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   ),
10860   'array_multisort' => 
10861   array (
10862     'return' => 'bool',
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     'description' => 'Sort multiple arrays at once similar to how ORDER BY clause works in SQL',
10865   ),
10866   'array_rand' => 
10867   array (
10868     'return' => 'mixed',
10869     'params' => 'array input [, int num_req]',
10870     'description' => 'Return key/keys for random entry/entries in the array',
10871   ),
10872   'array_sum' => 
10873   array (
10874     'return' => 'mixed',
10875     'params' => 'array input',
10876     'description' => 'Returns the sum of the array entries',
10877   ),
10878   'array_product' => 
10879   array (
10880     'return' => 'mixed',
10881     'params' => 'array input',
10882     'description' => 'Returns the product of the array entries',
10883   ),
10884   'array_reduce' => 
10885   array (
10886     'return' => 'mixed',
10887     'params' => 'array input, mixed callback [, int initial]',
10888     'description' => 'Iteratively reduce the array to a single value via the callback.',
10889   ),
10890   'array_filter' => 
10891   array (
10892     'return' => 'array',
10893     'params' => 'array input [, mixed callback]',
10894     'description' => 'Filters elements from the array via the callback.',
10895   ),
10896   'array_map' => 
10897   array (
10898     'return' => 'array',
10899     'params' => 'mixed callback, array input1 [, array input2 ,...]',
10900     'description' => 'Applies the callback to the elements in given arrays.',
10901   ),
10902   'array_key_exists' => 
10903   array (
10904     'return' => 'bool',
10905     'params' => 'mixed key, array search',
10906     'description' => 'Checks if the given key or index exists in the array',
10907   ),
10908   'array_chunk' => 
10909   array (
10910     'return' => 'array',
10911     'params' => 'array input, int size [, bool preserve_keys]',
10912     'description' => 'Split array into chunks',
10913   ),
10914   'array_combine' => 
10915   array (
10916     'return' => 'array',
10917     'params' => 'array keys, array values',
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   ),
10920   'soundex' => 
10921   array (
10922     'return' => 'string',
10923     'params' => 'string str',
10924     'description' => 'Calculate the soundex key of a string',
10925   ),
10926   'strptime' => 
10927   array (
10928     'return' => 'string',
10929     'params' => 'string timestamp, string format',
10930     'description' => 'Parse a time/date generated with strftime()',
10931   ),
10932   'md5' => 
10933   array (
10934     'return' => 'string',
10935     'params' => 'string str, [ bool raw_output]',
10936     'description' => 'Calculate the md5 hash of a string',
10937   ),
10938   'md5_file' => 
10939   array (
10940     'return' => 'string',
10941     'params' => 'string filename [, bool raw_output]',
10942     'description' => 'Calculate the md5 hash of given filename',
10943   ),
10944   'header' => 
10945   array (
10946     'return' => 'void',
10947     'params' => 'string header [, bool replace, [int http_response_code]]',
10948     'description' => 'Sends a raw HTTP header',
10949   ),
10950   'setcookie' => 
10951   array (
10952     'return' => 'bool',
10953     'params' => 'string name [, string value [, int expires [, string path [, string domain [, bool secure]]]]]',
10954     'description' => 'Send a cookie',
10955   ),
10956   'setrawcookie' => 
10957   array (
10958     'return' => 'bool',
10959     'params' => 'string name [, string value [, int expires [, string path [, string domain [, bool secure]]]]]',
10960     'description' => 'Send a cookie with no url encoding of the value',
10961   ),
10962   'headers_sent' => 
10963   array (
10964     'return' => 'bool',
10965     'params' => '[string &$file [, int &$line]]',
10966     'description' => 'Returns true if headers have already been sent, false otherwise',
10967   ),
10968   'headers_list' => 
10969   array (
10970     'return' => 'array',
10971     'params' => 'void',
10972     'description' => 'Return list of headers to be sent / already sent',
10973   ),
10974   'crc32' => 
10975   array (
10976     'return' => 'string',
10977     'params' => 'string str',
10978     'description' => 'Calculate the crc32 polynomial of a string',
10979   ),
10980   'abs' => 
10981   array (
10982     'return' => 'int',
10983     'params' => 'int number',
10984     'description' => 'Return the absolute value of the number',
10985   ),
10986   'ceil' => 
10987   array (
10988     'return' => 'float',
10989     'params' => 'float number',
10990     'description' => 'Returns the next highest integer value of the number',
10991   ),
10992   'floor' => 
10993   array (
10994     'return' => 'float',
10995     'params' => 'float number',
10996     'description' => 'Returns the next lowest integer value from the number',
10997   ),
10998   'round' => 
10999   array (
11000     'return' => 'float',
11001     'params' => 'float number [, int precision]',
11002     'description' => 'Returns the number rounded to specified precision',
11003   ),
11004   'sin' => 
11005   array (
11006     'return' => 'float',
11007     'params' => 'float number',
11008     'description' => 'Returns the sine of the number in radians',
11009   ),
11010   'cos' => 
11011   array (
11012     'return' => 'float',
11013     'params' => 'float number',
11014     'description' => 'Returns the cosine of the number in radians',
11015   ),
11016   'tan' => 
11017   array (
11018     'return' => 'float',
11019     'params' => 'float number',
11020     'description' => 'Returns the tangent of the number in radians',
11021   ),
11022   'asin' => 
11023   array (
11024     'return' => 'float',
11025     'params' => 'float number',
11026     'description' => 'Returns the arc sine of the number in radians',
11027   ),
11028   'acos' => 
11029   array (
11030     'return' => 'float',
11031     'params' => 'float number',
11032     'description' => 'Return the arc cosine of the number in radians',
11033   ),
11034   'atan' => 
11035   array (
11036     'return' => 'float',
11037     'params' => 'float number',
11038     'description' => 'Returns the arc tangent of the number in radians',
11039   ),
11040   'atan2' => 
11041   array (
11042     'return' => 'float',
11043     'params' => 'float y, float x',
11044     'description' => 'Returns the arc tangent of y/x, with the resulting quadrant determined by the signs of y and x',
11045   ),
11046   'sinh' => 
11047   array (
11048     'return' => 'float',
11049     'params' => 'float number',
11050     'description' => 'Returns the hyperbolic sine of the number, defined as (exp(number) - exp(-number))/2',
11051   ),
11052   'cosh' => 
11053   array (
11054     'return' => 'float',
11055     'params' => 'float number',
11056     'description' => 'Returns the hyperbolic cosine of the number, defined as (exp(number) + exp(-number))/2',
11057   ),
11058   'tanh' => 
11059   array (
11060     'return' => 'float',
11061     'params' => 'float number',
11062     'description' => 'Returns the hyperbolic tangent of the number, defined as sinh(number)/cosh(number)',
11063   ),
11064   'asinh' => 
11065   array (
11066     'return' => 'float',
11067     'params' => 'float number',
11068     'description' => 'Returns the inverse hyperbolic sine of the number, i.e. the value whose hyperbolic sine is number',
11069   ),
11070   'acosh' => 
11071   array (
11072     'return' => 'float',
11073     'params' => 'float number',
11074     'description' => 'Returns the inverse hyperbolic cosine of the number, i.e. the value whose hyperbolic cosine is number',
11075   ),
11076   'atanh' => 
11077   array (
11078     'return' => 'float',
11079     'params' => 'float number',
11080     'description' => 'Returns the inverse hyperbolic tangent of the number, i.e. the value whose hyperbolic tangent is number',
11081   ),
11082   'pi' => 
11083   array (
11084     'return' => 'float',
11085     'params' => 'void',
11086     'description' => 'Returns an approximation of pi',
11087   ),
11088   'is_finite' => 
11089   array (
11090     'return' => 'bool',
11091     'params' => 'float val',
11092     'description' => 'Returns whether argument is finite',
11093   ),
11094   'is_infinite' => 
11095   array (
11096     'return' => 'bool',
11097     'params' => 'float val',
11098     'description' => 'Returns whether argument is infinite',
11099   ),
11100   'is_nan' => 
11101   array (
11102     'return' => 'bool',
11103     'params' => 'float val',
11104     'description' => 'Returns whether argument is not a number',
11105   ),
11106   'pow' => 
11107   array (
11108     'return' => 'number',
11109     'params' => 'number base, number exponent',
11110     'description' => 'Returns base raised to the power of exponent. Returns integer result when possible',
11111   ),
11112   'exp' => 
11113   array (
11114     'return' => 'float',
11115     'params' => 'float number',
11116     'description' => 'Returns e raised to the power of the number',
11117   ),
11118   'expm1' => 
11119   array (
11120     'return' => 'float',
11121     'params' => 'float number',
11122     'description' => 'Returns exp(number) - 1, computed in a way that accurate even when the value of number is close to zero',
11123   ),
11124   'log1p' => 
11125   array (
11126     'return' => 'float',
11127     'params' => 'float number',
11128     'description' => 'Returns log(1 + number), computed in a way that accurate even when the value of number is close to zero',
11129   ),
11130   'log' => 
11131   array (
11132     'return' => 'float',
11133     'params' => 'float number, [float base]',
11134     'description' => 'Returns the natural logarithm of the number, or the base log if base is specified',
11135   ),
11136   'log10' => 
11137   array (
11138     'return' => 'float',
11139     'params' => 'float number',
11140     'description' => 'Returns the base-10 logarithm of the number',
11141   ),
11142   'sqrt' => 
11143   array (
11144     'return' => 'float',
11145     'params' => 'float number',
11146     'description' => 'Returns the square root of the number',
11147   ),
11148   'hypot' => 
11149   array (
11150     'return' => 'float',
11151     'params' => 'float num1, float num2',
11152     'description' => 'Returns sqrt(num1*num1 + num2*num2)',
11153   ),
11154   'deg2rad' => 
11155   array (
11156     'return' => 'float',
11157     'params' => 'float number',
11158     'description' => 'Converts the number in degrees to the radian equivalent',
11159   ),
11160   'rad2deg' => 
11161   array (
11162     'return' => 'float',
11163     'params' => 'float number',
11164     'description' => 'Converts the radian number to the equivalent number in degrees',
11165   ),
11166   'bindec' => 
11167   array (
11168     'return' => 'int',
11169     'params' => 'string binary_number',
11170     'description' => 'Returns the decimal equivalent of the binary number',
11171   ),
11172   'hexdec' => 
11173   array (
11174     'return' => 'int',
11175     'params' => 'string hexadecimal_number',
11176     'description' => 'Returns the decimal equivalent of the hexadecimal number',
11177   ),
11178   'octdec' => 
11179   array (
11180     'return' => 'int',
11181     'params' => 'string octal_number',
11182     'description' => 'Returns the decimal equivalent of an octal string',
11183   ),
11184   'decbin' => 
11185   array (
11186     'return' => 'string',
11187     'params' => 'int decimal_number',
11188     'description' => 'Returns a string containing a binary representation of the number',
11189   ),
11190   'decoct' => 
11191   array (
11192     'return' => 'string',
11193     'params' => 'int decimal_number',
11194     'description' => 'Returns a string containing an octal representation of the given number',
11195   ),
11196   'dechex' => 
11197   array (
11198     'return' => 'string',
11199     'params' => 'int decimal_number',
11200     'description' => 'Returns a string containing a hexadecimal representation of the given number',
11201   ),
11202   'base_convert' => 
11203   array (
11204     'return' => 'string',
11205     'params' => 'string number, int frombase, int tobase',
11206     'description' => 'Converts a number in a string from any base <= 36 to any base <= 36',
11207   ),
11208   'number_format' => 
11209   array (
11210     'return' => 'string',
11211     'params' => 'float number [, int num_decimal_places [, string dec_seperator, string thousands_seperator]]',
11212     'description' => 'Formats a number with grouped thousands',
11213   ),
11214   'fmod' => 
11215   array (
11216     'return' => 'float',
11217     'params' => 'float x, float y',
11218     'description' => 'Returns the remainder of dividing x by y as a float',
11219   ),
11220   'gethostbyaddr' => 
11221   array (
11222     'return' => 'string',
11223     'params' => 'string ip_address',
11224     'description' => 'Get the Internet host name corresponding to a given IP address',
11225   ),
11226   'gethostbyname' => 
11227   array (
11228     'return' => 'string',
11229     'params' => 'string hostname',
11230     'description' => 'Get the IP address corresponding to a given Internet host name',
11231   ),
11232   'gethostbynamel' => 
11233   array (
11234     'return' => 'array',
11235     'params' => 'string hostname',
11236     'description' => 'Return a list of IP addresses that a given hostname resolves to.',
11237   ),
11238   'dns_check_record' => 
11239   array (
11240     'return' => 'int',
11241     'params' => 'string host [, string type]',
11242     'description' => 'Check DNS records corresponding to a given Internet host name or IP address',
11243   ),
11244   'dns_get_record' => 
11245   array (
11246     'return' => 'array|false',
11247     'params' => 'string hostname [, int type[, array authns, array addtl]]',
11248     'description' => 'Get any Resource Record corresponding to a given Internet host name',
11249   ),
11250   'dns_get_mx' => 
11251   array (
11252     'return' => 'bool',
11253     'params' => 'string hostname, array mxhosts [, array weight]',
11254     'description' => 'Get MX records corresponding to a given Internet host name',
11255   ),
11256   'bin2hex' => 
11257   array (
11258     'return' => 'string',
11259     'params' => 'string data',
11260     'description' => 'Converts the binary representation of data to hex',
11261   ),
11262   'strspn' => 
11263   array (
11264     'return' => 'int',
11265     'params' => 'string str, string mask [, start [, len]]',
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   ),
11268   'strcspn' => 
11269   array (
11270     'return' => 'int',
11271     'params' => 'string str, string mask [, start [, len]]',
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   ),
11274   'nl_langinfo' => 
11275   array (
11276     'return' => 'string',
11277     'params' => 'int item',
11278     'description' => 'Query language and locale information',
11279   ),
11280   'strcoll' => 
11281   array (
11282     'return' => 'int',
11283     'params' => 'string str1, string str2',
11284     'description' => 'Compares two strings using the current locale',
11285   ),
11286   'trim' => 
11287   array (
11288     'return' => 'string',
11289     'params' => 'string str [, string character_mask]',
11290     'description' => 'Strips whitespace from the beginning and end of a string',
11291   ),
11292   'rtrim' => 
11293   array (
11294     'return' => 'string',
11295     'params' => 'string str [, string character_mask]',
11296     'description' => 'Removes trailing whitespace',
11297   ),
11298   'ltrim' => 
11299   array (
11300     'return' => 'string',
11301     'params' => 'string str [, string character_mask]',
11302     'description' => 'Strips whitespace from the beginning of a string',
11303   ),
11304   'wordwrap' => 
11305   array (
11306     'return' => 'string',
11307     'params' => 'string str [, int width [, string break [, boolean cut]]]',
11308     'description' => 'Wraps buffer to selected number of characters using string break char',
11309   ),
11310   'explode' => 
11311   array (
11312     'return' => 'array',
11313     'params' => 'string separator, string str [, int limit]',
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   ),
11316   'join' => 
11317   array (
11318     'return' => 'string',
11319     'params' => 'array src, string glue',
11320     'description' => 'An alias for implode',
11321   ),
11322   'implode' => 
11323   array (
11324     'return' => 'string',
11325     'params' => '[string glue,] array pieces',
11326     'description' => 'Joins array elements placing glue string between items and return one string',
11327   ),
11328   'strtok' => 
11329   array (
11330     'return' => 'string',
11331     'params' => '[string str,] string token',
11332     'description' => 'Tokenize a string',
11333   ),
11334   'strtoupper' => 
11335   array (
11336     'return' => 'string',
11337     'params' => 'string str',
11338     'description' => 'Makes a string uppercase',
11339   ),
11340   'strtolower' => 
11341   array (
11342     'return' => 'string',
11343     'params' => 'string str',
11344     'description' => 'Makes a string lowercase',
11345   ),
11346   'basename' => 
11347   array (
11348     'return' => 'string',
11349     'params' => 'string path [, string suffix]',
11350     'description' => 'Returns the filename component of the path',
11351   ),
11352   'dirname' => 
11353   array (
11354     'return' => 'string',
11355     'params' => 'string path',
11356     'description' => 'Returns the directory name component of the path',
11357   ),
11358   'pathinfo' => 
11359   array (
11360     'return' => 'array',
11361     'params' => 'string path',
11362     'description' => 'Returns information about a certain string',
11363   ),
11364   'stristr' => 
11365   array (
11366     'return' => 'string',
11367     'params' => 'string haystack, string needle',
11368     'description' => 'Finds first occurrence of a string within another, case insensitive',
11369   ),
11370   'strstr' => 
11371   array (
11372     'return' => 'string',
11373     'params' => 'string haystack, string needle',
11374     'description' => 'Finds first occurrence of a string within another',
11375   ),
11376   'strchr' => 
11377   array (
11378     'return' => 'string',
11379     'params' => 'string haystack, string needle',
11380     'description' => 'An alias for strstr',
11381   ),
11382   'strpos' => 
11383   array (
11384     'return' => 'int',
11385     'params' => 'string haystack, string needle [, int offset]',
11386     'description' => 'Finds position of first occurrence of a string within another',
11387   ),
11388   'stripos' => 
11389   array (
11390     'return' => 'int',
11391     'params' => 'string haystack, string needle [, int offset]',
11392     'description' => 'Finds position of first occurrence of a string within another, case insensitive',
11393   ),
11394   'strrpos' => 
11395   array (
11396     'return' => 'int',
11397     'params' => 'string haystack, string needle [, int offset]',
11398     'description' => 'Finds position of last occurrence of a string within another string',
11399   ),
11400   'strripos' => 
11401   array (
11402     'return' => 'int',
11403     'params' => 'string haystack, string needle [, int offset]',
11404     'description' => 'Finds position of last occurrence of a string within another string',
11405   ),
11406   'strrchr' => 
11407   array (
11408     'return' => 'string',
11409     'params' => 'string haystack, string needle',
11410     'description' => 'Finds the last occurrence of a character in a string within another',
11411   ),
11412   'chunk_split' => 
11413   array (
11414     'return' => 'string',
11415     'params' => 'string str [, int chunklen [, string ending]]',
11416     'description' => 'Returns split line',
11417   ),
11418   'substr' => 
11419   array (
11420     'return' => 'string',
11421     'params' => 'string str, int start [, int length]',
11422     'description' => 'Returns part of a string',
11423   ),
11424   'substr_replace' => 
11425   array (
11426     'return' => 'mixed',
11427     'params' => 'mixed str, mixed repl, mixed start [, mixed length]',
11428     'description' => 'Replaces part of a string with another string',
11429   ),
11430   'quotemeta' => 
11431   array (
11432     'return' => 'string',
11433     'params' => 'string str',
11434     'description' => 'Quotes meta characters',
11435   ),
11436   'ord' => 
11437   array (
11438     'return' => 'int',
11439     'params' => 'string character',
11440     'description' => 'Returns ASCII value of character',
11441   ),
11442   'chr' => 
11443   array (
11444     'return' => 'string',
11445     'params' => 'int ascii',
11446     'description' => 'Converts ASCII code to a character',
11447   ),
11448   'ucfirst' => 
11449   array (
11450     'return' => 'string',
11451     'params' => 'string str',
11452     'description' => 'Makes a string\'s first character uppercase',
11453   ),
11454   'ucwords' => 
11455   array (
11456     'return' => 'string',
11457     'params' => 'string str',
11458     'description' => 'Uppercase the first character of every word in a string',
11459   ),
11460   'strtr' => 
11461   array (
11462     'return' => 'string',
11463     'params' => 'string str, string from, string to',
11464     'description' => 'Translates characters in str using given translation tables',
11465   ),
11466   'strrev' => 
11467   array (
11468     'return' => 'string',
11469     'params' => 'string str',
11470     'description' => 'Reverse a string',
11471   ),
11472   'similar_text' => 
11473   array (
11474     'return' => 'int',
11475     'params' => 'string str1, string str2 [, float percent]',
11476     'description' => 'Calculates the similarity between two strings',
11477   ),
11478   'addcslashes' => 
11479   array (
11480     'return' => 'string',
11481     'params' => 'string str, string charlist',
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   ),
11484   'addslashes' => 
11485   array (
11486     'return' => 'string',
11487     'params' => 'string str',
11488     'description' => 'Escapes single quote, double quotes and backslash characters in a string with backslashes',
11489   ),
11490   'stripcslashes' => 
11491   array (
11492     'return' => 'string',
11493     'params' => 'string str',
11494     'description' => 'Strips backslashes from a string. Uses C-style conventions',
11495   ),
11496   'stripslashes' => 
11497   array (
11498     'return' => 'string',
11499     'params' => 'string str',
11500     'description' => 'Strips backslashes from a string',
11501   ),
11502   'str_replace' => 
11503   array (
11504     'return' => 'mixed',
11505     'params' => 'mixed search, mixed replace, mixed subject [, int &replace_count]',
11506     'description' => 'Replaces all occurrences of search in haystack with replace',
11507   ),
11508   'str_ireplace' => 
11509   array (
11510     'return' => 'mixed',
11511     'params' => 'mixed search, mixed replace, mixed subject [, int &replace_count]',
11512     'description' => 'Replaces all occurrences of search in haystack with replace / case-insensitive',
11513   ),
11514   'hebrev' => 
11515   array (
11516     'return' => 'string',
11517     'params' => 'string str [, int max_chars_per_line]',
11518     'description' => 'Converts logical Hebrew text to visual text',
11519   ),
11520   'hebrevc' => 
11521   array (
11522     'return' => 'string',
11523     'params' => 'string str [, int max_chars_per_line]',
11524     'description' => 'Converts logical Hebrew text to visual text with newline conversion',
11525   ),
11526   'nl2br' => 
11527   array (
11528     'return' => 'string',
11529     'params' => 'string str',
11530     'description' => 'Converts newlines to HTML line breaks',
11531   ),
11532   'strip_tags' => 
11533   array (
11534     'return' => 'string',
11535     'params' => 'string str [, string allowable_tags]',
11536     'description' => 'Strips HTML and PHP tags from a string',
11537   ),
11538   'setlocale' => 
11539   array (
11540     'return' => 'string',
11541     'params' => 'mixed category, string locale [, string ...]',
11542     'description' => 'Set locale information',
11543   ),
11544   'parse_str' => 
11545   array (
11546     'return' => 'void',
11547     'params' => 'string encoded_string [, array result]',
11548     'description' => 'Parses GET/POST/COOKIE data and sets global variables',
11549   ),
11550   'str_repeat' => 
11551   array (
11552     'return' => 'string',
11553     'params' => 'string input, int mult',
11554     'description' => 'Returns the input string repeat mult times',
11555   ),
11556   'count_chars' => 
11557   array (
11558     'return' => 'mixed',
11559     'params' => 'string input [, int mode]',
11560     'description' => 'Returns info about what characters are used in input',
11561   ),
11562   'strnatcmp' => 
11563   array (
11564     'return' => 'int',
11565     'params' => 'string s1, string s2',
11566     'description' => 'Returns the result of string comparison using \'natural\' algorithm',
11567   ),
11568   'localeconv' => 
11569   array (
11570     'return' => 'array',
11571     'params' => 'void',
11572     'description' => 'Returns numeric formatting information based on the current locale',
11573   ),
11574   'strnatcasecmp' => 
11575   array (
11576     'return' => 'int',
11577     'params' => 'string s1, string s2',
11578     'description' => 'Returns the result of case-insensitive string comparison using \'natural\' algorithm',
11579   ),
11580   'substr_count' => 
11581   array (
11582     'return' => 'int',
11583     'params' => 'string haystack, string needle [, int offset [, int length]]',
11584     'description' => 'Returns the number of times a substring occurs in the string',
11585   ),
11586   'str_pad' => 
11587   array (
11588     'return' => 'string',
11589     'params' => 'string input, int pad_length [, string pad_string [, int pad_type]]',
11590     'description' => 'Returns input string padded on the left or right to specified length with pad_string',
11591   ),
11592   'sscanf' => 
11593   array (
11594     'return' => 'mixed',
11595     'params' => 'string str, string format [, string ...]',
11596     'description' => 'Implements an ANSI C compatible sscanf',
11597   ),
11598   'str_rot13' => 
11599   array (
11600     'return' => 'string',
11601     'params' => 'string str',
11602     'description' => 'Perform the rot13 transform on a string',
11603   ),
11604   'str_shuffle' => 
11605   array (
11606     'return' => 'void',
11607     'params' => 'string str',
11608     'description' => 'Shuffles string. One permutation of all possible is created',
11609   ),
11610   'str_word_count' => 
11611   array (
11612     'return' => 'mixed',
11613     'params' => 'string str, [int format [, string charlist]]',
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   ),
11616   'money_format' => 
11617   array (
11618     'return' => 'string',
11619     'params' => 'string format , float value',
11620     'description' => 'Convert monetary value(s) to string',
11621   ),
11622   'str_split' => 
11623   array (
11624     'return' => 'array',
11625     'params' => 'string str [, int split_length]',
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   ),
11628   'strpbrk' => 
11629   array (
11630     'return' => 'array',
11631     'params' => 'string haystack, string char_list',
11632     'description' => 'Search a string for any of a set of characters',
11633   ),
11634   'substr_compare' => 
11635   array (
11636     'return' => 'int',
11637     'params' => 'string main_str, string str, int offset [, int length [, bool case_sensitivity]]',
11638     'description' => 'Binary safe optionally case insensitive comparison of 2 strings from an offset, up to length characters',
11639   ),
11640   'fsockopen' => 
11641   array (
11642     'return' => 'resource',
11643     'params' => 'string hostname, int port [, int errno [, string errstr [, float timeout]]]',
11644     'description' => 'Open Internet or Unix domain socket connection',
11645   ),
11646   'pfsockopen' => 
11647   array (
11648     'return' => 'resource',
11649     'params' => 'string hostname, int port [, int errno [, string errstr [, float timeout]]]',
11650     'description' => 'Open persistent Internet or Unix domain socket connection',
11651   ),
11652   'readlink' => 
11653   array (
11654     'return' => 'string',
11655     'params' => 'string filename',
11656     'description' => 'Return the target of a symbolic link',
11657   ),
11658   'linkinfo' => 
11659   array (
11660     'return' => 'int',
11661     'params' => 'string filename',
11662     'description' => 'Returns the st_dev field of the UNIX C stat structure describing the link',
11663   ),
11664   'symlink' => 
11665   array (
11666     'return' => 'int',
11667     'params' => 'string target, string link',
11668     'description' => 'Create a symbolic link',
11669   ),
11670   'link' => 
11671   array (
11672     'return' => 'int',
11673     'params' => 'string target, string link',
11674     'description' => 'Create a hard link',
11675   ),
11676   'getmyuid' => 
11677   array (
11678     'return' => 'int',
11679     'params' => 'void',
11680     'description' => 'Get PHP script owner\'s UID',
11681   ),
11682   'getmygid' => 
11683   array (
11684     'return' => 'int',
11685     'params' => 'void',
11686     'description' => 'Get PHP script owner\'s GID',
11687   ),
11688   'getmypid' => 
11689   array (
11690     'return' => 'int',
11691     'params' => 'void',
11692     'description' => 'Get current process ID',
11693   ),
11694   'getmyinode' => 
11695   array (
11696     'return' => 'int',
11697     'params' => 'void',
11698     'description' => 'Get the inode of the current script being parsed',
11699   ),
11700   'getlastmod' => 
11701   array (
11702     'return' => 'int',
11703     'params' => 'void',
11704     'description' => 'Get time of last page modification',
11705   ),
11706   'var_dump' => 
11707   array (
11708     'return' => 'void',
11709     'params' => 'mixed var',
11710     'description' => 'Dumps a string representation of variable to output',
11711   ),
11712   'debug_zval_dump' => 
11713   array (
11714     'return' => 'void',
11715     'params' => 'mixed var',
11716     'description' => 'Dumps a string representation of an internal zend value to output.',
11717   ),
11718   'var_export' => 
11719   array (
11720     'return' => 'mixed',
11721     'params' => 'mixed var [, bool return]',
11722     'description' => 'Outputs or returns a string representation of a variable',
11723   ),
11724   'serialize' => 
11725   array (
11726     'return' => 'string',
11727     'params' => 'mixed variable',
11728     'description' => 'Returns a string representation of variable (which can later be unserialized)',
11729   ),
11730   'unserialize' => 
11731   array (
11732     'return' => 'mixed',
11733     'params' => 'string variable_representation',
11734     'description' => 'Takes a string representation of variable and recreates it',
11735   ),
11736   'memory_get_usage' => 
11737   array (
11738     'return' => 'int',
11739     'params' => '',
11740     'description' => 'Returns the allocated by PHP memory',
11741   ),
11742   'ereg' => 
11743   array (
11744     'return' => 'int',
11745     'params' => 'string pattern, string string [, array registers]',
11746     'description' => 'Regular expression match',
11747   ),
11748   'eregi' => 
11749   array (
11750     'return' => 'int',
11751     'params' => 'string pattern, string string [, array registers]',
11752     'description' => 'Case-insensitive regular expression match',
11753   ),
11754   'ereg_replace' => 
11755   array (
11756     'return' => 'string',
11757     'params' => 'string pattern, string replacement, string string',
11758     'description' => 'Replace regular expression',
11759   ),
11760   'eregi_replace' => 
11761   array (
11762     'return' => 'string',
11763     'params' => 'string pattern, string replacement, string string',
11764     'description' => 'Case insensitive replace regular expression',
11765   ),
11766   'split' => 
11767   array (
11768     'return' => 'array',
11769     'params' => 'string pattern, string string [, int limit]',
11770     'description' => 'Split string into array by regular expression',
11771   ),
11772   'spliti' => 
11773   array (
11774     'return' => 'array',
11775     'params' => 'string pattern, string string [, int limit]',
11776     'description' => 'Split string into array by regular expression case-insensitive',
11777   ),
11778   'sql_regcase' => 
11779   array (
11780     'return' => 'string',
11781     'params' => 'string string',
11782     'description' => 'Make regular expression for case insensitive match',
11783   ),
11784   'crypt' => 
11785   array (
11786     'return' => 'string',
11787     'params' => 'string str [, string salt]',
11788     'description' => 'Encrypt a string',
11789   ),
11790   'ezmlm_hash' => 
11791   array (
11792     'return' => 'int',
11793     'params' => 'string addr',
11794     'description' => 'Calculate EZMLM list hash value.',
11795   ),
11796   'mail' => 
11797   array (
11798     'return' => 'int',
11799     'params' => 'string to, string subject, string message [, string additional_headers [, string additional_parameters]]',
11800     'description' => 'Send an email message',
11801   ),
11802   'srand' => 
11803   array (
11804     'return' => 'void',
11805     'params' => '[int seed]',
11806     'description' => 'Seeds random number generator',
11807   ),
11808   'mt_srand' => 
11809   array (
11810     'return' => 'void',
11811     'params' => '[int seed]',
11812     'description' => 'Seeds Mersenne Twister random number generator',
11813   ),
11814   'rand' => 
11815   array (
11816     'return' => 'int',
11817     'params' => '[int min, int max]',
11818     'description' => 'Returns a random number',
11819   ),
11820   'mt_rand' => 
11821   array (
11822     'return' => 'int',
11823     'params' => '[int min, int max]',
11824     'description' => 'Returns a random number from Mersenne Twister',
11825   ),
11826   'getrandmax' => 
11827   array (
11828     'return' => 'int',
11829     'params' => 'void',
11830     'description' => 'Returns the maximum value a random number can have',
11831   ),
11832   'mt_getrandmax' => 
11833   array (
11834     'return' => 'int',
11835     'params' => 'void',
11836     'description' => 'Returns the maximum value a random number from Mersenne Twister can have',
11837   ),
11838   'get_browser' => 
11839   array (
11840     'return' => 'mixed',
11841     'params' => '[string browser_name [, bool return_array]]',
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   ),
11844   'iptcembed' => 
11845   array (
11846     'return' => 'array',
11847     'params' => 'string iptcdata, string jpeg_file_name [, int spool]',
11848     'description' => 'Embed binary IPTC data into a JPEG image.',
11849   ),
11850   'iptcparse' => 
11851   array (
11852     'return' => 'array',
11853     'params' => 'string iptcdata',
11854     'description' => 'Parse binary IPTC-data into associative array',
11855   ),
11856   'quoted_printable_decode' => 
11857   array (
11858     'return' => 'string',
11859     'params' => 'string str',
11860     'description' => 'Convert a quoted-printable string to an 8 bit string',
11861   ),
11862   'pack' => 
11863   array (
11864     'return' => 'string',
11865     'params' => 'string format, mixed arg1 [, mixed arg2 [, mixed ...]]',
11866     'description' => 'Takes one or more arguments and packs them into a binary string according to the format argument',
11867   ),
11868   'unpack' => 
11869   array (
11870     'return' => 'array',
11871     'params' => 'string format, string input',
11872     'description' => 'Unpack binary string into named array elements according to format argument',
11873   ),
11874   'base64_encode' => 
11875   array (
11876     'return' => 'string',
11877     'params' => 'string str',
11878     'description' => 'Encodes string using MIME base64 algorithm',
11879   ),
11880   'base64_decode' => 
11881   array (
11882     'return' => 'string',
11883     'params' => 'string str',
11884     'description' => 'Decodes string using MIME base64 algorithm',
11885   ),
11886   'gettype' => 
11887   array (
11888     'return' => 'string',
11889     'params' => 'mixed var',
11890     'description' => 'Returns the type of the variable',
11891   ),
11892   'settype' => 
11893   array (
11894     'return' => 'bool',
11895     'params' => 'mixed var, string type',
11896     'description' => 'Set the type of the variable',
11897   ),
11898   'intval' => 
11899   array (
11900     'return' => 'int',
11901     'params' => 'mixed var [, int base]',
11902     'description' => 'Get the integer value of a variable using the optional base for the conversion',
11903   ),
11904   'floatval' => 
11905   array (
11906     'return' => 'float',
11907     'params' => 'mixed var',
11908     'description' => 'Get the float value of a variable',
11909   ),
11910   'strval' => 
11911   array (
11912     'return' => 'string',
11913     'params' => 'mixed var',
11914     'description' => 'Get the string value of a variable',
11915   ),
11916   'is_null' => 
11917   array (
11918     'return' => 'bool',
11919     'params' => 'mixed var',
11920     'description' => 'Returns true if variable is null',
11921   ),
11922   'is_resource' => 
11923   array (
11924     'return' => 'bool',
11925     'params' => 'mixed var',
11926     'description' => 'Returns true if variable is a resource',
11927   ),
11928   'is_bool' => 
11929   array (
11930     'return' => 'bool',
11931     'params' => 'mixed var',
11932     'description' => 'Returns true if variable is a boolean',
11933   ),
11934   'is_long' => 
11935   array (
11936     'return' => 'bool',
11937     'params' => 'mixed var',
11938     'description' => 'Returns true if variable is a long (integer)',
11939   ),
11940   'is_float' => 
11941   array (
11942     'return' => 'bool',
11943     'params' => 'mixed var',
11944     'description' => 'Returns true if variable is float point',
11945   ),
11946   'is_string' => 
11947   array (
11948     'return' => 'bool',
11949     'params' => 'mixed var',
11950     'description' => 'Returns true if variable is a string',
11951   ),
11952   'is_array' => 
11953   array (
11954     'return' => 'bool',
11955     'params' => 'mixed var',
11956     'description' => 'Returns true if variable is an array',
11957   ),
11958   'is_object' => 
11959   array (
11960     'return' => 'bool',
11961     'params' => 'mixed var',
11962     'description' => 'Returns true if variable is an object',
11963   ),
11964   'is_numeric' => 
11965   array (
11966     'return' => 'bool',
11967     'params' => 'mixed value',
11968     'description' => 'Returns true if value is a number or a numeric string',
11969   ),
11970   'is_scalar' => 
11971   array (
11972     'return' => 'bool',
11973     'params' => 'mixed value',
11974     'description' => 'Returns true if value is a scalar',
11975   ),
11976   'is_callable' => 
11977   array (
11978     'return' => 'bool',
11979     'params' => 'mixed var [, bool syntax_only [, string callable_name]]',
11980     'description' => 'Returns true if var is callable.',
11981   ),
11982   'version_compare' => 
11983   array (
11984     'return' => 'int',
11985     'params' => 'string ver1, string ver2 [, string oper]',
11986     'description' => 'Compares two "PHP-standardized" version number strings',
11987   ),
11988   'exec' => 
11989   array (
11990     'return' => 'string',
11991     'params' => 'string command [, array &output [, int &return_value]]',
11992     'description' => 'Execute an external program',
11993   ),
11994   'system' => 
11995   array (
11996     'return' => 'int',
11997     'params' => 'string command [, int &return_value]',
11998     'description' => 'Execute an external program and display output',
11999   ),
12000   'passthru' => 
12001   array (
12002     'return' => 'void',
12003     'params' => 'string command [, int &return_value]',
12004     'description' => 'Execute an external program and display raw output',
12005   ),
12006   'escapeshellcmd' => 
12007   array (
12008     'return' => 'string',
12009     'params' => 'string command',
12010     'description' => 'Escape shell metacharacters',
12011   ),
12012   'escapeshellarg' => 
12013   array (
12014     'return' => 'string',
12015     'params' => 'string arg',
12016     'description' => 'Quote and escape an argument for use in a shell command',
12017   ),
12018   'shell_exec' => 
12019   array (
12020     'return' => 'string',
12021     'params' => 'string cmd',
12022     'description' => 'Execute command via shell and return complete output as string',
12023   ),
12024   'proc_nice' => 
12025   array (
12026     'return' => 'bool',
12027     'params' => 'int priority',
12028     'description' => 'Change the priority of the current process',
12029   ),
12030   'constant' => 
12031   array (
12032     'return' => 'mixed',
12033     'params' => 'string const_name',
12034     'description' => 'Given the name of a constant this function will return the constants associated value',
12035   ),
12036   'inet_ntop' => 
12037   array (
12038     'return' => 'string',
12039     'params' => 'string in_addr',
12040     'description' => 'Converts a packed inet address to a human readable IP address string',
12041   ),
12042   'inet_pton' => 
12043   array (
12044     'return' => 'string',
12045     'params' => 'string ip_address',
12046     'description' => 'Converts a human readable IP address to a packed binary string',
12047   ),
12048   'ip2long' => 
12049   array (
12050     'return' => 'int',
12051     'params' => 'string ip_address',
12052     'description' => 'Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address',
12053   ),
12054   'long2ip' => 
12055   array (
12056     'return' => 'string',
12057     'params' => 'int proper_address',
12058     'description' => 'Converts an (IPv4) Internet network address into a string in Internet standard dotted format',
12059   ),
12060   'getenv' => 
12061   array (
12062     'return' => 'string',
12063     'params' => 'string varname',
12064     'description' => 'Get the value of an environment variable',
12065   ),
12066   'putenv' => 
12067   array (
12068     'return' => 'bool',
12069     'params' => 'string setting',
12070     'description' => 'Set the value of an environment variable',
12071   ),
12072   'getopt' => 
12073   array (
12074     'return' => 'array',
12075     'params' => 'string options [, array longopts]',
12076     'description' => 'Get options from the command line argument list',
12077   ),
12078   'flush' => 
12079   array (
12080     'return' => 'void',
12081     'params' => 'void',
12082     'description' => 'Flush the output buffer',
12083   ),
12084   'sleep' => 
12085   array (
12086     'return' => 'void',
12087     'params' => 'int seconds',
12088     'description' => 'Delay for a given number of seconds',
12089   ),
12090   'usleep' => 
12091   array (
12092     'return' => 'void',
12093     'params' => 'int micro_seconds',
12094     'description' => 'Delay for a given number of micro seconds',
12095   ),
12096   'time_nanosleep' => 
12097   array (
12098     'return' => 'mixed',
12099     'params' => 'long seconds, long nanoseconds',
12100     'description' => 'Delay for a number of seconds and nano seconds',
12101   ),
12102   'time_sleep_until' => 
12103   array (
12104     'return' => 'mixed',
12105     'params' => 'float timestamp',
12106     'description' => 'Make the script sleep until the specified time',
12107   ),
12108   'get_current_user' => 
12109   array (
12110     'return' => 'string',
12111     'params' => 'void',
12112     'description' => 'Get the name of the owner of the current PHP script',
12113   ),
12114   'get_cfg_var' => 
12115   array (
12116     'return' => 'string',
12117     'params' => 'string option_name',
12118     'description' => 'Get the value of a PHP configuration option',
12119   ),
12120   'set_magic_quotes_runtime' => 
12121   array (
12122     'return' => 'bool',
12123     'params' => 'int new_setting',
12124     'description' => 'Set the current active configuration setting of magic_quotes_runtime and return previous',
12125   ),
12126   'get_magic_quotes_runtime' => 
12127   array (
12128     'return' => 'int',
12129     'params' => 'void',
12130     'description' => 'Get the current active configuration setting of magic_quotes_runtime',
12131   ),
12132   'get_magic_quotes_gpc' => 
12133   array (
12134     'return' => 'int',
12135     'params' => 'void',
12136     'description' => 'Get the current active configuration setting of magic_quotes_gpc',
12137   ),
12138   'error_log' => 
12139   array (
12140     'return' => 'bool',
12141     'params' => 'string message [, int message_type [, string destination [, string extra_headers]]]',
12142     'description' => 'Send an error message somewhere',
12143   ),
12144   'call_user_func' => 
12145   array (
12146     'return' => 'mixed',
12147     'params' => 'string function_name [, mixed parmeter] [, mixed ...]',
12148     'description' => 'Call a user function which is the first parameter',
12149   ),
12150   'call_user_func_array' => 
12151   array (
12152     'return' => 'mixed',
12153     'params' => 'string function_name, array parameters',
12154     'description' => 'Call a user function which is the first parameter with the arguments contained in array',
12155   ),
12156   'call_user_method' => 
12157   array (
12158     'return' => 'mixed',
12159     'params' => 'string method_name, mixed object [, mixed parameter] [, mixed ...]',
12160     'description' => 'Call a user method on a specific object or class',
12161   ),
12162   'call_user_method_array' => 
12163   array (
12164     'return' => 'mixed',
12165     'params' => 'string method_name, mixed object, array params',
12166     'description' => 'Call a user method on a specific object or class using a parameter array',
12167   ),
12168   'register_shutdown_function' => 
12169   array (
12170     'return' => 'void',
12171     'params' => 'string function_name',
12172     'description' => 'Register a user-level function to be called on request termination',
12173   ),
12174   'highlight_file' => 
12175   array (
12176     'return' => 'bool',
12177     'params' => 'string file_name [, bool return] ',
12178     'description' => 'Syntax highlight a source file',
12179   ),
12180   'php_strip_whitespace' => 
12181   array (
12182     'return' => 'string',
12183     'params' => 'string file_name',
12184     'description' => 'Return source with stripped comments and whitespace',
12185   ),
12186   'highlight_string' => 
12187   array (
12188     'return' => 'bool',
12189     'params' => 'string string [, bool return] ',
12190     'description' => 'Syntax highlight a string or optionally return it',
12191   ),
12192   'ini_get' => 
12193   array (
12194     'return' => 'string',
12195     'params' => 'string varname',
12196     'description' => 'Get a configuration option',
12197   ),
12198   'ini_get_all' => 
12199   array (
12200     'return' => 'array',
12201     'params' => '[string extension]',
12202     'description' => 'Get all configuration options',
12203   ),
12204   'ini_set' => 
12205   array (
12206     'return' => 'string',
12207     'params' => 'string varname, string newvalue',
12208     'description' => 'Set a configuration option, returns false on error and the old value of the configuration option on success',
12209   ),
12210   'ini_restore' => 
12211   array (
12212     'return' => 'void',
12213     'params' => 'string varname',
12214     'description' => 'Restore the value of a configuration option specified by varname',
12215   ),
12216   'set_include_path' => 
12217   array (
12218     'return' => 'string',
12219     'params' => 'string new_include_path',
12220     'description' => 'Sets the include_path configuration option',
12221   ),
12222   'get_include_path' => 
12223   array (
12224     'return' => 'string',
12225     'params' => '',
12226     'description' => 'Get the current include_path configuration option',
12227   ),
12228   'restore_include_path' => 
12229   array (
12230     'return' => 'void',
12231     'params' => '',
12232     'description' => 'Restore the value of the include_path configuration option',
12233   ),
12234   'print_r' => 
12235   array (
12236     'return' => 'mixed',
12237     'params' => 'mixed var [, bool return]',
12238     'description' => 'Prints out or returns information about the specified variable',
12239   ),
12240   'connection_aborted' => 
12241   array (
12242     'return' => 'int',
12243     'params' => 'void',
12244     'description' => 'Returns true if client disconnected',
12245   ),
12246   'connection_status' => 
12247   array (
12248     'return' => 'int',
12249     'params' => 'void',
12250     'description' => 'Returns the connection status bitfield',
12251   ),
12252   'ignore_user_abort' => 
12253   array (
12254     'return' => 'int',
12255     'params' => 'bool value',
12256     'description' => 'Set whether we want to ignore a user abort event or not',
12257   ),
12258   'getservbyname' => 
12259   array (
12260     'return' => 'int',
12261     'params' => 'string service, string protocol',
12262     'description' => 'Returns port associated with service. Protocol must be "tcp" or "udp"',
12263   ),
12264   'getservbyport' => 
12265   array (
12266     'return' => 'string',
12267     'params' => 'int port, string protocol',
12268     'description' => 'Returns service name associated with port. Protocol must be "tcp" or "udp"',
12269   ),
12270   'getprotobyname' => 
12271   array (
12272     'return' => 'int',
12273     'params' => 'string name',
12274     'description' => 'Returns protocol number associated with name as per /etc/protocols',
12275   ),
12276   'getprotobynumber' => 
12277   array (
12278     'return' => 'string',
12279     'params' => 'int proto',
12280     'description' => 'Returns protocol name associated with protocol number proto',
12281   ),
12282   'register_tick_function' => 
12283   array (
12284     'return' => 'bool',
12285     'params' => 'string function_name [, mixed arg [, mixed ... ]]',
12286     'description' => 'Registers a tick callback function',
12287   ),
12288   'unregister_tick_function' => 
12289   array (
12290     'return' => 'void',
12291     'params' => 'string function_name',
12292     'description' => 'Unregisters a tick callback function',
12293   ),
12294   'is_uploaded_file' => 
12295   array (
12296     'return' => 'bool',
12297     'params' => 'string path',
12298     'description' => 'Check if file was created by rfc1867 upload',
12299   ),
12300   'move_uploaded_file' => 
12301   array (
12302     'return' => 'bool',
12303     'params' => 'string path, string new_path',
12304     'description' => 'Move a file if and only if it was created by an upload',
12305   ),
12306   'parse_ini_file' => 
12307   array (
12308     'return' => 'array',
12309     'params' => 'string filename [, bool process_sections]',
12310     'description' => 'Parse configuration file',
12311   ),
12312   'import_request_variables' => 
12313   array (
12314     'return' => 'bool',
12315     'params' => 'string types [, string prefix]',
12316     'description' => 'Import GET/POST/Cookie variables into the global scope',
12317   ),
12318   'define_syslog_variables' => 
12319   array (
12320     'return' => 'void',
12321     'params' => 'void',
12322     'description' => 'Initializes all syslog-related variables',
12323   ),
12324   'openlog' => 
12325   array (
12326     'return' => 'bool',
12327     'params' => 'string ident, int option, int facility',
12328     'description' => 'Open connection to system logger',
12329   ),
12330   'closelog' => 
12331   array (
12332     'return' => 'bool',
12333     'params' => 'void',
12334     'description' => 'Close connection to system logger',
12335   ),
12336   'syslog' => 
12337   array (
12338     'return' => 'bool',
12339     'params' => 'int priority, string message',
12340     'description' => 'Generate a system log message',
12341   ),
12342   'phpinfo' => 
12343   array (
12344     'return' => 'void',
12345     'params' => '[int what]',
12346     'description' => 'Output a page of useful information about PHP and the current request',
12347   ),
12348   'phpversion' => 
12349   array (
12350     'return' => 'string',
12351     'params' => '[string extension]',
12352     'description' => 'Return the current PHP version',
12353   ),
12354   'phpcredits' => 
12355   array (
12356     'return' => 'void',
12357     'params' => '[int flag]',
12358     'description' => 'Prints the list of people who\'ve contributed to the PHP project',
12359   ),
12360   'php_logo_guid' => 
12361   array (
12362     'return' => 'string',
12363     'params' => 'void',
12364     'description' => 'Return the special ID used to request the PHP logo in phpinfo screens',
12365   ),
12366   'php_real_logo_guid' => 
12367   array (
12368     'return' => 'string',
12369     'params' => 'void',
12370     'description' => 'Return the special ID used to request the PHP logo in phpinfo screens',
12371   ),
12372   'php_egg_logo_guid' => 
12373   array (
12374     'return' => 'string',
12375     'params' => 'void',
12376     'description' => 'Return the special ID used to request the PHP logo in phpinfo screens',
12377   ),
12378   'zend_logo_guid' => 
12379   array (
12380     'return' => 'string',
12381     'params' => 'void',
12382     'description' => 'Return the special ID used to request the Zend logo in phpinfo screens',
12383   ),
12384   'php_sapi_name' => 
12385   array (
12386     'return' => 'string',
12387     'params' => 'void',
12388     'description' => 'Return the current SAPI module name',
12389   ),
12390   'php_uname' => 
12391   array (
12392     'return' => 'string',
12393     'params' => 'void',
12394     'description' => 'Return information about the system PHP was built on',
12395   ),
12396   'php_ini_scanned_files' => 
12397   array (
12398     'return' => 'string',
12399     'params' => 'void',
12400     'description' => 'Return comma-separated string of .ini files parsed from the additional ini dir',
12401   ),
12402   'levenshtein' => 
12403   array (
12404     'return' => 'int',
12405     'params' => 'string str1, string str2',
12406     'description' => 'Calculate Levenshtein distance between two strings',
12407   ),
12408   'lcg_value' => 
12409   array (
12410     'return' => 'float',
12411     'params' => '',
12412     'description' => 'Returns a value from the combined linear congruential generator',
12413   ),
12414   'http_build_query' => 
12415   array (
12416     'return' => 'string',
12417     'params' => 'mixed formdata [, string prefix [, string arg_separator]]',
12418     'description' => 'Generates a form-encoded query string from an associative array or object.',
12419   ),
12420   'microtime' => 
12421   array (
12422     'return' => 'mixed',
12423     'params' => '[bool get_as_float]',
12424     'description' => 'Returns either a string or a float containing the current time in seconds and microseconds',
12425   ),
12426   'gettimeofday' => 
12427   array (
12428     'return' => 'array',
12429     'params' => '[bool get_as_float]',
12430     'description' => 'Returns the current time as array',
12431   ),
12432   'getrusage' => 
12433   array (
12434     'return' => 'array',
12435     'params' => '[int who]',
12436     'description' => 'Returns an array of usage statistics',
12437   ),
12438   'metaphone' => 
12439   array (
12440     'return' => 'string',
12441     'params' => 'string text, int phones',
12442     'description' => 'Break english phrases down into their phonemes',
12443   ),
12444   'htmlspecialchars' => 
12445   array (
12446     'return' => 'string',
12447     'params' => 'string string [, int quote_style]',
12448     'description' => 'Convert special HTML entities back to characters',
12449   ),
12450   'html_entity_decode' => 
12451   array (
12452     'return' => 'string',
12453     'params' => 'string string [, int quote_style][, string charset]',
12454     'description' => 'Convert all HTML entities to their applicable characters',
12455   ),
12456   'htmlentities' => 
12457   array (
12458     'return' => 'string',
12459     'params' => 'string string [, int quote_style][, string charset]',
12460     'description' => 'Convert all applicable characters to HTML entities',
12461   ),
12462   'get_html_translation_table' => 
12463   array (
12464     'return' => 'array',
12465     'params' => '[int table [, int quote_style]]',
12466     'description' => 'Returns the internal translation table used by htmlspecialchars and htmlentities',
12467   ),
12468   'stream_bucket_make_writeable' => 
12469   array (
12470     'return' => 'object',
12471     'params' => 'resource brigade',
12472     'description' => 'Return a bucket object from the brigade for operating on',
12473   ),
12474   'stream_bucket_prepend' => 
12475   array (
12476     'return' => 'void',
12477     'params' => 'resource brigade, resource bucket',
12478     'description' => 'Prepend bucket to brigade',
12479   ),
12480   'stream_bucket_append' => 
12481   array (
12482     'return' => 'void',
12483     'params' => 'resource brigade, resource bucket',
12484     'description' => 'Append bucket to brigade',
12485   ),
12486   'stream_bucket_new' => 
12487   array (
12488     'return' => 'resource',
12489     'params' => 'resource stream, string buffer',
12490     'description' => 'Create a new bucket for use on the current stream',
12491   ),
12492   'stream_get_filters' => 
12493   array (
12494     'return' => 'array',
12495     'params' => 'void',
12496     'description' => 'Returns a list of registered filters',
12497   ),
12498   'stream_filter_register' => 
12499   array (
12500     'return' => 'bool',
12501     'params' => 'string filtername, string classname',
12502     'description' => 'Registers a custom filter handler class',
12503   ),
12504   'sha1' => 
12505   array (
12506     'return' => 'string',
12507     'params' => 'string str [, bool raw_output]',
12508     'description' => 'Calculate the sha1 hash of a string',
12509   ),
12510   'sha1_file' => 
12511   array (
12512     'return' => 'string',
12513     'params' => 'string filename [, bool raw_output]',
12514     'description' => 'Calculate the sha1 hash of given filename',
12515   ),
12516   'image_type_to_mime_type' => 
12517   array (
12518     'return' => 'string',
12519     'params' => 'int imagetype',
12520     'description' => 'Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype',
12521   ),
12522   'image_type_to_extension' => 
12523   array (
12524     'return' => 'string',
12525     'params' => 'int imagetype [, bool include_dot]',
12526     'description' => 'Get file extension for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype',
12527   ),
12528   'getimagesize' => 
12529   array (
12530     'return' => 'array',
12531     'params' => 'string imagefile [, array info]',
12532     'description' => 'Get the size of an image as 4-element array',
12533   ),
12534   'uniqid' => 
12535   array (
12536     'return' => 'string',
12537     'params' => '[string prefix , bool more_entropy]',
12538     'description' => 'Generates a unique ID',
12539   ),
12540   'parse_url' => 
12541   array (
12542     'return' => 'mixed',
12543     'params' => 'string url, [int url_component]',
12544     'description' => 'Parse a URL and return its components',
12545   ),
12546   'urlencode' => 
12547   array (
12548     'return' => 'string',
12549     'params' => 'string str',
12550     'description' => 'URL-encodes string',
12551   ),
12552   'urldecode' => 
12553   array (
12554     'return' => 'string',
12555     'params' => 'string str',
12556     'description' => 'Decodes URL-encoded string',
12557   ),
12558   'rawurlencode' => 
12559   array (
12560     'return' => 'string',
12561     'params' => 'string str',
12562     'description' => 'URL-encodes string',
12563   ),
12564   'rawurldecode' => 
12565   array (
12566     'return' => 'string',
12567     'params' => 'string str',
12568     'description' => 'Decodes URL-encodes string',
12569   ),
12570   'get_headers' => 
12571   array (
12572     'return' => 'array',
12573     'params' => 'string url',
12574     'description' => 'fetches all the headers sent by the server in response to a HTTP request',
12575   ),
12576   'uuencode' => 
12577   array (
12578     'return' => 'string',
12579     'params' => 'string data',
12580     'description' => 'uuencode a string',
12581   ),
12582   'uudecode' => 
12583   array (
12584     'return' => 'string',
12585     'params' => 'string data',
12586     'description' => 'decode a uuencoded string',
12587   ),
12588   'flock' => 
12589   array (
12590     'return' => 'bool',
12591     'params' => 'resource fp, int operation [, int &wouldblock]',
12592     'description' => 'Portable file locking',
12593   ),
12594   'get_meta_tags' => 
12595   array (
12596     'return' => 'array',
12597     'params' => 'string filename [, bool use_include_path]',
12598     'description' => 'Extracts all meta tag content attributes from a file and returns an array',
12599   ),
12600   'file_get_contents' => 
12601   array (
12602     'return' => 'string',
12603     'params' => 'string filename [, bool use_include_path [, resource context [, long offset [, long maxlen]]]]',
12604     'description' => 'Read the entire file into a string',
12605   ),
12606   'file_put_contents' => 
12607   array (
12608     'return' => 'int',
12609     'params' => 'string file, mixed data [, int flags [, resource context]]',
12610     'description' => 'Write/Create a file with contents data and return the number of bytes written',
12611   ),
12612   'file' => 
12613   array (
12614     'return' => 'array',
12615     'params' => 'string filename [, int flags[, resource context]]',
12616     'description' => 'Read entire file into an array',
12617   ),
12618   'tempnam' => 
12619   array (
12620     'return' => 'string',
12621     'params' => 'string dir, string prefix',
12622     'description' => 'Create a unique filename in a directory',
12623   ),
12624   'tmpfile' => 
12625   array (
12626     'return' => 'resource',
12627     'params' => 'void',
12628     'description' => 'Create a temporary file that will be deleted automatically after use',
12629   ),
12630   'fopen' => 
12631   array (
12632     'return' => 'resource',
12633     'params' => 'string filename, string mode [, bool use_include_path [, resource context]]',
12634     'description' => 'Open a file or a URL and return a file pointer',
12635   ),
12636   'fclose' => 
12637   array (
12638     'return' => 'bool',
12639     'params' => 'resource fp',
12640     'description' => 'Close an open file pointer',
12641   ),
12642   'popen' => 
12643   array (
12644     'return' => 'resource',
12645     'params' => 'string command, string mode',
12646     'description' => 'Execute a command and open either a read or a write pipe to it',
12647   ),
12648   'pclose' => 
12649   array (
12650     'return' => 'int',
12651     'params' => 'resource fp',
12652     'description' => 'Close a file pointer opened by popen()',
12653   ),
12654   'feof' => 
12655   array (
12656     'return' => 'bool',
12657     'params' => 'resource fp',
12658     'description' => 'Test for end-of-file on a file pointer',
12659   ),
12660   'fgets' => 
12661   array (
12662     'return' => 'string',
12663     'params' => 'resource fp[, int length]',
12664     'description' => 'Get a line from file pointer',
12665   ),
12666   'fgetc' => 
12667   array (
12668     'return' => 'string',
12669     'params' => 'resource fp',
12670     'description' => 'Get a character from file pointer',
12671   ),
12672   'fgetss' => 
12673   array (
12674     'return' => 'string',
12675     'params' => 'resource fp [, int length, string allowable_tags]',
12676     'description' => 'Get a line from file pointer and strip HTML tags',
12677   ),
12678   'fscanf' => 
12679   array (
12680     'return' => 'mixed',
12681     'params' => 'resource stream, string format [, string ...]',
12682     'description' => 'Implements a mostly ANSI compatible fscanf()',
12683   ),
12684   'fwrite' => 
12685   array (
12686     'return' => 'int',
12687     'params' => 'resource fp, string str [, int length]',
12688     'description' => 'Binary-safe file write',
12689   ),
12690   'fflush' => 
12691   array (
12692     'return' => 'bool',
12693     'params' => 'resource fp',
12694     'description' => 'Flushes output',
12695   ),
12696   'rewind' => 
12697   array (
12698     'return' => 'bool',
12699     'params' => 'resource fp',
12700     'description' => 'Rewind the position of a file pointer',
12701   ),
12702   'ftell' => 
12703   array (
12704     'return' => 'int',
12705     'params' => 'resource fp',
12706     'description' => 'Get file pointer\'s read/write position',
12707   ),
12708   'fseek' => 
12709   array (
12710     'return' => 'int',
12711     'params' => 'resource fp, int offset [, int whence]',
12712     'description' => 'Seek on a file pointer',
12713   ),
12714   'mkdir' => 
12715   array (
12716     'return' => 'bool',
12717     'params' => 'string pathname [, int mode [, bool recursive [, resource context]]]',
12718     'description' => 'Create a directory',
12719   ),
12720   'rmdir' => 
12721   array (
12722     'return' => 'bool',
12723     'params' => 'string dirname[, resource context]',
12724     'description' => 'Remove a directory',
12725   ),
12726   'readfile' => 
12727   array (
12728     'return' => 'int',
12729     'params' => 'string filename [, bool use_include_path[, resource context]]',
12730     'description' => 'Output a file or a URL',
12731   ),
12732   'umask' => 
12733   array (
12734     'return' => 'int',
12735     'params' => '[int mask]',
12736     'description' => 'Return or change the umask',
12737   ),
12738   'fpassthru' => 
12739   array (
12740     'return' => 'int',
12741     'params' => 'resource fp',
12742     'description' => 'Output all remaining data from a file pointer',
12743   ),
12744   'rename' => 
12745   array (
12746     'return' => 'bool',
12747     'params' => 'string old_name, string new_name[, resource context]',
12748     'description' => 'Rename a file',
12749   ),
12750   'unlink' => 
12751   array (
12752     'return' => 'bool',
12753     'params' => 'string filename[, context context]',
12754     'description' => 'Delete a file',
12755   ),
12756   'ftruncate' => 
12757   array (
12758     'return' => 'bool',
12759     'params' => 'resource fp, int size',
12760     'description' => 'Truncate file to \'size\' length',
12761   ),
12762   'fstat' => 
12763   array (
12764     'return' => 'array',
12765     'params' => 'resource fp',
12766     'description' => 'Stat() on a filehandle',
12767   ),
12768   'copy' => 
12769   array (
12770     'return' => 'bool',
12771     'params' => 'string source_file, string destination_file',
12772     'description' => 'Copy a file',
12773   ),
12774   'fread' => 
12775   array (
12776     'return' => 'string',
12777     'params' => 'resource fp, int length',
12778     'description' => 'Binary-safe file read',
12779   ),
12780   'fputcsv' => 
12781   array (
12782     'return' => 'int',
12783     'params' => 'resource fp, array fields [, string delimiter [, string enclosure]]',
12784     'description' => 'Format line as CSV and write to file pointer',
12785   ),
12786   'fgetcsv' => 
12787   array (
12788     'return' => 'array',
12789     'params' => 'resource fp [,int length [, string delimiter [, string enclosure]]]',
12790     'description' => 'Get line from file pointer and parse for CSV fields',
12791   ),
12792   'realpath' => 
12793   array (
12794     'return' => 'string',
12795     'params' => 'string path',
12796     'description' => 'Return the resolved path',
12797   ),
12798   'fnmatch' => 
12799   array (
12800     'return' => 'bool',
12801     'params' => 'string pattern, string filename [, int flags]',
12802     'description' => 'Match filename against pattern',
12803   ),
12804   'xmlwriter_set_indent' => 
12805   array (
12806     'return' => 'bool',
12807     'params' => 'resource xmlwriter, bool indent',
12808     'description' => 'Toggle indentation on/off - returns FALSE on error',
12809   ),
12810   'xmlwriter_set_indent_string' => 
12811   array (
12812     'return' => 'bool',
12813     'params' => 'resource xmlwriter, string indentString',
12814     'description' => 'Set string used for indenting - returns FALSE on error',
12815   ),
12816   'xmlwriter_start_attribute' => 
12817   array (
12818     'return' => 'bool',
12819     'params' => 'resource xmlwriter, string name',
12820     'description' => 'Create start attribute - returns FALSE on error',
12821   ),
12822   'xmlwriter_end_attribute' => 
12823   array (
12824     'return' => 'bool',
12825     'params' => 'resource xmlwriter',
12826     'description' => 'End attribute - returns FALSE on error',
12827   ),
12828   'xmlwriter_start_attribute_ns' => 
12829   array (
12830     'return' => 'bool',
12831     'params' => 'resource xmlwriter, string prefix, string name, string uri',
12832     'description' => 'Create start namespaced attribute - returns FALSE on error',
12833   ),
12834   'xmlwriter_write_attribute' => 
12835   array (
12836     'return' => 'bool',
12837     'params' => 'resource xmlwriter, string name, string content',
12838     'description' => 'Write full attribute - returns FALSE on error',
12839   ),
12840   'xmlwriter_write_attribute_ns' => 
12841   array (
12842     'return' => 'bool',
12843     'params' => 'resource xmlwriter, string prefix, string name, string uri, string content',
12844     'description' => 'Write full namespaced attribute - returns FALSE on error',
12845   ),
12846   'xmlwriter_start_element' => 
12847   array (
12848     'return' => 'bool',
12849     'params' => 'resource xmlwriter, string name',
12850     'description' => 'Create start element tag - returns FALSE on error',
12851   ),
12852   'xmlwriter_start_element_ns' => 
12853   array (
12854     'return' => 'bool',
12855     'params' => 'resource xmlwriter, string prefix, string name, string uri',
12856     'description' => 'Create start namespaced element tag - returns FALSE on error',
12857   ),
12858   'xmlwriter_end_element' => 
12859   array (
12860     'return' => 'bool',
12861     'params' => 'resource xmlwriter',
12862     'description' => 'End current element - returns FALSE on error',
12863   ),
12864   'xmlwriter_write_element' => 
12865   array (
12866     'return' => 'bool',
12867     'params' => 'resource xmlwriter, string name, string content',
12868     'description' => 'Write full element tag - returns FALSE on error',
12869   ),
12870   'xmlwriter_write_element_ns' => 
12871   array (
12872     'return' => 'bool',
12873     'params' => 'resource xmlwriter, string prefix, string name, string uri, string content',
12874     'description' => 'Write full namesapced element tag - returns FALSE on error',
12875   ),
12876   'xmlwriter_start_pi' => 
12877   array (
12878     'return' => 'bool',
12879     'params' => 'resource xmlwriter, string target',
12880     'description' => 'Create start PI tag - returns FALSE on error',
12881   ),
12882   'xmlwriter_end_pi' => 
12883   array (
12884     'return' => 'bool',
12885     'params' => 'resource xmlwriter',
12886     'description' => 'End current PI - returns FALSE on error',
12887   ),
12888   'xmlwriter_write_pi' => 
12889   array (
12890     'return' => 'bool',
12891     'params' => 'resource xmlwriter, string target, string content',
12892     'description' => 'Write full PI tag - returns FALSE on error',
12893   ),
12894   'xmlwriter_start_cdata' => 
12895   array (
12896     'return' => 'bool',
12897     'params' => 'resource xmlwriter',
12898     'description' => 'Create start CDATA tag - returns FALSE on error',
12899   ),
12900   'xmlwriter_end_cdata' => 
12901   array (
12902     'return' => 'bool',
12903     'params' => 'resource xmlwriter',
12904     'description' => 'End current CDATA - returns FALSE on error',
12905   ),
12906   'xmlwriter_write_cdata' => 
12907   array (
12908     'return' => 'bool',
12909     'params' => 'resource xmlwriter, string content',
12910     'description' => 'Write full CDATA tag - returns FALSE on error',
12911   ),
12912   'xmlwriter_text' => 
12913   array (
12914     'return' => 'bool',
12915     'params' => 'resource xmlwriter, string content',
12916     'description' => 'Write text - returns FALSE on error',
12917   ),
12918   'xmlwriter_start_comment' => 
12919   array (
12920     'return' => 'bool',
12921     'params' => 'resource xmlwriter',
12922     'description' => 'Create start comment - returns FALSE on error',
12923   ),
12924   'xmlwriter_end_comment' => 
12925   array (
12926     'return' => 'bool',
12927     'params' => 'resource xmlwriter',
12928     'description' => 'Create end comment - returns FALSE on error',
12929   ),
12930   'xmlwriter_write_comment' => 
12931   array (
12932     'return' => 'bool',
12933     'params' => 'resource xmlwriter, string content',
12934     'description' => 'Write full comment tag - returns FALSE on error',
12935   ),
12936   'xmlwriter_start_document' => 
12937   array (
12938     'return' => 'bool',
12939     'params' => 'resource xmlwriter, string version, string encoding, string standalone',
12940     'description' => 'Create document tag - returns FALSE on error',
12941   ),
12942   'xmlwriter_end_document' => 
12943   array (
12944     'return' => 'bool',
12945     'params' => 'resource xmlwriter',
12946     'description' => 'End current document - returns FALSE on error',
12947   ),
12948   'xmlwriter_start_dtd' => 
12949   array (
12950     'return' => 'bool',
12951     'params' => 'resource xmlwriter, string name, string pubid, string sysid',
12952     'description' => 'Create start DTD tag - returns FALSE on error',
12953   ),
12954   'xmlwriter_end_dtd' => 
12955   array (
12956     'return' => 'bool',
12957     'params' => 'resource xmlwriter',
12958     'description' => 'End current DTD - returns FALSE on error',
12959   ),
12960   'xmlwriter_write_dtd' => 
12961   array (
12962     'return' => 'bool',
12963     'params' => 'resource xmlwriter, string name, string pubid, string sysid, string subset',
12964     'description' => 'Write full DTD tag - returns FALSE on error',
12965   ),
12966   'xmlwriter_start_dtd_element' => 
12967   array (
12968     'return' => 'bool',
12969     'params' => 'resource xmlwriter, string name',
12970     'description' => 'Create start DTD element - returns FALSE on error',
12971   ),
12972   'xmlwriter_end_dtd_element' => 
12973   array (
12974     'return' => 'bool',
12975     'params' => 'resource xmlwriter',
12976     'description' => 'End current DTD element - returns FALSE on error',
12977   ),
12978   'xmlwriter_write_dtd_element' => 
12979   array (
12980     'return' => 'bool',
12981     'params' => 'resource xmlwriter, string name, string content',
12982     'description' => 'Write full DTD element tag - returns FALSE on error',
12983   ),
12984   'xmlwriter_start_dtd_attlist' => 
12985   array (
12986     'return' => 'bool',
12987     'params' => 'resource xmlwriter, string name',
12988     'description' => 'Create start DTD AttList - returns FALSE on error',
12989   ),
12990   'xmlwriter_end_dtd_attlist' => 
12991   array (
12992     'return' => 'bool',
12993     'params' => 'resource xmlwriter',
12994     'description' => 'End current DTD AttList - returns FALSE on error',
12995   ),
12996   'xmlwriter_write_dtd_attlist' => 
12997   array (
12998     'return' => 'bool',
12999     'params' => 'resource xmlwriter, string name, string content',
13000     'description' => 'Write full DTD AttList tag - returns FALSE on error',
13001   ),
13002   'xmlwriter_start_dtd_entity' => 
13003   array (
13004     'return' => 'bool',
13005     'params' => 'resource xmlwriter, string name, bool isparam',
13006     'description' => 'Create start DTD Entity - returns FALSE on error',
13007   ),
13008   'xmlwriter_end_dtd_entity' => 
13009   array (
13010     'return' => 'bool',
13011     'params' => 'resource xmlwriter',
13012     'description' => 'End current DTD Entity - returns FALSE on error',
13013   ),
13014   'xmlwriter_write_dtd_entity' => 
13015   array (
13016     'return' => 'bool',
13017     'params' => 'resource xmlwriter, string name, string content',
13018     'description' => 'Write full DTD Entity tag - returns FALSE on error',
13019   ),
13020   'xmlwriter_open_uri' => 
13021   array (
13022     'return' => 'resource',
13023     'params' => 'resource xmlwriter, string source',
13024     'description' => 'Create new xmlwriter using source uri for output',
13025   ),
13026   'xmlwriter_open_memory' => 
13027   array (
13028     'return' => 'resource',
13029     'params' => '',
13030     'description' => 'Create new xmlwriter using memory for string output',
13031   ),
13032   'xmlwriter_output_memory' => 
13033   array (
13034     'return' => 'string',
13035     'params' => 'resource xmlwriter [,bool flush]',
13036     'description' => 'Output current buffer as string',
13037   ),
13038   'xmlwriter_flush' => 
13039   array (
13040     'return' => 'mixed',
13041     'params' => 'resource xmlwriter [,bool empty]',
13042     'description' => 'Output current buffer',
13043   ),
13044   'easter_date' => 
13045   array (
13046     'return' => 'int',
13047     'params' => '[int year]',
13048     'description' => 'Return the timestamp of midnight on Easter of a given year (defaults to current year)',
13049   ),
13050   'easter_days' => 
13051   array (
13052     'return' => 'int',
13053     'params' => '[int year, [int method]]',
13054     'description' => 'Return the number of days after March 21 that Easter falls on for a given year (defaults to current year)',
13055   ),
13056   'cal_info' => 
13057   array (
13058     'return' => 'array',
13059     'params' => 'int calendar',
13060     'description' => 'Returns information about a particular calendar',
13061   ),
13062   'cal_days_in_month' => 
13063   array (
13064     'return' => 'int',
13065     'params' => 'int calendar, int month, int year',
13066     'description' => 'Returns the number of days in a month for a given year and calendar',
13067   ),
13068   'cal_to_jd' => 
13069   array (
13070     'return' => 'int',
13071     'params' => 'int calendar, int month, int day, int year',
13072     'description' => 'Converts from a supported calendar to Julian Day Count',
13073   ),
13074   'cal_from_jd' => 
13075   array (
13076     'return' => 'array',
13077     'params' => 'int jd, int calendar',
13078     'description' => 'Converts from Julian Day Count to a supported calendar and return extended information',
13079   ),
13080   'jdtogregorian' => 
13081   array (
13082     'return' => 'string',
13083     'params' => 'int juliandaycount',
13084     'description' => 'Converts a julian day count to a gregorian calendar date',
13085   ),
13086   'gregoriantojd' => 
13087   array (
13088     'return' => 'int',
13089     'params' => 'int month, int day, int year',
13090     'description' => 'Converts a gregorian calendar date to julian day count',
13091   ),
13092   'jdtojulian' => 
13093   array (
13094     'return' => 'string',
13095     'params' => 'int juliandaycount',
13096     'description' => 'Convert a julian day count to a julian calendar date',
13097   ),
13098   'juliantojd' => 
13099   array (
13100     'return' => 'int',
13101     'params' => 'int month, int day, int year',
13102     'description' => 'Converts a julian calendar date to julian day count',
13103   ),
13104   'jdtojewish' => 
13105   array (
13106     'return' => 'string',
13107     'params' => 'int juliandaycount [, bool hebrew [, int fl]]',
13108     'description' => 'Converts a julian day count to a jewish calendar date',
13109   ),
13110   'jewishtojd' => 
13111   array (
13112     'return' => 'int',
13113     'params' => 'int month, int day, int year',
13114     'description' => 'Converts a jewish calendar date to a julian day count',
13115   ),
13116   'jdtofrench' => 
13117   array (
13118     'return' => 'string',
13119     'params' => 'int juliandaycount',
13120     'description' => 'Converts a julian day count to a french republic calendar date',
13121   ),
13122   'frenchtojd' => 
13123   array (
13124     'return' => 'int',
13125     'params' => 'int month, int day, int year',
13126     'description' => 'Converts a french republic calendar date to julian day count',
13127   ),
13128   'jddayofweek' => 
13129   array (
13130     'return' => 'mixed',
13131     'params' => 'int juliandaycount [, int mode]',
13132     'description' => 'Returns name or number of day of week from julian day count',
13133   ),
13134   'jdmonthname' => 
13135   array (
13136     'return' => 'string',
13137     'params' => 'int juliandaycount, int mode',
13138     'description' => 'Returns name of month for julian day count',
13139   ),
13140   'unixtojd' => 
13141   array (
13142     'return' => 'int',
13143     'params' => '[int timestamp]',
13144     'description' => 'Convert UNIX timestamp to Julian Day',
13145   ),
13146   'jdtounix' => 
13147   array (
13148     'return' => 'int',
13149     'params' => 'int jday',
13150     'description' => 'Convert Julian Day to UNIX timestamp',
13151   ),
13152   'mime_content_type' => 
13153   array (
13154     'return' => 'string',
13155     'params' => 'string filename|resource stream',
13156     'description' => 'Return content-type for file',
13157   ),
13158   'exif_tagname' => 
13159   array (
13160     'return' => 'string',
13161     'params' => 'index',
13162     'description' => 'Get headername for index or false if not defined',
13163   ),
13164   'exif_read_data' => 
13165   array (
13166     'return' => 'array',
13167     'params' => 'string filename [, sections_needed [, sub_arrays[, read_thumbnail]]]',
13168     'description' => 'Reads header data from the JPEG/TIFF image filename and optionally reads the internal thumbnails',
13169   ),
13170   'exif_thumbnail' => 
13171   array (
13172     'return' => 'string',
13173     'params' => 'string filename [, &width, &height [, &imagetype]]',
13174     'description' => 'Reads the embedded thumbnail',
13175   ),
13176   'exif_imagetype' => 
13177   array (
13178     'return' => 'int',
13179     'params' => 'string imagefile',
13180     'description' => 'Get the type of an image',
13181   ),
13182   'ming_setscale' => 
13183   array (
13184     'return' => 'void',
13185     'params' => 'int scale',
13186     'description' => 'Set scale (?)',
13187   ),
13188   'ming_useswfversion' => 
13189   array (
13190     'return' => 'void',
13191     'params' => 'int version',
13192     'description' => 'Use SWF version (?)',
13193   ),
13194   'ming_useconstants' => 
13195   array (
13196     'return' => 'void',
13197     'params' => 'int use',
13198     'description' => 'Use constant pool (?)',
13199   ),
13200   'swfaction::__construct' => 
13201   array (
13202     'return' => 'void',
13203     'params' => 'string',
13204     'description' => 'Creates a new SWFAction object, compiling the given script',
13205   ),
13206   'swfbitmap::__construct' => 
13207   array (
13208     'return' => 'void',
13209     'params' => 'mixed file [, mixed maskfile]',
13210     'description' => 'Creates a new SWFBitmap object from jpg (with optional mask) or dbl file',
13211   ),
13212   'swfbitmap::getWidth' => 
13213   array (
13214     'return' => 'float',
13215     'params' => '',
13216     'description' => 'Returns the width of this bitmap',
13217   ),
13218   'swfbitmap::getHeight' => 
13219   array (
13220     'return' => 'float',
13221     'params' => '',
13222     'description' => 'Returns the height of this bitmap',
13223   ),
13224   'swfbutton::__construct' => 
13225   array (
13226     'return' => 'void',
13227     'params' => '',
13228     'description' => 'Creates a new SWFButton object',
13229   ),
13230   'swfbutton::setHit' => 
13231   array (
13232     'return' => 'void',
13233     'params' => 'object SWFCharacter',
13234     'description' => 'Sets the character for this button\'s hit test state',
13235   ),
13236   'swfbutton::setOver' => 
13237   array (
13238     'return' => 'void',
13239     'params' => 'object SWFCharacter',
13240     'description' => 'Sets the character for this button\'s over state',
13241   ),
13242   'swfbutton::setUp' => 
13243   array (
13244     'return' => 'void',
13245     'params' => 'object SWFCharacter',
13246     'description' => 'Sets the character for this button\'s up state',
13247   ),
13248   'swfbutton::setDown' => 
13249   array (
13250     'return' => 'void',
13251     'params' => 'object SWFCharacter',
13252     'description' => 'Sets the character for this button\'s down state',
13253   ),
13254   'swfbutton::addShape' => 
13255   array (
13256     'return' => 'void',
13257     'params' => 'object SWFCharacter, int flags',
13258     'description' => 'Sets the character to display for the condition described in flags',
13259   ),
13260   'swfbutton::setMenu' => 
13261   array (
13262     'return' => 'void',
13263     'params' => 'int flag',
13264     'description' => 'enable track as menu button behaviour',
13265   ),
13266   'swfbutton::setAction' => 
13267   array (
13268     'return' => 'void',
13269     'params' => 'object SWFAction',
13270     'description' => 'Sets the action to perform when button is pressed',
13271   ),
13272   'swfbutton::addASound' => 
13273   array (
13274     'return' => 'SWFSoundInstance',
13275     'params' => 'SWFSound sound, int flags',
13276     'description' => 'associates a sound with a button transitionNOTE: the transitions are all wrong _UP, _OVER, _DOWN _HIT',
13277   ),
13278   'swfbutton::addAction' => 
13279   array (
13280     'return' => 'void',
13281     'params' => 'object SWFAction, int flags',
13282     'description' => 'Sets the action to perform when conditions described in flags is met',
13283   ),
13284   'ming_keypress' => 
13285   array (
13286     'return' => 'int',
13287     'params' => 'string str',
13288     'description' => 'Returns the action flag for keyPress(char)',
13289   ),
13290   'swfdisplayitem::moveTo' => 
13291   array (
13292     'return' => 'void',
13293     'params' => 'int x, int y',
13294     'description' => 'Moves this SWFDisplayItem to movie coordinates (x, y)',
13295   ),
13296   'swfdisplayitem::move' => 
13297   array (
13298     'return' => 'void',
13299     'params' => 'float dx, float dy',
13300     'description' => 'Displaces this SWFDisplayItem by (dx, dy) in movie coordinates',
13301   ),
13302   'swfdisplayitem::scaleTo' => 
13303   array (
13304     'return' => 'void',
13305     'params' => 'float xScale [, float yScale]',
13306     'description' => 'Scales this SWFDisplayItem by xScale in the x direction, yScale in the y, or both to xScale if only one arg',
13307   ),
13308   'swfdisplayitem::scale' => 
13309   array (
13310     'return' => 'void',
13311     'params' => 'float xScale, float yScale',
13312     'description' => 'Multiplies this SWFDisplayItem\'s current x scale by xScale, its y scale by yScale',
13313   ),
13314   'swfdisplayitem::rotateTo' => 
13315   array (
13316     'return' => 'void',
13317     'params' => 'float degrees',
13318     'description' => 'Rotates this SWFDisplayItem the given (clockwise) degrees from its original orientation',
13319   ),
13320   'swfdisplayitem::rotate' => 
13321   array (
13322     'return' => 'void',
13323     'params' => 'float degrees',
13324     'description' => 'Rotates this SWFDisplayItem the given (clockwise) degrees from its current orientation',
13325   ),
13326   'swfdisplayitem::skewXTo' => 
13327   array (
13328     'return' => 'void',
13329     'params' => 'float xSkew',
13330     'description' => 'Sets this SWFDisplayItem\'s x skew value to xSkew',
13331   ),
13332   'swfdisplayitem::skewX' => 
13333   array (
13334     'return' => 'void',
13335     'params' => 'float xSkew',
13336     'description' => 'Adds xSkew to this SWFDisplayItem\'s x skew value',
13337   ),
13338   'swfdisplayitem::skewYTo' => 
13339   array (
13340     'return' => 'void',
13341     'params' => 'float ySkew',
13342     'description' => 'Sets this SWFDisplayItem\'s y skew value to ySkew',
13343   ),
13344   'swfdisplayitem::skewY' => 
13345   array (
13346     'return' => 'void',
13347     'params' => 'float ySkew',
13348     'description' => 'Adds ySkew to this SWFDisplayItem\'s y skew value',
13349   ),
13350   'swfdisplayitem::setMatrix' => 
13351   array (
13352     'return' => 'void',
13353     'params' => 'float a, float b, float c, float d, float x, float y',
13354     'description' => 'Sets the item\'s transform matrix',
13355   ),
13356   'swfdisplayitem::setDepth' => 
13357   array (
13358     'return' => 'void',
13359     'params' => 'int depth',
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   ),
13362   'swfdisplayitem::setRatio' => 
13363   array (
13364     'return' => 'void',
13365     'params' => 'float ratio',
13366     'description' => 'Sets this SWFDisplayItem\'s ratio to ratio.  Obviously only does anything if displayitem was created from an SWFMorph',
13367   ),
13368   'swfdisplayitem::addColor' => 
13369   array (
13370     'return' => 'void',
13371     'params' => 'int r, int g, int b [, int a]',
13372     'description' => 'Sets the add color part of this SWFDisplayItem\'s CXform to (r, g, b [, a]), a defaults to 0',
13373   ),
13374   'swfdisplayitem::multColor' => 
13375   array (
13376     'return' => 'void',
13377     'params' => 'float r, float g, float b [, float a]',
13378     'description' => 'Sets the multiply color part of this SWFDisplayItem\'s CXform to (r, g, b [, a]), a defaults to 1.0',
13379   ),
13380   'swfdisplayitem::setName' => 
13381   array (
13382     'return' => 'void',
13383     'params' => 'string name',
13384     'description' => 'Sets this SWFDisplayItem\'s name to name',
13385   ),
13386   'swfdisplayitem::addAction' => 
13387   array (
13388     'return' => 'void',
13389     'params' => 'object SWFAction, int flags',
13390     'description' => 'Adds this SWFAction to the given SWFSprite instance',
13391   ),
13392   'swfdisplayitem::setMaskLevel' => 
13393   array (
13394     'return' => 'void',
13395     'params' => 'int level',
13396     'description' => 'defines a MASK layer at level',
13397   ),
13398   'swfdisplayitem::endMask' => 
13399   array (
13400     'return' => 'void',
13401     'params' => '',
13402     'description' => 'another way of defining a MASK layer',
13403   ),
13404   'swffill::__construct' => 
13405   array (
13406     'return' => 'void',
13407     'params' => '',
13408     'description' => 'Creates a new SWFFill object',
13409   ),
13410   'swffill::moveTo' => 
13411   array (
13412     'return' => 'void',
13413     'params' => 'float x, float y',
13414     'description' => 'Moves this SWFFill to shape coordinates (x,y)',
13415   ),
13416   'swffill::scaleTo' => 
13417   array (
13418     'return' => 'void',
13419     'params' => 'float xScale [, float yScale]',
13420     'description' => 'Scales this SWFFill by xScale in the x direction, yScale in the y, or both to xScale if only one arg',
13421   ),
13422   'swffill::rotateTo' => 
13423   array (
13424     'return' => 'void',
13425     'params' => 'float degrees',
13426     'description' => 'Rotates this SWFFill the given (clockwise) degrees from its original orientation',
13427   ),
13428   'swffill::skewXTo' => 
13429   array (
13430     'return' => 'void',
13431     'params' => 'float xSkew',
13432     'description' => 'Sets this SWFFill\'s x skew value to xSkew',
13433   ),
13434   'swffill::skewYTo' => 
13435   array (
13436     'return' => 'void',
13437     'params' => 'float ySkew',
13438     'description' => 'Sets this SWFFill\'s y skew value to ySkew',
13439   ),
13440   'swffontcha::raddChars' => 
13441   array (
13442     'return' => 'void',
13443     'params' => 'string',
13444     'description' => 'adds characters to a font for exporting font',
13445   ),
13446   'swffontchar::addChars' => 
13447   array (
13448     'return' => 'void',
13449     'params' => 'string',
13450     'description' => 'adds characters to a font for exporting font',
13451   ),
13452   'swffont::__construct' => 
13453   array (
13454     'return' => 'void',
13455     'params' => 'string filename',
13456     'description' => 'Creates a new SWFFont object from given file',
13457   ),
13458   'swffont::getWidth' => 
13459   array (
13460     'return' => 'float',
13461     'params' => 'string str',
13462     'description' => 'Calculates the width of the given string in this font at full height',
13463   ),
13464   'swffont::getUTF8Width' => 
13465   array (
13466     'return' => 'int',
13467     'params' => 'string',
13468     'description' => 'Calculates the width of the given string in this font at full height',
13469   ),
13470   'swffont::getWideWidth' => 
13471   array (
13472     'return' => 'int',
13473     'params' => 'string',
13474     'description' => 'Calculates the width of the given string in this font at full height',
13475   ),
13476   'swffont::getAscent' => 
13477   array (
13478     'return' => 'float',
13479     'params' => '',
13480     'description' => 'Returns the ascent of the font, or 0 if not available',
13481   ),
13482   'swffont::getDescent' => 
13483   array (
13484     'return' => 'float',
13485     'params' => '',
13486     'description' => 'Returns the descent of the font, or 0 if not available',
13487   ),
13488   'swffont::getLeading' => 
13489   array (
13490     'return' => 'float',
13491     'params' => '',
13492     'description' => 'Returns the leading of the font, or 0 if not available',
13493   ),
13494   'swffont::addChars' => 
13495   array (
13496     'return' => 'void',
13497     'params' => 'string',
13498     'description' => 'adds characters to a font required within textfields',
13499   ),
13500   'swffont::getShape' => 
13501   array (
13502     'return' => 'string',
13503     'params' => 'code',
13504     'description' => 'Returns the glyph shape of a char as a text string',
13505   ),
13506   'swfgradient::__construct' => 
13507   array (
13508     'return' => 'void',
13509     'params' => '',
13510     'description' => 'Creates a new SWFGradient object',
13511   ),
13512   'swfgradient::addEntry' => 
13513   array (
13514     'return' => 'void',
13515     'params' => 'float ratio, int r, int g, int b [, int a]',
13516     'description' => 'Adds given entry to the gradient',
13517   ),
13518   'swfmorph::__construct' => 
13519   array (
13520     'return' => 'void',
13521     'params' => '',
13522     'description' => 'Creates a new SWFMorph object',
13523   ),
13524   'swfmorph::getShape1' => 
13525   array (
13526     'return' => 'object',
13527     'params' => '',
13528     'description' => 'Return\'s this SWFMorph\'s start shape object',
13529   ),
13530   'swfmorph::getShape2' => 
13531   array (
13532     'return' => 'object',
13533     'params' => '',
13534     'description' => 'Return\'s this SWFMorph\'s start shape object',
13535   ),
13536   'swfsound::__construct' => 
13537   array (
13538     'return' => 'void',
13539     'params' => 'string filename, int flags',
13540     'description' => 'Creates a new SWFSound object from given file',
13541   ),
13542   'swfvideostream_init' => 
13543   array (
13544     'return' => 'class',
13545     'params' => '[file]',
13546     'description' => 'Returns a SWVideoStream object',
13547   ),
13548   'swfprebuiltclip_init' => 
13549   array (
13550     'return' => 'class',
13551     'params' => '[file]',
13552     'description' => 'Returns a SWFPrebuiltClip object',
13553   ),
13554   'swfmovie::__construct' => 
13555   array (
13556     'return' => 'void',
13557     'params' => 'int version',
13558     'description' => 'Creates swfmovie object according to the passed version',
13559   ),
13560   'swfmovie::nextframe' => 
13561   array (
13562     'return' => 'void',
13563     'params' => '',
13564     'description' => '',
13565   ),
13566   'swfmovie::labelframe' => 
13567   array (
13568     'return' => 'void',
13569     'params' => 'object SWFBlock',
13570     'description' => '',
13571   ),
13572   'swfmovie::add' => 
13573   array (
13574     'return' => 'object',
13575     'params' => 'object SWFBlock',
13576     'description' => '',
13577   ),
13578   'swfmovie::output' => 
13579   array (
13580     'return' => 'int',
13581     'params' => '[int compression]',
13582     'description' => '',
13583   ),
13584   'swfmovie::saveToFile' => 
13585   array (
13586     'return' => 'int',
13587     'params' => 'stream x [, int compression]',
13588     'description' => '',
13589   ),
13590   'swfmovie::save' => 
13591   array (
13592     'return' => 'int',
13593     'params' => 'mixed where [, int compression]',
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   ),
13596   'swfmovie::setBackground' => 
13597   array (
13598     'return' => 'void',
13599     'params' => 'int r, int g, int b',
13600     'description' => 'Sets background color (r,g,b)',
13601   ),
13602   'swfmovie::setRate' => 
13603   array (
13604     'return' => 'void',
13605     'params' => 'float rate',
13606     'description' => 'Sets movie rate',
13607   ),
13608   'swfmovie::setDimension' => 
13609   array (
13610     'return' => 'void',
13611     'params' => 'float x, float y',
13612     'description' => 'Sets movie dimension',
13613   ),
13614   'swfmovie::setFrames' => 
13615   array (
13616     'return' => 'void',
13617     'params' => 'int frames',
13618     'description' => 'Sets number of frames',
13619   ),
13620   'swfmovie::streamMP3' => 
13621   array (
13622     'return' => 'void',
13623     'params' => 'mixed file',
13624     'description' => 'Sets sound stream of the SWF movie. The parameter can be stream or string.',
13625   ),
13626   'swfshape::__construct' => 
13627   array (
13628     'return' => 'void',
13629     'params' => '',
13630     'description' => 'Creates a new SWFShape object',
13631   ),
13632   'swfshape::setline' => 
13633   array (
13634     'return' => 'void',
13635     'params' => 'int width, int r, int g, int b [, int a]',
13636     'description' => 'Sets the current line style for this SWFShape',
13637   ),
13638   'swfshape::addfill' => 
13639   array (
13640     'return' => 'object',
13641     'params' => 'mixed arg1, int arg2, [int b [, int a]]',
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   ),
13644   'swfshape::setleftfill' => 
13645   array (
13646     'return' => 'void',
13647     'params' => 'int arg1 [, int g ,int b [,int a]]',
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   ),
13650   'swfshape::movepento' => 
13651   array (
13652     'return' => 'void',
13653     'params' => 'float x, float y',
13654     'description' => 'Moves the pen to shape coordinates (x, y)',
13655   ),
13656   'swfshape::movepen' => 
13657   array (
13658     'return' => 'void',
13659     'params' => 'float x, float y',
13660     'description' => 'Moves the pen from its current location by vector (x, y)',
13661   ),
13662   'swfshape::drawlineto' => 
13663   array (
13664     'return' => 'void',
13665     'params' => 'float x, float y',
13666     'description' => 'Draws a line from the current pen position to shape coordinates (x, y) in the current line style',
13667   ),
13668   'swfshape::drawline' => 
13669   array (
13670     'return' => 'void',
13671     'params' => 'float dx, float dy',
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   ),
13674   'swfshape::drawcurveto' => 
13675   array (
13676     'return' => 'void',
13677     'params' => 'float ax, float ay, float bx, float by [, float dx, float dy]',
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   ),
13680   'swfshape::drawcurve' => 
13681   array (
13682     'return' => 'void',
13683     'params' => 'float adx, float ady, float bdx, float bdy [, float cdx, float cdy]',
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   ),
13686   'swfshape::drawglyph' => 
13687   array (
13688     'return' => 'void',
13689     'params' => 'SWFFont font, string character [, int size]',
13690     'description' => 'Draws the first character in the given string into the shape using the glyph definition from the given font',
13691   ),
13692   'swfshape::drawcircle' => 
13693   array (
13694     'return' => 'void',
13695     'params' => 'float r',
13696     'description' => 'Draws a circle of radius r centered at the current location, in a counter-clockwise fashion',
13697   ),
13698   'swfshape::drawarc' => 
13699   array (
13700     'return' => 'void',
13701     'params' => 'float r, float startAngle, float endAngle',
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   ),
13704   'swfshape::drawcubic' => 
13705   array (
13706     'return' => 'void',
13707     'params' => 'float bx, float by, float cx, float cy, float dx, float dy',
13708     'description' => 'Draws a cubic bezier curve using the current position and the three given points as control points',
13709   ),
13710   'swfsprite::__construct' => 
13711   array (
13712     'return' => 'void',
13713     'params' => '',
13714     'description' => 'Creates a new SWFSprite object',
13715   ),
13716   'swfsprite::add' => 
13717   array (
13718     'return' => 'object',
13719     'params' => 'object SWFCharacter',
13720     'description' => 'Adds the character to the sprite, returns a displayitem object',
13721   ),
13722   'swfsprite::remove' => 
13723   array (
13724     'return' => 'void',
13725     'params' => 'object SWFDisplayItem',
13726     'description' => 'Remove the named character from the sprite\'s display list',
13727   ),
13728   'swfsprite::nextFrame' => 
13729   array (
13730     'return' => 'void',
13731     'params' => '',
13732     'description' => 'Moves the sprite to the next frame',
13733   ),
13734   'swfsprite::labelFrame' => 
13735   array (
13736     'return' => 'void',
13737     'params' => 'string label',
13738     'description' => 'Labels frame',
13739   ),
13740   'swfsprite::setFrames' => 
13741   array (
13742     'return' => 'void',
13743     'params' => 'int frames',
13744     'description' => 'Sets the number of frames in this SWFSprite',
13745   ),
13746   'swftext::__construct' => 
13747   array (
13748     'return' => 'void',
13749     'params' => '',
13750     'description' => 'Creates new SWFText object',
13751   ),
13752   'swftext::setFont' => 
13753   array (
13754     'return' => 'void',
13755     'params' => 'object font',
13756     'description' => 'Sets this SWFText object\'s current font to given font',
13757   ),
13758   'swftext::setHeight' => 
13759   array (
13760     'return' => 'void',
13761     'params' => 'float height',
13762     'description' => 'Sets this SWFText object\'s current height to given height',
13763   ),
13764   'swftext::setSpacing' => 
13765   array (
13766     'return' => 'void',
13767     'params' => 'float spacing',
13768     'description' => 'Sets this SWFText object\'s current letterspacing to given spacing',
13769   ),
13770   'swftext::setColor' => 
13771   array (
13772     'return' => 'void',
13773     'params' => 'int r, int g, int b [, int a]',
13774     'description' => 'Sets this SWFText object\'s current color to the given color',
13775   ),
13776   'swftext::moveTo' => 
13777   array (
13778     'return' => 'void',
13779     'params' => 'float x, float y',
13780     'description' => 'Moves this SWFText object\'s current pen position to (x, y) in text coordinates',
13781   ),
13782   'swftext::addString' => 
13783   array (
13784     'return' => 'void',
13785     'params' => 'string text',
13786     'description' => 'Writes the given text into this SWFText object at the current pen position, using the current font, height, spacing, and color',
13787   ),
13788   'swftext::addUTF8String' => 
13789   array (
13790     'return' => 'void',
13791     'params' => 'string text',
13792     'description' => 'Writes the given text into this SWFText object at the current pen position,using the current font, height, spacing, and color',
13793   ),
13794   'swftext::addWideString' => 
13795   array (
13796     'return' => 'void',
13797     'params' => 'string text',
13798     'description' => 'Writes the given text into this SWFText object at the current pen position,using the current font, height, spacing, and color',
13799   ),
13800   'swftext::getWidth' => 
13801   array (
13802     'return' => 'float',
13803     'params' => 'string str',
13804     'description' => 'Calculates the width of the given string in this text objects current font and size',
13805   ),
13806   'swftext::getUTF8Width' => 
13807   array (
13808     'return' => 'double',
13809     'params' => 'string',
13810     'description' => 'calculates the width of the given string in this text objects current font and size',
13811   ),
13812   'swftext::getWideWidth' => 
13813   array (
13814     'return' => 'double',
13815     'params' => 'string',
13816     'description' => 'calculates the width of the given string in this text objects current font and size',
13817   ),
13818   'swftext::getAscent' => 
13819   array (
13820     'return' => 'float',
13821     'params' => '',
13822     'description' => 'Returns the ascent of the current font at its current size, or 0 if not available',
13823   ),
13824   'swftext::getDescent' => 
13825   array (
13826     'return' => 'float',
13827     'params' => '',
13828     'description' => 'Returns the descent of the current font at its current size, or 0 if not available',
13829   ),
13830   'swftext::getLeading' => 
13831   array (
13832     'return' => 'float',
13833     'params' => '',
13834     'description' => 'Returns the leading of the current font at its current size, or 0 if not available',
13835   ),
13836   'swftextfield::__construct' => 
13837   array (
13838     'return' => 'void',
13839     'params' => '[int flags]',
13840     'description' => 'Creates a new SWFTextField object',
13841   ),
13842   'swftextfield::setFont' => 
13843   array (
13844     'return' => 'void',
13845     'params' => 'object font',
13846     'description' => 'Sets the font for this textfield',
13847   ),
13848   'swftextfield::setBounds' => 
13849   array (
13850     'return' => 'void',
13851     'params' => 'float width, float height',
13852     'description' => 'Sets the width and height of this textfield',
13853   ),
13854   'swftextfield::align' => 
13855   array (
13856     'return' => 'void',
13857     'params' => 'int alignment',
13858     'description' => 'Sets the alignment of this textfield',
13859   ),
13860   'swftextfield::setHeight' => 
13861   array (
13862     'return' => 'void',
13863     'params' => 'float height',
13864     'description' => 'Sets the font height of this textfield',
13865   ),
13866   'swftextfield::setLeftMargin' => 
13867   array (
13868     'return' => 'void',
13869     'params' => 'float margin',
13870     'description' => 'Sets the left margin of this textfield',
13871   ),
13872   'swftextfield::setRightMargin' => 
13873   array (
13874     'return' => 'void',
13875     'params' => 'float margin',
13876     'description' => 'Sets the right margin of this textfield',
13877   ),
13878   'swftextfield::setMargins' => 
13879   array (
13880     'return' => 'void',
13881     'params' => 'float left, float right',
13882     'description' => 'Sets both margins of this textfield',
13883   ),
13884   'swftextfield::setIndentation' => 
13885   array (
13886     'return' => 'void',
13887     'params' => 'float indentation',
13888     'description' => 'Sets the indentation of the first line of this textfield',
13889   ),
13890   'swftextfield::setLineSpacing' => 
13891   array (
13892     'return' => 'void',
13893     'params' => 'float space',
13894     'description' => 'Sets the line spacing of this textfield',
13895   ),
13896   'swftextfield::setColor' => 
13897   array (
13898     'return' => 'void',
13899     'params' => 'int r, int g, int b [, int a]',
13900     'description' => 'Sets the color of this textfield',
13901   ),
13902   'swftextfield::setName' => 
13903   array (
13904     'return' => 'void',
13905     'params' => 'string var_name',
13906     'description' => 'Sets the variable name of this textfield',
13907   ),
13908   'swftextfield::addString' => 
13909   array (
13910     'return' => 'void',
13911     'params' => 'string str',
13912     'description' => 'Adds the given string to this textfield',
13913   ),
13914   'swftextfield::setPadding' => 
13915   array (
13916     'return' => 'void',
13917     'params' => 'float padding',
13918     'description' => 'Sets the padding of this textfield',
13919   ),
13920   'swftextfield::addChars' => 
13921   array (
13922     'return' => 'void',
13923     'params' => 'string',
13924     'description' => 'adds characters to a font that will be available within a textfield',
13925   ),
13926   'SplObjectStorage::attach' => 
13927   array (
13928     'return' => 'void',
13929     'params' => '$obj',
13930     'description' => 'Attaches an object to the storage if not yet contained',
13931   ),
13932   'SplObjectStorage::detach' => 
13933   array (
13934     'return' => 'void',
13935     'params' => '$obj',
13936     'description' => 'Detaches an object from the storage',
13937   ),
13938   'SplObjectStorage::contains' => 
13939   array (
13940     'return' => 'bool',
13941     'params' => '$obj',
13942     'description' => 'Determine whethe an object is contained in the storage',
13943   ),
13944   'SplObjectStorage::count' => 
13945   array (
13946     'return' => 'int',
13947     'params' => '',
13948     'description' => 'Determine number of objects in storage',
13949   ),
13950   'SplObjectStorage::rewind' => 
13951   array (
13952     'return' => 'void',
13953     'params' => '',
13954     'description' => '',
13955   ),
13956   'SplObjectStorage::valid' => 
13957   array (
13958     'return' => 'bool',
13959     'params' => '',
13960     'description' => '',
13961   ),
13962   'SplObjectStorage::key' => 
13963   array (
13964     'return' => 'mixed',
13965     'params' => '',
13966     'description' => '',
13967   ),
13968   'SplObjectStorage::current' => 
13969   array (
13970     'return' => 'mixed',
13971     'params' => '',
13972     'description' => '',
13973   ),
13974   'SplObjectStorage::next' => 
13975   array (
13976     'return' => 'void',
13977     'params' => '',
13978     'description' => '',
13979   ),
13980   'RecursiveIteratorIterator::rewind' => 
13981   array (
13982     'return' => 'void',
13983     'params' => '',
13984     'description' => 'Rewind the iterator to the first element of the top level inner iterator.',
13985   ),
13986   'RecursiveIteratorIterator::valid' => 
13987   array (
13988     'return' => 'bool',
13989     'params' => '',
13990     'description' => 'Check whether the current position is valid',
13991   ),
13992   'RecursiveIteratorIterator::key' => 
13993   array (
13994     'return' => 'mixed',
13995     'params' => '',
13996     'description' => 'Access the current key',
13997   ),
13998   'RecursiveIteratorIterator::current' => 
13999   array (
14000     'return' => 'mixed',
14001     'params' => '',
14002     'description' => 'Access the current element value',
14003   ),
14004   'RecursiveIteratorIterator::next' => 
14005   array (
14006     'return' => 'void',
14007     'params' => '',
14008     'description' => 'Move forward to the next element',
14009   ),
14010   'RecursiveIteratorIterator::getDepth' => 
14011   array (
14012     'return' => 'int',
14013     'params' => '',
14014     'description' => 'Get the current depth of the recursive iteration',
14015   ),
14016   'RecursiveIteratorIterator::getSubIterator' => 
14017   array (
14018     'return' => 'RecursiveIterator',
14019     'params' => '[int level]',
14020     'description' => 'The current active sub iterator or the iterator at specified level',
14021   ),
14022   'RecursiveIteratorIterator::getInnerIterator' => 
14023   array (
14024     'return' => 'RecursiveIterator',
14025     'params' => '',
14026     'description' => 'The current active sub iterator',
14027   ),
14028   'RecursiveIteratorIterator::beginIteration' => 
14029   array (
14030     'return' => 'RecursiveIterator',
14031     'params' => '',
14032     'description' => 'Called when iteration begins (after first rewind() call)',
14033   ),
14034   'RecursiveIteratorIterator::endIteration' => 
14035   array (
14036     'return' => 'RecursiveIterator',
14037     'params' => '',
14038     'description' => 'Called when iteration ends (when valid() first returns false',
14039   ),
14040   'RecursiveIteratorIterator::callHasChildren' => 
14041   array (
14042     'return' => 'bool',
14043     'params' => '',
14044     'description' => 'Called for each element to test whether it has children',
14045   ),
14046   'RecursiveIteratorIterator::callGetChildren' => 
14047   array (
14048     'return' => 'RecursiveIterator',
14049     'params' => '',
14050     'description' => 'Return children of current element',
14051   ),
14052   'RecursiveIteratorIterator::beginChildren' => 
14053   array (
14054     'return' => 'void',
14055     'params' => '',
14056     'description' => 'Called when recursing one level down',
14057   ),
14058   'RecursiveIteratorIterator::endChildren' => 
14059   array (
14060     'return' => 'void',
14061     'params' => '',
14062     'description' => 'Called when end recursing one level',
14063   ),
14064   'RecursiveIteratorIterator::nextElement' => 
14065   array (
14066     'return' => 'void',
14067     'params' => '',
14068     'description' => 'Called when the next element is available',
14069   ),
14070   'RecursiveIteratorIterator::setMaxDepth' => 
14071   array (
14072     'return' => 'void',
14073     'params' => '[$max_depth = -1]',
14074     'description' => 'Set the maximum allowed depth (or any depth if pmax_depth = -1]',
14075   ),
14076   'RecursiveIteratorIterator::getMaxDepth' => 
14077   array (
14078     'return' => 'int|false',
14079     'params' => '',
14080     'description' => 'Return the maximum accepted depth or false if any depth is allowed',
14081   ),
14082   'FilterIterator::__construct' => 
14083   array (
14084     'return' => 'void',
14085     'params' => 'Iterator it',
14086     'description' => 'Create an Iterator from another iterator',
14087   ),
14088   'FilterIterator::getInnerIterator' => 
14089   array (
14090     'return' => 'Iterator',
14091     'params' => '',
14092     'description' => 'proto Iterator CachingIterator::getInnerIterator()proto Iterator LimitIterator::getInnerIterator()proto Iterator ParentIterator::getInnerIterator()Get the inner iterator',
14093   ),
14094   'ParentIterator::rewind' => 
14095   array (
14096     'return' => 'void',
14097     'params' => '',
14098     'description' => 'proto void IteratorIterator::rewind()Rewind the iterator',
14099   ),
14100   'FilterIterator::valid' => 
14101   array (
14102     'return' => 'bool',
14103     'params' => '',
14104     'description' => 'proto bool ParentIterator::valid()proto bool IteratorIterator::valid()proto bool NoRewindIterator::valid()Check whether the current element is valid',
14105   ),
14106   'FilterIterator::key' => 
14107   array (
14108     'return' => 'mixed',
14109     'params' => '',
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   ),
14112   'FilterIterator::current' => 
14113   array (
14114     'return' => 'mixed',
14115     'params' => '',
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   ),
14118   'ParentIterator::next' => 
14119   array (
14120     'return' => 'void',
14121     'params' => '',
14122     'description' => 'proto void IteratorIterator::next()proto void NoRewindIterator::next()Move the iterator forward',
14123   ),
14124   'FilterIterator::rewind' => 
14125   array (
14126     'return' => 'void',
14127     'params' => '',
14128     'description' => 'Rewind the iterator',
14129   ),
14130   'FilterIterator::next' => 
14131   array (
14132     'return' => 'void',
14133     'params' => '',
14134     'description' => 'Move the iterator forward',
14135   ),
14136   'RecursiveFilterIterator::__construct' => 
14137   array (
14138     'return' => 'void',
14139     'params' => 'RecursiveIterator it',
14140     'description' => 'Create a RecursiveFilterIterator from a RecursiveIterator',
14141   ),
14142   'RecursiveFilterIterator::hasChildren' => 
14143   array (
14144     'return' => 'bool',
14145     'params' => '',
14146     'description' => 'Check whether the inner iterator\'s current element has children',
14147   ),
14148   'RecursiveFilterIterator::getChildren' => 
14149   array (
14150     'return' => 'RecursiveFilterIterator',
14151     'params' => '',
14152     'description' => 'Return the inner iterator\'s children contained in a RecursiveFilterIterator',
14153   ),
14154   'ParentIterator::__construct' => 
14155   array (
14156     'return' => 'void',
14157     'params' => 'RecursiveIterator it',
14158     'description' => 'Create a ParentIterator from a RecursiveIterator',
14159   ),
14160   'ParentIterator::hasChildren' => 
14161   array (
14162     'return' => 'bool',
14163     'params' => '',
14164     'description' => 'Check whether the inner iterator\'s current element has children',
14165   ),
14166   'ParentIterator::getChildren' => 
14167   array (
14168     'return' => 'ParentIterator',
14169     'params' => '',
14170     'description' => 'Return the inner iterator\'s children contained in a ParentIterator',
14171   ),
14172   'LimitIterator::rewind' => 
14173   array (
14174     'return' => 'void',
14175     'params' => '',
14176     'description' => 'Rewind the iterator to the specified starting offset',
14177   ),
14178   'LimitIterator::valid' => 
14179   array (
14180     'return' => 'bool',
14181     'params' => '',
14182     'description' => 'Check whether the current element is valid',
14183   ),
14184   'LimitIterator::next' => 
14185   array (
14186     'return' => 'void',
14187     'params' => '',
14188     'description' => 'Move the iterator forward',
14189   ),
14190   'LimitIterator::seek' => 
14191   array (
14192     'return' => 'void',
14193     'params' => 'int position',
14194     'description' => 'Seek to the given position',
14195   ),
14196   'LimitIterator::getPosition' => 
14197   array (
14198     'return' => 'int',
14199     'params' => '',
14200     'description' => 'Return the current position',
14201   ),
14202   'CachingIterator::__construct' => 
14203   array (
14204     'return' => 'void',
14205     'params' => 'Iterator it [, flags = CIT_CALL_TOSTRING]',
14206     'description' => 'Construct a CachingIterator from an Iterator',
14207   ),
14208   'CachingIterator::rewind' => 
14209   array (
14210     'return' => 'void',
14211     'params' => '',
14212     'description' => 'Rewind the iterator',
14213   ),
14214   'CachingIterator::valid' => 
14215   array (
14216     'return' => 'bool',
14217     'params' => '',
14218     'description' => 'Check whether the current element is valid',
14219   ),
14220   'CachingIterator::next' => 
14221   array (
14222     'return' => 'void',
14223     'params' => '',
14224     'description' => 'Move the iterator forward',
14225   ),
14226   'CachingIterator::hasNext' => 
14227   array (
14228     'return' => 'bool',
14229     'params' => '',
14230     'description' => 'Check whether the inner iterator has a valid next element',
14231   ),
14232   'CachingIterator::__toString' => 
14233   array (
14234     'return' => 'string',
14235     'params' => '',
14236     'description' => 'Return the string representation of the current element',
14237   ),
14238   'RecursiveCachingIterator::__construct' => 
14239   array (
14240     'return' => 'void',
14241     'params' => 'RecursiveIterator it [, flags = CIT_CALL_TOSTRING]',
14242     'description' => 'Create an iterator from a RecursiveIterator',
14243   ),
14244   'RecursiveCachingIterator::hasChildren' => 
14245   array (
14246     'return' => 'bool',
14247     'params' => '',
14248     'description' => 'Check whether the current element of the inner iterator has children',
14249   ),
14250   'RecursiveCachingIterator::getChildren' => 
14251   array (
14252     'return' => 'RecursiveCachingIterator',
14253     'params' => '',
14254     'description' => 'Return the inner iterator\'s children as a RecursiveCachingIterator',
14255   ),
14256   'IteratorIterator::__construct' => 
14257   array (
14258     'return' => 'void',
14259     'params' => 'Traversable it',
14260     'description' => 'Create an iterator from anything that is traversable',
14261   ),
14262   'NoRewindIterator::__construct' => 
14263   array (
14264     'return' => 'void',
14265     'params' => 'Iterator it',
14266     'description' => 'Create an iterator from another iterator',
14267   ),
14268   'NoRewindIterator::rewind' => 
14269   array (
14270     'return' => 'void',
14271     'params' => '',
14272     'description' => 'Prevent a call to inner iterators rewind()',
14273   ),
14274   'NoRewindIterator::valid' => 
14275   array (
14276     'return' => 'bool',
14277     'params' => '',
14278     'description' => 'Return inner iterators valid()',
14279   ),
14280   'NoRewindIterator::key' => 
14281   array (
14282     'return' => 'mixed',
14283     'params' => '',
14284     'description' => 'Return inner iterators key()',
14285   ),
14286   'NoRewindIterator::current' => 
14287   array (
14288     'return' => 'mixed',
14289     'params' => '',
14290     'description' => 'Return inner iterators current()',
14291   ),
14292   'NoRewindIterator::next' => 
14293   array (
14294     'return' => 'void',
14295     'params' => '',
14296     'description' => 'Return inner iterators next()',
14297   ),
14298   'InfiniteIterator::__construct' => 
14299   array (
14300     'return' => 'void',
14301     'params' => 'Iterator it',
14302     'description' => 'Create an iterator from another iterator',
14303   ),
14304   'InfiniteIterator::next' => 
14305   array (
14306     'return' => 'void',
14307     'params' => '',
14308     'description' => 'Prevent a call to inner iterators rewind() (internally the current data will be fetched if valid())',
14309   ),
14310   'EmptyIterator::rewind' => 
14311   array (
14312     'return' => 'void',
14313     'params' => '',
14314     'description' => 'Does nothing',
14315   ),
14316   'EmptyIterator::valid' => 
14317   array (
14318     'return' => 'false',
14319     'params' => '',
14320     'description' => 'Return false',
14321   ),
14322   'EmptyIterator::key' => 
14323   array (
14324     'return' => 'void',
14325     'params' => '',
14326     'description' => 'Throws exception BadMethodCallException',
14327   ),
14328   'EmptyIterator::current' => 
14329   array (
14330     'return' => 'void',
14331     'params' => '',
14332     'description' => 'Throws exception BadMethodCallException',
14333   ),
14334   'EmptyIterator::next' => 
14335   array (
14336     'return' => 'void',
14337     'params' => '',
14338     'description' => 'Does nothing',
14339   ),
14340   'AppendIterator::__construct' => 
14341   array (
14342     'return' => 'void',
14343     'params' => '',
14344     'description' => 'Create an AppendIterator',
14345   ),
14346   'AppendIterator::append' => 
14347   array (
14348     'return' => 'void',
14349     'params' => 'Iterator it',
14350     'description' => 'Append an iterator',
14351   ),
14352   'AppendIterator::rewind' => 
14353   array (
14354     'return' => 'void',
14355     'params' => '',
14356     'description' => 'Rewind to the first iterator and rewind the first iterator, too',
14357   ),
14358   'AppendIterator::valid' => 
14359   array (
14360     'return' => 'bool',
14361     'params' => '',
14362     'description' => 'Check if the current state is valid',
14363   ),
14364   'AppendIterator::next' => 
14365   array (
14366     'return' => 'void',
14367     'params' => '',
14368     'description' => 'Forward to next element',
14369   ),
14370   'iterator_to_array' => 
14371   array (
14372     'return' => 'array',
14373     'params' => 'Traversable it',
14374     'description' => 'Copy the iterator into an array',
14375   ),
14376   'iterator_count' => 
14377   array (
14378     'return' => 'int',
14379     'params' => 'Traversable it',
14380     'description' => 'Count the elements in an iterator',
14381   ),
14382   'class_parents' => 
14383   array (
14384     'return' => 'array',
14385     'params' => 'object instance',
14386     'description' => 'Return an array containing the names of all parent classes',
14387   ),
14388   'class_implements' => 
14389   array (
14390     'return' => 'array',
14391     'params' => 'mixed what [, bool autoload ]',
14392     'description' => 'Return all classes and interfaces implemented by SPL',
14393   ),
14394   'spl_classes' => 
14395   array (
14396     'return' => 'array',
14397     'params' => '',
14398     'description' => 'Return an array containing the names of all clsses and interfaces defined in SPL',
14399   ),
14400   'spl_autoload' => 
14401   array (
14402     'return' => 'void',
14403     'params' => 'string class_name [, string file_extensions]',
14404     'description' => 'Default implementation for __autoload()',
14405   ),
14406   'spl_autoload_extensions' => 
14407   array (
14408     'return' => 'string',
14409     'params' => '[string file_extensions]',
14410     'description' => 'Register and return default file extensions for spl_autoload',
14411   ),
14412   'spl_autoload_call' => 
14413   array (
14414     'return' => 'void',
14415     'params' => 'string class_name',
14416     'description' => 'Try all registerd autoload function to load the requested class',
14417   ),
14418   'spl_autoload_register' => 
14419   array (
14420     'return' => 'bool',
14421     'params' => '[mixed autoload_function = "spl_autoload" [, throw = true]]',
14422     'description' => 'Register given function as __autoload() implementation',
14423   ),
14424   'spl_autoload_unregister' => 
14425   array (
14426     'return' => 'bool',
14427     'params' => 'mixed autoload_function',
14428     'description' => 'Unregister given function as __autoload() implementation',
14429   ),
14430   'spl_autoload_functions' => 
14431   array (
14432     'return' => 'false|array',
14433     'params' => '',
14434     'description' => 'Return all registered __autoload() functionns',
14435   ),
14436   'SimpleXMLIterator::rewind' => 
14437   array (
14438     'return' => 'void',
14439     'params' => '',
14440     'description' => 'Rewind to first element',
14441   ),
14442   'SimpleXMLIterator::valid' => 
14443   array (
14444     'return' => 'bool',
14445     'params' => '',
14446     'description' => 'Check whether iteration is valid',
14447   ),
14448   'SimpleXMLIterator::current' => 
14449   array (
14450     'return' => 'SimpleXMLIterator',
14451     'params' => '',
14452     'description' => 'Get current element',
14453   ),
14454   'SimpleXMLIterator::key' => 
14455   array (
14456     'return' => 'string',
14457     'params' => '',
14458     'description' => 'Get name of current child element',
14459   ),
14460   'SimpleXMLIterator::next' => 
14461   array (
14462     'return' => 'void',
14463     'params' => '',
14464     'description' => 'Move to next element',
14465   ),
14466   'SimpleXMLIterator::hasChildren' => 
14467   array (
14468     'return' => 'bool',
14469     'params' => '',
14470     'description' => 'Check whether element has children (elements)',
14471   ),
14472   'SimpleXMLIterator::getChildren' => 
14473   array (
14474     'return' => 'SimpleXMLIterator',
14475     'params' => '',
14476     'description' => 'Get child element iterator',
14477   ),
14478   'SimpleXMLIterator::count' => 
14479   array (
14480     'return' => 'int',
14481     'params' => '',
14482     'description' => 'Get number of child elements',
14483   ),
14484   'DirectoryIterator::__construct' => 
14485   array (
14486     'return' => 'void',
14487     'params' => 'string path',
14488     'description' => 'Cronstructs a new dir iterator from a path.',
14489   ),
14490   'DirectoryIterator::rewind' => 
14491   array (
14492     'return' => 'void',
14493     'params' => '',
14494     'description' => 'Rewind dir back to the start',
14495   ),
14496   'DirectoryIterator::key' => 
14497   array (
14498     'return' => 'string',
14499     'params' => '',
14500     'description' => 'Return current dir entry',
14501   ),
14502   'DirectoryIterator::current' => 
14503   array (
14504     'return' => 'DirectoryIterator',
14505     'params' => '',
14506     'description' => 'Return this (needed for Iterator interface)',
14507   ),
14508   'DirectoryIterator::next' => 
14509   array (
14510     'return' => 'void',
14511     'params' => '',
14512     'description' => 'Move to next entry',
14513   ),
14514   'DirectoryIterator::valid' => 
14515   array (
14516     'return' => 'string',
14517     'params' => '',
14518     'description' => 'Check whether dir contains more entries',
14519   ),
14520   'SplFileInfo::getPath' => 
14521   array (
14522     'return' => 'string',
14523     'params' => '',
14524     'description' => 'Return the path',
14525   ),
14526   'SplFileInfo::getFilename' => 
14527   array (
14528     'return' => 'string',
14529     'params' => '',
14530     'description' => 'Return filename only',
14531   ),
14532   'DirectoryIterator::getFilename' => 
14533   array (
14534     'return' => 'string',
14535     'params' => '',
14536     'description' => 'Return filename of current dir entry',
14537   ),
14538   'SplFileInfo::getPathname' => 
14539   array (
14540     'return' => 'string',
14541     'params' => '',
14542     'description' => 'Return path and filename',
14543   ),
14544   'RecursiveDirectoryIterator::key' => 
14545   array (
14546     'return' => 'string',
14547     'params' => '',
14548     'description' => 'Return getPathname() or getFilename() depending on flags',
14549   ),
14550   'RecursiveDirectoryIterator::current' => 
14551   array (
14552     'return' => 'string',
14553     'params' => '',
14554     'description' => 'Return getFilename(), getFileInfo() or $this depending on flags',
14555   ),
14556   'DirectoryIterator::isDot' => 
14557   array (
14558     'return' => 'bool',
14559     'params' => '',
14560     'description' => 'Returns true if current entry is \'.\' or  \'..\'',
14561   ),
14562   'SplFileInfo::__construct' => 
14563   array (
14564     'return' => 'void',
14565     'params' => 'string file_name',
14566     'description' => 'Cronstructs a new SplFileInfo from a path.',
14567   ),
14568   'SplFileInfo::getPerms' => 
14569   array (
14570     'return' => 'int',
14571     'params' => '',
14572     'description' => 'Get file permissions',
14573   ),
14574   'SplFileInfo::getInode' => 
14575   array (
14576     'return' => 'int',
14577     'params' => '',
14578     'description' => 'Get file inode',
14579   ),
14580   'SplFileInfo::getSize' => 
14581   array (
14582     'return' => 'int',
14583     'params' => '',
14584     'description' => 'Get file size',
14585   ),
14586   'SplFileInfo::getOwner' => 
14587   array (
14588     'return' => 'int',
14589     'params' => '',
14590     'description' => 'Get file owner',
14591   ),
14592   'SplFileInfo::getGroup' => 
14593   array (
14594     'return' => 'int',
14595     'params' => '',
14596     'description' => 'Get file group',
14597   ),
14598   'SplFileInfo::getATime' => 
14599   array (
14600     'return' => 'int',
14601     'params' => '',
14602     'description' => 'Get last access time of file',
14603   ),
14604   'SplFileInfo::getMTime' => 
14605   array (
14606     'return' => 'int',
14607     'params' => '',
14608     'description' => 'Get last modification time of file',
14609   ),
14610   'SplFileInfo::getCTime' => 
14611   array (
14612     'return' => 'int',
14613     'params' => '',
14614     'description' => 'Get inode modification time of file',
14615   ),
14616   'SplFileInfo::getType' => 
14617   array (
14618     'return' => 'string',
14619     'params' => '',
14620     'description' => 'Get file type',
14621   ),
14622   'SplFileInfo::isWritable' => 
14623   array (
14624     'return' => 'bool',
14625     'params' => '',
14626     'description' => 'Returns true if file can be written',
14627   ),
14628   'SplFileInfo::isReadable' => 
14629   array (
14630     'return' => 'bool',
14631     'params' => '',
14632     'description' => 'Returns true if file can be read',
14633   ),
14634   'SplFileInfo::isExecutable' => 
14635   array (
14636     'return' => 'bool',
14637     'params' => '',
14638     'description' => 'Returns true if file is executable',
14639   ),
14640   'SplFileInfo::isFile' => 
14641   array (
14642     'return' => 'bool',
14643     'params' => '',
14644     'description' => 'Returns true if file is a regular file',
14645   ),
14646   'SplFileInfo::isDir' => 
14647   array (
14648     'return' => 'bool',
14649     'params' => '',
14650     'description' => 'Returns true if file is directory',
14651   ),
14652   'SplFileInfo::isLink' => 
14653   array (
14654     'return' => 'bool',
14655     'params' => '',
14656     'description' => 'Returns true if file is symbolic link',
14657   ),
14658   'SplFileInfo::openFile' => 
14659   array (
14660     'return' => 'SplFileObject',
14661     'params' => '[string mode = \'r\' [, bool use_include_path  [, resource context]]]',
14662     'description' => 'Open the current file',
14663   ),
14664   'SplFileInfo::setFileClass' => 
14665   array (
14666     'return' => 'void',
14667     'params' => '[string class_name]',
14668     'description' => 'Class to use in openFile()',
14669   ),
14670   'SplFileInfo::setInfoClass' => 
14671   array (
14672     'return' => 'void',
14673     'params' => '[string class_name]',
14674     'description' => 'Class to use in getFileInfo(), getPathInfo()',
14675   ),
14676   'SplFileInfo::getFileInfo' => 
14677   array (
14678     'return' => 'SplFileInfo',
14679     'params' => '[string $class_name]',
14680     'description' => 'Get/copy file info',
14681   ),
14682   'SplFileInfo::getPathInfo' => 
14683   array (
14684     'return' => 'SplFileInfo',
14685     'params' => '[string $class_name]',
14686     'description' => 'Get/copy file info',
14687   ),
14688   'RecursiveDirectoryIterator::__construct' => 
14689   array (
14690     'return' => 'void',
14691     'params' => 'string path [, int flags]',
14692     'description' => 'Cronstructs a new dir iterator from a path.',
14693   ),
14694   'RecursiveDirectoryIterator::rewind' => 
14695   array (
14696     'return' => 'void',
14697     'params' => '',
14698     'description' => 'Rewind dir back to the start',
14699   ),
14700   'RecursiveDirectoryIterator::next' => 
14701   array (
14702     'return' => 'void',
14703     'params' => '',
14704     'description' => 'Move to next entry',
14705   ),
14706   'RecursiveDirectoryIterator::hasChildren' => 
14707   array (
14708     'return' => 'bool',
14709     'params' => '[bool $allow_links = false]',
14710     'description' => 'Returns whether current entry is a directory and not \'.\' or \'..\'',
14711   ),
14712   'DirectoryIterator::getChildren' => 
14713   array (
14714     'return' => 'RecursiveDirectoryIterator',
14715     'params' => '',
14716     'description' => 'Returns an iterator for the current entry if it is a directory',
14717   ),
14718   'RecursiveDirectoryIterator::getSubPath' => 
14719   array (
14720     'return' => 'void',
14721     'params' => '',
14722     'description' => 'Get sub path',
14723   ),
14724   'RecursiveDirectoryIterator::getSubPathname' => 
14725   array (
14726     'return' => 'void',
14727     'params' => '',
14728     'description' => 'Get sub path and file name',
14729   ),
14730   'SplFileObject::__construct' => 
14731   array (
14732     'return' => 'void',
14733     'params' => '[int max_memory]',
14734     'description' => 'Construct a new temp file object',
14735   ),
14736   'SplFileObject::rewind' => 
14737   array (
14738     'return' => 'void',
14739     'params' => '',
14740     'description' => 'Rewind the file and read the first line',
14741   ),
14742   'SplFileObject::getFilename' => 
14743   array (
14744     'return' => 'string',
14745     'params' => '',
14746     'description' => 'Return the filename',
14747   ),
14748   'SplFileObject::eof' => 
14749   array (
14750     'return' => 'void',
14751     'params' => '',
14752     'description' => 'Return whether end of file is reached',
14753   ),
14754   'SplFileObject::valid' => 
14755   array (
14756     'return' => 'void',
14757     'params' => '',
14758     'description' => 'Return !eof()',
14759   ),
14760   'SplFileObject::fgets' => 
14761   array (
14762     'return' => 'string',
14763     'params' => '',
14764     'description' => 'Rturn next line from file',
14765   ),
14766   'SplFileObject::current' => 
14767   array (
14768     'return' => 'string',
14769     'params' => '',
14770     'description' => 'Return current line from file',
14771   ),
14772   'SplFileObject::key' => 
14773   array (
14774     'return' => 'int',
14775     'params' => '',
14776     'description' => 'Return line number',
14777   ),
14778   'SplFileObject::next' => 
14779   array (
14780     'return' => 'void',
14781     'params' => '',
14782     'description' => 'Read next line',
14783   ),
14784   'SplFileObject::setFlags' => 
14785   array (
14786     'return' => 'void',
14787     'params' => 'int flags',
14788     'description' => 'Set file handling flags',
14789   ),
14790   'SplFileObject::getFlags' => 
14791   array (
14792     'return' => 'int',
14793     'params' => '',
14794     'description' => 'Get file handling flags',
14795   ),
14796   'SplFileObject::setMaxLineLen' => 
14797   array (
14798     'return' => 'void',
14799     'params' => 'int max_len',
14800     'description' => 'Set maximum line length',
14801   ),
14802   'SplFileObject::getMaxLineLen' => 
14803   array (
14804     'return' => 'int',
14805     'params' => '',
14806     'description' => 'Get maximum line length',
14807   ),
14808   'SplFileObject::hasChildren' => 
14809   array (
14810     'return' => 'bool',
14811     'params' => '',
14812     'description' => 'Return false',
14813   ),
14814   'SplFileObject::getChildren' => 
14815   array (
14816     'return' => 'bool',
14817     'params' => '',
14818     'description' => 'Read NULL',
14819   ),
14820   'SplFileObject::fgetcsv' => 
14821   array (
14822     'return' => 'array',
14823     'params' => '[string delimiter [, string enclosure]]',
14824     'description' => 'Return current line as csv',
14825   ),
14826   'SplFileObject::flock' => 
14827   array (
14828     'return' => 'bool',
14829     'params' => 'int operation [, int &wouldblock]',
14830     'description' => 'Portable file locking',
14831   ),
14832   'SplFileObject::fflush' => 
14833   array (
14834     'return' => 'bool',
14835     'params' => '',
14836     'description' => 'Flush the file',
14837   ),
14838   'SplFileObject::ftell' => 
14839   array (
14840     'return' => 'int',
14841     'params' => '',
14842     'description' => 'Return current file position',
14843   ),
14844   'SplFileObject::fseek' => 
14845   array (
14846     'return' => 'int',
14847     'params' => 'int pos [, int whence = SEEK_SET]',
14848     'description' => 'Return current file position',
14849   ),
14850   'SplFileObject::fgetc' => 
14851   array (
14852     'return' => 'int',
14853     'params' => '',
14854     'description' => 'Get a character form the file',
14855   ),
14856   'SplFileObject::fgetss' => 
14857   array (
14858     'return' => 'string',
14859     'params' => '[string allowable_tags]',
14860     'description' => 'Get a line from file pointer and strip HTML tags',
14861   ),
14862   'SplFileObject::fpassthru' => 
14863   array (
14864     'return' => 'int',
14865     'params' => '',
14866     'description' => 'Output all remaining data from a file pointer',
14867   ),
14868   'SplFileObject::fscanf' => 
14869   array (
14870     'return' => 'bool',
14871     'params' => 'string format [, string ...]',
14872     'description' => 'Implements a mostly ANSI compatible fscanf()',
14873   ),
14874   'SplFileObject::fwrite' => 
14875   array (
14876     'return' => 'mixed',
14877     'params' => 'string str [, int length]',
14878     'description' => 'Binary-safe file write',
14879   ),
14880   'SplFileObject::fstat' => 
14881   array (
14882     'return' => 'bool',
14883     'params' => '',
14884     'description' => 'Stat() on a filehandle',
14885   ),
14886   'SplFileObject::ftruncate' => 
14887   array (
14888     'return' => 'bool',
14889     'params' => 'int size',
14890     'description' => 'Truncate file to \'size\' length',
14891   ),
14892   'SplFileObject::seek' => 
14893   array (
14894     'return' => 'void',
14895     'params' => 'int line_pos',
14896     'description' => 'Seek to specified line',
14897   ),
14898   'ArrayObject::offsetExists' => 
14899   array (
14900     'return' => 'bool',
14901     'params' => 'mixed $index',
14902     'description' => 'proto bool ArrayIterator::offsetExists(mixed $index)Returns whether the requested $index exists.',
14903   ),
14904   'ArrayObject::offsetGet' => 
14905   array (
14906     'return' => 'bool',
14907     'params' => 'mixed $index',
14908     'description' => 'proto bool ArrayIterator::offsetGet(mixed $index)Returns the value at the specified $index.',
14909   ),
14910   'ArrayObject::offsetSet' => 
14911   array (
14912     'return' => 'void',
14913     'params' => 'mixed $index, mixed $newval',
14914     'description' => 'proto void ArrayIterator::offsetSet(mixed $index, mixed $newval)Sets the value at the specified $index to $newval.',
14915   ),
14916   'ArrayObject::append' => 
14917   array (
14918     'return' => 'void',
14919     'params' => 'mixed $newval',
14920     'description' => 'proto void ArrayIterator::append(mixed $newval)Appends the value (cannot be called for objects).',
14921   ),
14922   'ArrayObject::offsetUnset' => 
14923   array (
14924     'return' => 'void',
14925     'params' => 'mixed $index',
14926     'description' => 'proto void ArrayIterator::offsetUnset(mixed $index)Unsets the value at the specified $index.',
14927   ),
14928   'ArrayObject::__construct' => 
14929   array (
14930     'return' => 'void',
14931     'params' => 'array|object ar = array() [, int flags = 0 [, string iterator_class = "ArrayIterator"]]',
14932     'description' => 'proto void ArrayIterator::__construct(array|object ar = array() [, int flags = 0])Cronstructs a new array iterator from a path.',
14933   ),
14934   'ArrayObject::setIteratorClass' => 
14935   array (
14936     'return' => 'void',
14937     'params' => 'string iterator_class',
14938     'description' => 'Set the class used in getIterator.',
14939   ),
14940   'ArrayObject::getIteratorClass' => 
14941   array (
14942     'return' => 'string',
14943     'params' => '',
14944     'description' => 'Get the class used in getIterator.',
14945   ),
14946   'ArrayObject::getFlags' => 
14947   array (
14948     'return' => 'int',
14949     'params' => '',
14950     'description' => 'Get flags',
14951   ),
14952   'ArrayObject::setFlags' => 
14953   array (
14954     'return' => 'void',
14955     'params' => 'int flags',
14956     'description' => 'Set flags',
14957   ),
14958   'ArrayObject::exchangeArray' => 
14959   array (
14960     'return' => 'Array|Object',
14961     'params' => 'Array|Object ar = array()',
14962     'description' => 'Replace the referenced array or object with a new one and return the old one (right now copy - to be changed)',
14963   ),
14964   'ArrayObject::getIterator' => 
14965   array (
14966     'return' => 'ArrayIterator',
14967     'params' => '',
14968     'description' => 'Create a new iterator from a ArrayObject instance',
14969   ),
14970   'ArrayIterator::rewind' => 
14971   array (
14972     'return' => 'void',
14973     'params' => '',
14974     'description' => 'Rewind array back to the start',
14975   ),
14976   'ArrayIterator::seek' => 
14977   array (
14978     'return' => 'void',
14979     'params' => 'int $position',
14980     'description' => 'Seek to position.',
14981   ),
14982   'ArrayObject::count' => 
14983   array (
14984     'return' => 'int',
14985     'params' => '',
14986     'description' => 'proto int ArrayIterator::count()Return the number of elements in the Iterator.',
14987   ),
14988   'ArrayIterator::current' => 
14989   array (
14990     'return' => 'mixed|NULL',
14991     'params' => '',
14992     'description' => 'Return current array entry',
14993   ),
14994   'ArrayIterator::key' => 
14995   array (
14996     'return' => 'mixed|NULL',
14997     'params' => '',
14998     'description' => 'Return current array key',
14999   ),
15000   'ArrayIterator::next' => 
15001   array (
15002     'return' => 'void',
15003     'params' => '',
15004     'description' => 'Move to next entry',
15005   ),
15006   'ArrayIterator::valid' => 
15007   array (
15008     'return' => 'bool',
15009     'params' => '',
15010     'description' => 'Check whether array contains more entries',
15011   ),
15012   'RecursiveArrayIterator::hasChildren' => 
15013   array (
15014     'return' => 'bool',
15015     'params' => '',
15016     'description' => 'Check whether current element has children (e.g. is an array)',
15017   ),
15018   'RecursiveArrayIterator::getChildren' => 
15019   array (
15020     'return' => 'object',
15021     'params' => '',
15022     'description' => 'Create a sub iterator for the current element (same class as $this)',
15023   ),
15024   'hash' => 
15025   array (
15026     'return' => 'string',
15027     'params' => 'string algo, string data[, bool raw_output = false]',
15028     'description' => 'Generate a hash of a given input stringReturns lowercase hexits by default',
15029   ),
15030   'hash_file' => 
15031   array (
15032     'return' => 'string',
15033     'params' => 'string algo, string filename[, bool raw_output = false]',
15034     'description' => 'Generate a hash of a given fileReturns lowercase hexits by default',
15035   ),
15036   'hash_hmac' => 
15037   array (
15038     'return' => 'string',
15039     'params' => 'string algo, string data, string key[, bool raw_output = false]',
15040     'description' => 'Generate a hash of a given input string with a key using HMACReturns lowercase hexits by default',
15041   ),
15042   'hash_hmac_file' => 
15043   array (
15044     'return' => 'string',
15045     'params' => 'string algo, string filename, string key[, bool raw_output = false]',
15046     'description' => 'Generate a hash of a given file with a key using HMACReturns lowercase hexits by default',
15047   ),
15048   'hash_init' => 
15049   array (
15050     'return' => 'resource',
15051     'params' => 'string algo[, int options, string key]',
15052     'description' => 'Initialize a hashing context',
15053   ),
15054   'hash_update' => 
15055   array (
15056     'return' => 'bool',
15057     'params' => 'resource context, string data',
15058     'description' => 'Pump data into the hashing algorithm',
15059   ),
15060   'hash_update_stream' => 
15061   array (
15062     'return' => 'int',
15063     'params' => 'resource context, resource handle[, integer length]',
15064     'description' => 'Pump data into the hashing algorithm from an open stream',
15065   ),
15066   'hash_update_file' => 
15067   array (
15068     'return' => 'bool',
15069     'params' => 'resource context, string filename[, resource context]',
15070     'description' => 'Pump data into the hashing algorithm from a file',
15071   ),
15072   'hash_final' => 
15073   array (
15074     'return' => 'string',
15075     'params' => 'resource context[, bool raw_output=false]',
15076     'description' => 'Output resulting digest',
15077   ),
15078   'hash_algos' => 
15079   array (
15080     'return' => 'array',
15081     'params' => 'void',
15082     'description' => 'Return a list of registered hashing algorithms',
15083   ),
15084   'sybase_unbuffered_query' => 
15085   array (
15086     'return' => 'int',
15087     'params' => 'string query [, int link_id]',
15088     'description' => 'Send Sybase query',
15089   ),
15090   'sybase_fetch_assoc' => 
15091   array (
15092     'return' => 'array',
15093     'params' => 'int result',
15094     'description' => 'Fetch row as array without numberic indices',
15095   ),
15096   'sybase_min_client_severity' => 
15097   array (
15098     'return' => 'void',
15099     'params' => 'int severity',
15100     'description' => 'Sets minimum client severity',
15101   ),
15102   'sybase_min_server_severity' => 
15103   array (
15104     'return' => 'void',
15105     'params' => 'int severity',
15106     'description' => 'Sets minimum server severity',
15107   ),
15108   'sybase_deadlock_retry_count' => 
15109   array (
15110     'return' => 'void',
15111     'params' => 'int retry_count',
15112     'description' => 'Sets deadlock retry count',
15113   ),
15114   'sybase_set_message_handler' => 
15115   array (
15116     'return' => 'bool',
15117     'params' => 'mixed error_func [, resource connection]',
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   ),
15120   'mhash_count' => 
15121   array (
15122     'return' => 'int',
15123     'params' => 'void',
15124     'description' => 'Gets the number of available hashes',
15125   ),
15126   'mhash_get_block_size' => 
15127   array (
15128     'return' => 'int',
15129     'params' => 'int hash',
15130     'description' => 'Gets the block size of hash',
15131   ),
15132   'mhash_get_hash_name' => 
15133   array (
15134     'return' => 'string',
15135     'params' => 'int hash',
15136     'description' => 'Gets the name of hash',
15137   ),
15138   'mhash' => 
15139   array (
15140     'return' => 'string',
15141     'params' => 'int hash, string data [, string key]',
15142     'description' => 'Hash data with hash',
15143   ),
15144   'mhash_keygen_s2k' => 
15145   array (
15146     'return' => 'string',
15147     'params' => 'int hash, string input_password, string salt, int bytes',
15148     'description' => 'Generates a key using hash functions',
15149   ),
15150   'tidy_parse_string' => 
15151   array (
15152     'return' => 'bool',
15153     'params' => 'string input [, mixed config_options [, string encoding]]',
15154     'description' => 'Parse a document stored in a string',
15155   ),
15156   'tidy_get_error_buffer' => 
15157   array (
15158     'return' => 'string',
15159     'params' => '[boolean detailed]',
15160     'description' => 'Return warnings and errors which occured parsing the specified document',
15161   ),
15162   'tidy_get_output' => 
15163   array (
15164     'return' => 'string',
15165     'params' => '',
15166     'description' => 'Return a string representing the parsed tidy markup',
15167   ),
15168   'tidy_parse_file' => 
15169   array (
15170     'return' => 'boolean',
15171     'params' => 'string file [, mixed config_options [, string encoding [, bool use_include_path]]]',
15172     'description' => 'Parse markup in file or URI',
15173   ),
15174   'tidy_clean_repair' => 
15175   array (
15176     'return' => 'boolean',
15177     'params' => '',
15178     'description' => 'Execute configured cleanup and repair operations on parsed markup',
15179   ),
15180   'tidy_repair_string' => 
15181   array (
15182     'return' => 'boolean',
15183     'params' => 'string data [, mixed config_file [, string encoding]]',
15184     'description' => 'Repair a string using an optionally provided configuration file',
15185   ),
15186   'tidy_repair_file' => 
15187   array (
15188     'return' => 'boolean',
15189     'params' => 'string filename [, mixed config_file [, string encoding [, bool use_include_path]]]',
15190     'description' => 'Repair a file using an optionally provided configuration file',
15191   ),
15192   'tidy_diagnose' => 
15193   array (
15194     'return' => 'boolean',
15195     'params' => '',
15196     'description' => 'Run configured diagnostics on parsed and repaired markup.',
15197   ),
15198   'tidy_get_release' => 
15199   array (
15200     'return' => 'string',
15201     'params' => '',
15202     'description' => 'Get release date (version) for Tidy library',
15203   ),
15204   'tidy_get_opt_doc' => 
15205   array (
15206     'return' => 'string',
15207     'params' => 'tidy resource, string optname',
15208     'description' => 'Returns the documentation for the given option name',
15209   ),
15210   'tidy_get_config' => 
15211   array (
15212     'return' => 'array',
15213     'params' => '',
15214     'description' => 'Get current Tidy configuarion',
15215   ),
15216   'tidy_get_status' => 
15217   array (
15218     'return' => 'int',
15219     'params' => '',
15220     'description' => 'Get status of specfied document.',
15221   ),
15222   'tidy_get_html_ver' => 
15223   array (
15224     'return' => 'int',
15225     'params' => '',
15226     'description' => 'Get the Detected HTML version for the specified document.',
15227   ),
15228   'tidy_is_xhtml' => 
15229   array (
15230     'return' => 'boolean',
15231     'params' => '',
15232     'description' => 'Indicates if the document is a generic (non HTML/XHTML) XML document.',
15233   ),
15234   'tidy_error_count' => 
15235   array (
15236     'return' => 'int',
15237     'params' => '',
15238     'description' => 'Returns the Number of Tidy errors encountered for specified document.',
15239   ),
15240   'tidy_warning_count' => 
15241   array (
15242     'return' => 'int',
15243     'params' => '',
15244     'description' => 'Returns the Number of Tidy warnings encountered for specified document.',
15245   ),
15246   'tidy_access_count' => 
15247   array (
15248     'return' => 'int',
15249     'params' => '',
15250     'description' => 'Returns the Number of Tidy accessibility warnings encountered for specified document.',
15251   ),
15252   'tidy_config_count' => 
15253   array (
15254     'return' => 'int',
15255     'params' => '',
15256     'description' => 'Returns the Number of Tidy configuration errors encountered for specified document.',
15257   ),
15258   'tidy_getopt' => 
15259   array (
15260     'return' => 'mixed',
15261     'params' => 'string option',
15262     'description' => 'Returns the value of the specified configuration option for the tidy document.',
15263   ),
15264   'tidy_get_root' => 
15265   array (
15266     'return' => 'TidyNode',
15267     'params' => '',
15268     'description' => 'Returns a TidyNode Object representing the root of the tidy parse tree',
15269   ),
15270   'tidy_get_html' => 
15271   array (
15272     'return' => 'TidyNode',
15273     'params' => '',
15274     'description' => 'Returns a TidyNode Object starting from the <HTML> tag of the tidy parse tree',
15275   ),
15276   'tidy_get_head' => 
15277   array (
15278     'return' => 'TidyNode',
15279     'params' => '',
15280     'description' => 'Returns a TidyNode Object starting from the <HEAD> tag of the tidy parse tree',
15281   ),
15282   'tidy_get_body' => 
15283   array (
15284     'return' => 'TidyNode',
15285     'params' => 'resource tidy',
15286     'description' => 'Returns a TidyNode Object starting from the <BODY> tag of the tidy parse tree',
15287   ),
15288   'tidyNode::hasChildren' => 
15289   array (
15290     'return' => 'boolean',
15291     'params' => '',
15292     'description' => 'Returns true if this node has children',
15293   ),
15294   'tidyNode::hasSiblings' => 
15295   array (
15296     'return' => 'boolean',
15297     'params' => '',
15298     'description' => 'Returns true if this node has siblings',
15299   ),
15300   'tidyNode::isComment' => 
15301   array (
15302     'return' => 'boolean',
15303     'params' => '',
15304     'description' => 'Returns true if this node represents a comment',
15305   ),
15306   'tidyNode::isHtml' => 
15307   array (
15308     'return' => 'boolean',
15309     'params' => '',
15310     'description' => 'Returns true if this node is part of a HTML document',
15311   ),
15312   'tidyNode::isXhtml' => 
15313   array (
15314     'return' => 'boolean',
15315     'params' => '',
15316     'description' => 'Returns true if this node is part of a XHTML document',
15317   ),
15318   'tidyNode::isXml' => 
15319   array (
15320     'return' => 'boolean',
15321     'params' => '',
15322     'description' => 'Returns true if this node is part of a XML document',
15323   ),
15324   'tidyNode::isText' => 
15325   array (
15326     'return' => 'boolean',
15327     'params' => '',
15328     'description' => 'Returns true if this node represents text (no markup)',
15329   ),
15330   'tidyNode::isJste' => 
15331   array (
15332     'return' => 'boolean',
15333     'params' => '',
15334     'description' => 'Returns true if this node is JSTE',
15335   ),
15336   'tidyNode::isAsp' => 
15337   array (
15338     'return' => 'boolean',
15339     'params' => '',
15340     'description' => 'Returns true if this node is ASP',
15341   ),
15342   'tidyNode::isPhp' => 
15343   array (
15344     'return' => 'boolean',
15345     'params' => '',
15346     'description' => 'Returns true if this node is PHP',
15347   ),
15348   'smfi_setflags' => 
15349   array (
15350     'return' => 'string',
15351     'params' => 'long flags',
15352     'description' => 'Sets the flags describing the actions the filter may take.',
15353   ),
15354   'smfi_settimeout' => 
15355   array (
15356     'return' => 'string',
15357     'params' => 'long timeout',
15358     'description' => 'Sets the number of seconds libmilter will wait for an MTA connection before timing out a socket.',
15359   ),
15360   'smfi_getsymval' => 
15361   array (
15362     'return' => 'string',
15363     'params' => 'string macro',
15364     'description' => 'Returns the value of the given macro or NULL if the macro is not defined.',
15365   ),
15366   'smfi_setreply' => 
15367   array (
15368     'return' => 'string',
15369     'params' => 'string rcode, string xcode, string message',
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   ),
15372   'smfi_addheader' => 
15373   array (
15374     'return' => 'string',
15375     'params' => 'string headerf, string headerv',
15376     'description' => 'Adds a header to the current message.',
15377   ),
15378   'smfi_chgheader' => 
15379   array (
15380     'return' => 'string',
15381     'params' => 'string headerf, string headerv',
15382     'description' => 'Changes a header\'s value for the current message.',
15383   ),
15384   'smfi_addrcpt' => 
15385   array (
15386     'return' => 'string',
15387     'params' => 'string rcpt',
15388     'description' => 'Add a recipient to the message envelope.',
15389   ),
15390   'smfi_delrcpt' => 
15391   array (
15392     'return' => 'string',
15393     'params' => 'string rcpt',
15394     'description' => 'Removes the named recipient from the current message\'s envelope.',
15395   ),
15396   'smfi_replacebody' => 
15397   array (
15398     'return' => 'string',
15399     'params' => 'string body',
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   ),
15402   'virtual' => 
15403   array (
15404     'return' => 'bool',
15405     'params' => 'string filename',
15406     'description' => 'Perform an Apache sub-request',
15407   ),
15408   'getallheaders' => 
15409   array (
15410     'return' => 'array',
15411     'params' => 'void',
15412     'description' => 'Alias for apache_request_headers()',
15413   ),
15414   'apache_response_headers' => 
15415   array (
15416     'return' => 'array',
15417     'params' => 'void',
15418     'description' => 'Fetch all HTTP response headers',
15419   ),
15420   'apache_note' => 
15421   array (
15422     'return' => 'string',
15423     'params' => 'string note_name [, string note_value]',
15424     'description' => 'Get and set Apache request notes',
15425   ),
15426   'apache_setenv' => 
15427   array (
15428     'return' => 'bool',
15429     'params' => 'string variable, string value [, bool walk_to_top]',
15430     'description' => 'Set an Apache subprocess_env variable',
15431   ),
15432   'apache_getenv' => 
15433   array (
15434     'return' => 'bool',
15435     'params' => 'string variable [, bool walk_to_top]',
15436     'description' => 'Get an Apache subprocess_env variable',
15437   ),
15438   'apache_get_version' => 
15439   array (
15440     'return' => 'string',
15441     'params' => 'void',
15442     'description' => 'Fetch Apache version',
15443   ),
15444   'apache_get_modules' => 
15445   array (
15446     'return' => 'array',
15447     'params' => 'void',
15448     'description' => 'Get a list of loaded Apache modules',
15449   ),
15450   'nsapi_virtual' => 
15451   array (
15452     'return' => 'bool',
15453     'params' => 'string uri',
15454     'description' => 'Perform an NSAPI sub-request',
15455   ),
15456   'nsapi_request_headers' => 
15457   array (
15458     'return' => 'array',
15459     'params' => 'void',
15460     'description' => 'Get all headers from the request',
15461   ),
15462   'nsapi_response_headers' => 
15463   array (
15464     'return' => 'array',
15465     'params' => 'void',
15466     'description' => 'Get all headers from the response',
15467   ),
15468   'ApacheRequest::filename' => 
15469   array (
15470     'return' => 'string',
15471     'params' => '[string new_filename]',
15472     'description' => '',
15473   ),
15474   'ApacheRequest::uri' => 
15475   array (
15476     'return' => 'string',
15477     'params' => '[string new_uri]',
15478     'description' => '',
15479   ),
15480   'ApacheRequest::unparsed_uri' => 
15481   array (
15482     'return' => 'string',
15483     'params' => '[string new_unparsed_uri]',
15484     'description' => '',
15485   ),
15486   'ApacheRequest::path_info' => 
15487   array (
15488     'return' => 'string',
15489     'params' => '[string new_path_info]',
15490     'description' => '',
15491   ),
15492   'ApacheRequest::args' => 
15493   array (
15494     'return' => 'string',
15495     'params' => '[string new_args]',
15496     'description' => '',
15497   ),
15498   'ApacheRequest::boundary' => 
15499   array (
15500     'return' => 'string',
15501     'params' => '',
15502     'description' => '',
15503   ),
15504   'ApacheRequest::content_type' => 
15505   array (
15506     'return' => 'string',
15507     'params' => '[string new_type]',
15508     'description' => '',
15509   ),
15510   'ApacheRequest::content_encoding' => 
15511   array (
15512     'return' => 'string',
15513     'params' => '[string new_encoding]',
15514     'description' => '',
15515   ),
15516   'ApacheRequest::handler' => 
15517   array (
15518     'return' => 'string',
15519     'params' => '[string new_handler]',
15520     'description' => '',
15521   ),
15522   'ApacheRequest::the_request' => 
15523   array (
15524     'return' => 'string',
15525     'params' => '',
15526     'description' => '',
15527   ),
15528   'ApacheRequest::protocol' => 
15529   array (
15530     'return' => 'string',
15531     'params' => '',
15532     'description' => '',
15533   ),
15534   'ApacheRequest::hostname' => 
15535   array (
15536     'return' => 'string',
15537     'params' => '',
15538     'description' => '',
15539   ),
15540   'ApacheRequest::status_line' => 
15541   array (
15542     'return' => 'string',
15543     'params' => '[string new_status_line]',
15544     'description' => '',
15545   ),
15546   'ApacheRequest::method' => 
15547   array (
15548     'return' => 'string',
15549     'params' => '',
15550     'description' => '',
15551   ),
15552   'ApacheRequest::proto_num' => 
15553   array (
15554     'return' => 'int',
15555     'params' => '',
15556     'description' => '',
15557   ),
15558   'ApacheRequest::assbackwards' => 
15559   array (
15560     'return' => 'int',
15561     'params' => '',
15562     'description' => '',
15563   ),
15564   'ApacheRequest::proxyreq' => 
15565   array (
15566     'return' => 'int',
15567     'params' => '[int new_proxyreq]',
15568     'description' => '',
15569   ),
15570   'ApacheRequest::chunked' => 
15571   array (
15572     'return' => 'int',
15573     'params' => '',
15574     'description' => '',
15575   ),
15576   'ApacheRequest::header_only' => 
15577   array (
15578     'return' => 'int',
15579     'params' => '',
15580     'description' => '',
15581   ),
15582   'ApacheRequest::request_time' => 
15583   array (
15584     'return' => 'int',
15585     'params' => '',
15586     'description' => '',
15587   ),
15588   'ApacheRequest::status' => 
15589   array (
15590     'return' => 'int',
15591     'params' => '[int new_status]',
15592     'description' => '',
15593   ),
15594   'ApacheRequest::method_number' => 
15595   array (
15596     'return' => 'int',
15597     'params' => '[int method_number]',
15598     'description' => '',
15599   ),
15600   'ApacheRequest::allowed' => 
15601   array (
15602     'return' => 'int',
15603     'params' => '[int allowed]',
15604     'description' => '',
15605   ),
15606   'ApacheRequest::bytes_sent' => 
15607   array (
15608     'return' => 'int',
15609     'params' => '',
15610     'description' => '',
15611   ),
15612   'ApacheRequest::mtime' => 
15613   array (
15614     'return' => 'int',
15615     'params' => '',
15616     'description' => '',
15617   ),
15618   'ApacheRequest::content_length' => 
15619   array (
15620     'return' => 'int',
15621     'params' => '[int new_content_length]',
15622     'description' => '',
15623   ),
15624   'ApacheRequest::remaining' => 
15625   array (
15626     'return' => 'int',
15627     'params' => '',
15628     'description' => '',
15629   ),
15630   'ApacheRequest::no_cache' => 
15631   array (
15632     'return' => 'int',
15633     'params' => '',
15634     'description' => '',
15635   ),
15636   'ApacheRequest::no_local_copy' => 
15637   array (
15638     'return' => 'int',
15639     'params' => '',
15640     'description' => '',
15641   ),
15642   'ApacheRequest::read_body' => 
15643   array (
15644     'return' => 'int',
15645     'params' => '',
15646     'description' => '',
15647   ),
15648   'apache_request_headers_in' => 
15649   array (
15650     'return' => 'array',
15651     'params' => '',
15652     'description' => '* fetch all incoming request headers',
15653   ),
15654   'apache_request_headers_out' => 
15655   array (
15656     'return' => 'array',
15657     'params' => '[{string name|array list} [, string value [, bool replace = false]]]',
15658     'description' => '* fetch all outgoing request headers',
15659   ),
15660   'apache_request_err_headers_out' => 
15661   array (
15662     'return' => 'array',
15663     'params' => '[{string name|array list} [, string value [, bool replace = false]]]',
15664     'description' => '* fetch all headers that go out in case of an error or a subrequest',
15665   ),
15666   'apache_request_server_port' => 
15667   array (
15668     'return' => 'int',
15669     'params' => '',
15670     'description' => '',
15671   ),
15672   'apache_request_remote_host' => 
15673   array (
15674     'return' => 'int',
15675     'params' => '[int type]',
15676     'description' => '',
15677   ),
15678   'apache_request_update_mtime' => 
15679   array (
15680     'return' => 'long',
15681     'params' => '[int dependency_mtime]',
15682     'description' => '',
15683   ),
15684   'apache_request_set_etag' => 
15685   array (
15686     'return' => 'void',
15687     'params' => '',
15688     'description' => '',
15689   ),
15690   'apache_request_set_last_modified' => 
15691   array (
15692     'return' => 'void',
15693     'params' => '',
15694     'description' => '',
15695   ),
15696   'apache_request_meets_conditions' => 
15697   array (
15698     'return' => 'long',
15699     'params' => '',
15700     'description' => '',
15701   ),
15702   'apache_request_discard_request_body' => 
15703   array (
15704     'return' => 'long',
15705     'params' => '',
15706     'description' => '',
15707   ),
15708   'apache_request_satisfies' => 
15709   array (
15710     'return' => 'long',
15711     'params' => '',
15712     'description' => '',
15713   ),
15714   'apache_request_is_initial_req' => 
15715   array (
15716     'return' => 'bool',
15717     'params' => '',
15718     'description' => '',
15719   ),
15720   'apache_request_some_auth_required' => 
15721   array (
15722     'return' => 'bool',
15723     'params' => '',
15724     'description' => '',
15725   ),
15726   'apache_request_auth_type' => 
15727   array (
15728     'return' => 'string',
15729     'params' => '',
15730     'description' => '',
15731   ),
15732   'apache_request_auth_name' => 
15733   array (
15734     'return' => 'string',
15735     'params' => '',
15736     'description' => '',
15737   ),
15738   'apache_request_log_error' => 
15739   array (
15740     'return' => 'boolean',
15741     'params' => 'string message, [long facility]',
15742     'description' => '',
15743   ),
15744   'apache_request_sub_req_lookup_uri' => 
15745   array (
15746     'return' => 'object',
15747     'params' => 'string uri',
15748     'description' => 'Returns sub-request for the specified uri.  You wouldneed to run it yourself with run()',
15749   ),
15750   'apache_request_sub_req_lookup_file' => 
15751   array (
15752     'return' => 'object',
15753     'params' => 'string file',
15754     'description' => 'Returns sub-request for the specified file.  You wouldneed to run it yourself with run().',
15755   ),
15756   'apache_request_sub_req_method_uri' => 
15757   array (
15758     'return' => 'object',
15759     'params' => 'string method, string uri',
15760     'description' => 'Returns sub-request for the specified file.  You wouldneed to run it yourself with run().',
15761   ),
15762   'apache_request_run' => 
15763   array (
15764     'return' => 'long',
15765     'params' => '',
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   ),
15768   'apache_child_terminate' => 
15769   array (
15770     'return' => 'bool',
15771     'params' => 'void',
15772     'description' => 'Terminate apache process after this request',
15773   ),
15774   'apache_request_headers' => 
15775   array (
15776     'return' => 'array',
15777     'params' => 'void',
15778     'description' => 'Fetch all HTTP request headers',
15779   ),
15780   'apache_lookup_uri' => 
15781   array (
15782     'return' => 'object',
15783     'params' => 'string URI',
15784     'description' => 'Perform a partial request of the given URI to obtain information about it',
15785   ),
15786   'apache_reset_timeout' => 
15787   array (
15788     'return' => 'bool',
15789     'params' => 'void',
15790     'description' => 'Reset the Apache write timer',
15791   ),
15792   'stream_wrapper_register' => 
15793   array (
15794     'return' => 'bool',
15795     'params' => 'string protocol, string classname',
15796     'description' => 'Registers a custom URL protocol handler class',
15797   ),
15798   'stream_wrapper_unregister' => 
15799   array (
15800     'return' => 'bool',
15801     'params' => 'string protocol',
15802     'description' => 'Unregister a wrapper for the life of the current request.',
15803   ),
15804   'stream_wrapper_restore' => 
15805   array (
15806     'return' => 'bool',
15807     'params' => 'string protocol',
15808     'description' => 'Restore the original protocol handler, overriding if necessary',
15809   ),
15810   'set_time_limit' => 
15811   array (
15812     'return' => 'bool',
15813     'params' => 'int seconds',
15814     'description' => 'Sets the maximum time a script can run',
15815   ),
15816   'ob_list_handlers' => 
15817   array (
15818     'return' => 'false|array',
15819     'params' => '',
15820     'description' => '*  List all output_buffers in an array',
15821   ),
15822   'ob_start' => 
15823   array (
15824     'return' => 'bool',
15825     'params' => '[ string|array user_function [, int chunk_size [, bool erase]]]',
15826     'description' => 'Turn on Output Buffering (specifying an optional output handler).',
15827   ),
15828   'ob_flush' => 
15829   array (
15830     'return' => 'bool',
15831     'params' => 'void',
15832     'description' => 'Flush (send) contents of the output buffer. The last buffer content is sent to next buffer',
15833   ),
15834   'ob_clean' => 
15835   array (
15836     'return' => 'bool',
15837     'params' => 'void',
15838     'description' => 'Clean (delete) the current output buffer',
15839   ),
15840   'ob_end_flush' => 
15841   array (
15842     'return' => 'bool',
15843     'params' => 'void',
15844     'description' => 'Flush (send) the output buffer, and delete current output buffer',
15845   ),
15846   'ob_end_clean' => 
15847   array (
15848     'return' => 'bool',
15849     'params' => 'void',
15850     'description' => 'Clean the output buffer, and delete current output buffer',
15851   ),
15852   'ob_get_flush' => 
15853   array (
15854     'return' => 'bool',
15855     'params' => 'void',
15856     'description' => 'Get current buffer contents, flush (send) the output buffer, and delete current output buffer',
15857   ),
15858   'ob_get_clean' => 
15859   array (
15860     'return' => 'bool',
15861     'params' => 'void',
15862     'description' => 'Get current buffer contents and delete current output buffer',
15863   ),
15864   'ob_get_contents' => 
15865   array (
15866     'return' => 'string',
15867     'params' => 'void',
15868     'description' => 'Return the contents of the output buffer',
15869   ),
15870   'ob_get_level' => 
15871   array (
15872     'return' => 'int',
15873     'params' => 'void',
15874     'description' => 'Return the nesting level of the output buffer',
15875   ),
15876   'ob_get_length' => 
15877   array (
15878     'return' => 'int',
15879     'params' => 'void',
15880     'description' => 'Return the length of the output buffer',
15881   ),
15882   'ob_get_status' => 
15883   array (
15884     'return' => 'false|array',
15885     'params' => '[bool full_status]',
15886     'description' => 'Return the status of the active or all output buffers',
15887   ),
15888   'ob_implicit_flush' => 
15889   array (
15890     'return' => 'void',
15891     'params' => '[int flag]',
15892     'description' => 'Turn implicit flush on/off and is equivalent to calling flush() after every output call',
15893   ),
15894   'output_reset_rewrite_vars' => 
15895   array (
15896     'return' => 'bool',
15897     'params' => 'void',
15898     'description' => 'Reset(clear) URL rewriter values',
15899   ),
15900   'output_add_rewrite_var' => 
15901   array (
15902     'return' => 'bool',
15903     'params' => 'string name, string value',
15904     'description' => 'Add URL rewriter values',
15905   ),
15906   'zend_version' => 
15907   array (
15908     'return' => 'string',
15909     'params' => 'void',
15910     'description' => 'Get the version of the Zend Engine',
15911   ),
15912   'func_num_args' => 
15913   array (
15914     'return' => 'int',
15915     'params' => 'void',
15916     'description' => 'Get the number of arguments that were passed to the function',
15917   ),
15918   'func_get_arg' => 
15919   array (
15920     'return' => 'mixed',
15921     'params' => 'int arg_num',
15922     'description' => 'Get the $arg_num\'th argument that was passed to the function',
15923   ),
15924   'func_get_args' => 
15925   array (
15926     'return' => 'array',
15927     'params' => '',
15928     'description' => 'Get an array of the arguments that were passed to the function',
15929   ),
15930   'strlen' => 
15931   array (
15932     'return' => 'int',
15933     'params' => 'string str',
15934     'description' => 'Get string length',
15935   ),
15936   'strcmp' => 
15937   array (
15938     'return' => 'int',
15939     'params' => 'string str1, string str2',
15940     'description' => 'Binary safe string comparison',
15941   ),
15942   'strncmp' => 
15943   array (
15944     'return' => 'int',
15945     'params' => 'string str1, string str2, int len',
15946     'description' => 'Binary safe string comparison',
15947   ),
15948   'strcasecmp' => 
15949   array (
15950     'return' => 'int',
15951     'params' => 'string str1, string str2',
15952     'description' => 'Binary safe case-insensitive string comparison',
15953   ),
15954   'strncasecmp' => 
15955   array (
15956     'return' => 'int',
15957     'params' => 'string str1, string str2, int len',
15958     'description' => 'Binary safe string comparison',
15959   ),
15960   'each' => 
15961   array (
15962     'return' => 'array',
15963     'params' => 'array arr',
15964     'description' => 'Return the currently pointed key..value pair in the passed array, and advance the pointer to the next element',
15965   ),
15966   'error_reporting' => 
15967   array (
15968     'return' => 'int',
15969     'params' => 'int new_error_level=null',
15970     'description' => 'Return the current error_reporting level, and if an argument was passed - change to the new level',
15971   ),
15972   'define' => 
15973   array (
15974     'return' => 'bool',
15975     'params' => 'string constant_name, mixed value, boolean case_sensitive=true',
15976     'description' => 'Define a new constant',
15977   ),
15978   'defined' => 
15979   array (
15980     'return' => 'bool',
15981     'params' => 'string constant_name',
15982     'description' => 'Check whether a constant exists',
15983   ),
15984   'get_class' => 
15985   array (
15986     'return' => 'string',
15987     'params' => '[object object]',
15988     'description' => 'Retrieves the class name',
15989   ),
15990   'get_parent_class' => 
15991   array (
15992     'return' => 'string',
15993     'params' => '[mixed object]',
15994     'description' => 'Retrieves the parent class name for object or class or current scope.',
15995   ),
15996   'is_subclass_of' => 
15997   array (
15998     'return' => 'bool',
15999     'params' => 'object object, string class_name',
16000     'description' => 'Returns true if the object has this class as one of its parents',
16001   ),
16002   'is_a' => 
16003   array (
16004     'return' => 'bool',
16005     'params' => 'object object, string class_name',
16006     'description' => 'Returns true if the object is of this class or has this class as one of its parents',
16007   ),
16008   'get_class_vars' => 
16009   array (
16010     'return' => 'array',
16011     'params' => 'string class_name',
16012     'description' => 'Returns an array of default properties of the class.',
16013   ),
16014   'get_object_vars' => 
16015   array (
16016     'return' => 'array',
16017     'params' => 'object obj',
16018     'description' => 'Returns an array of object properties',
16019   ),
16020   'get_class_methods' => 
16021   array (
16022     'return' => 'array',
16023     'params' => 'mixed class',
16024     'description' => 'Returns an array of method names for class or class instance.',
16025   ),
16026   'method_exists' => 
16027   array (
16028     'return' => 'bool',
16029     'params' => 'object object, string method',
16030     'description' => 'Checks if the class method exists',
16031   ),
16032   'property_exists' => 
16033   array (
16034     'return' => 'bool',
16035     'params' => 'mixed object_or_class, string property_name',
16036     'description' => 'Checks if the object or class has a property',
16037   ),
16038   'class_exists' => 
16039   array (
16040     'return' => 'bool',
16041     'params' => 'string classname [, bool autoload]',
16042     'description' => 'Checks if the class exists',
16043   ),
16044   'interface_exists' => 
16045   array (
16046     'return' => 'bool',
16047     'params' => 'string classname [, bool autoload]',
16048     'description' => 'Checks if the class exists',
16049   ),
16050   'function_exists' => 
16051   array (
16052     'return' => 'bool',
16053     'params' => 'string function_name',
16054     'description' => 'Checks if the function exists',
16055   ),
16056   'leak' => 
16057   array (
16058     'return' => 'void',
16059     'params' => 'int num_bytes=3',
16060     'description' => 'Cause an intentional memory leak, for testing/debugging purposes',
16061   ),
16062   'get_included_files' => 
16063   array (
16064     'return' => 'array',
16065     'params' => 'void',
16066     'description' => 'Returns an array with the file names that were include_once()\'d',
16067   ),
16068   'trigger_error' => 
16069   array (
16070     'return' => 'void',
16071     'params' => 'string messsage [, int error_type]',
16072     'description' => 'Generates a user-level error/warning/notice message',
16073   ),
16074   'set_error_handler' => 
16075   array (
16076     'return' => 'string',
16077     'params' => 'string error_handler [, int error_types]',
16078     'description' => 'Sets a user-defined error handler function.  Returns the previously defined error handler, or false on error',
16079   ),
16080   'restore_error_handler' => 
16081   array (
16082     'return' => 'void',
16083     'params' => 'void',
16084     'description' => 'Restores the previously defined error handler function',
16085   ),
16086   'set_exception_handler' => 
16087   array (
16088     'return' => 'string',
16089     'params' => 'callable exception_handler',
16090     'description' => 'Sets a user-defined exception handler function.  Returns the previously defined exception handler, or false on error',
16091   ),
16092   'restore_exception_handler' => 
16093   array (
16094     'return' => 'void',
16095     'params' => 'void',
16096     'description' => 'Restores the previously defined exception handler function',
16097   ),
16098   'get_declared_classes' => 
16099   array (
16100     'return' => 'array',
16101     'params' => '',
16102     'description' => 'Returns an array of all declared classes.',
16103   ),
16104   'get_declared_interfaces' => 
16105   array (
16106     'return' => 'array',
16107     'params' => '',
16108     'description' => 'Returns an array of all declared interfaces.',
16109   ),
16110   'get_defined_functions' => 
16111   array (
16112     'return' => 'array',
16113     'params' => 'void',
16114     'description' => 'Returns an array of all defined functions',
16115   ),
16116   'get_defined_vars' => 
16117   array (
16118     'return' => 'array',
16119     'params' => 'void',
16120     'description' => 'Returns an associative array of names and values of all currently defined variable names (variables in the current scope)',
16121   ),
16122   'create_function' => 
16123   array (
16124     'return' => 'string',
16125     'params' => 'string args, string code',
16126     'description' => 'Creates an anonymous function, and returns its name (funny, eh?)',
16127   ),
16128   'get_resource_type' => 
16129   array (
16130     'return' => 'string',
16131     'params' => 'resource res',
16132     'description' => 'Get the resource type name for a given resource',
16133   ),
16134   'get_loaded_extensions' => 
16135   array (
16136     'return' => 'array',
16137     'params' => 'void',
16138     'description' => 'Return an array containing names of loaded extensions',
16139   ),
16140   'get_defined_constants' => 
16141   array (
16142     'return' => 'array',
16143     'params' => 'void',
16144     'description' => 'Return an array containing the names and values of all defined constants',
16145   ),
16146   'debug_backtrace' => 
16147   array (
16148     'return' => 'array',
16149     'params' => 'void',
16150     'description' => 'Return backtrace as array',
16151   ),
16152   'extension_loaded' => 
16153   array (
16154     'return' => 'bool',
16155     'params' => 'string extension_name',
16156     'description' => 'Returns true if the named extension is loaded',
16157   ),
16158   'get_extension_funcs' => 
16159   array (
16160     'return' => 'array',
16161     'params' => 'string extension_name',
16162     'description' => 'Returns an array with the names of functions belonging to the named extension',
16163   ),
16164   'Exception::__clone' => 
16165   array (
16166     'return' => 'Exception',
16167     'params' => '',
16168     'description' => 'Clone the exception object',
16169   ),
16170   'Exception::getFile' => 
16171   array (
16172     'return' => 'string',
16173     'params' => '',
16174     'description' => 'Get the file in which the exception occurred',
16175   ),
16176   'Exception::getLine' => 
16177   array (
16178     'return' => 'int',
16179     'params' => '',
16180     'description' => 'Get the line in which the exception occurred',
16181   ),
16182   'Exception::getMessage' => 
16183   array (
16184     'return' => 'string',
16185     'params' => '',
16186     'description' => 'Get the exception message',
16187   ),
16188   'Exception::getCode' => 
16189   array (
16190     'return' => 'int',
16191     'params' => '',
16192     'description' => 'Get the exception code',
16193   ),
16194   'Exception::getTrace' => 
16195   array (
16196     'return' => 'array',
16197     'params' => '',
16198     'description' => 'Get the stack trace for the location in which the exception occurred',
16199   ),
16200   'ErrorException::getSeverity' => 
16201   array (
16202     'return' => 'int',
16203     'params' => '',
16204     'description' => 'Get the exception severity',
16205   ),
16206   'Exception::getTraceAsString' => 
16207   array (
16208     'return' => 'string',
16209     'params' => '',
16210     'description' => 'Obtain the backtrace for the exception as a string (instead of an array)',
16211   ),
16212   'Exception::__toString' => 
16213   array (
16214     'return' => 'string',
16215     'params' => '',
16216     'description' => 'Obtain the string representation of the Exception object',
16217   ),
16218 )    ;
16219
16220     public function get($k) {
16221         if (isset($this->prototype[$k])) {
16222             return $this->prototype[$k];
16223         } else {
16224             return false;
16225         }
16226     }
16227
16228     static function getInstance() {
16229         if (is_null(self::$instance)) {
16230             $class = __CLASS__;
16231             self::$instance = new $class();
16232         }
16233         return self::$instance;
16234     }
16235 }