WPide - Version 2.0.13

Version Description

  • Added colour assist - a colour picker that displays when you double click a hex colour code in the editor (see other notes for info).
  • Added a confirm box to stop you exiting the editor by mistake and losing unsaved chnages.
  • Added 'wpide_filesystem_root' filter (see other notes for info).
  • A number of bug fixes.
Download this release

Release Info

Developer WPsites
Plugin Icon 128x128 WPide
Version 2.0.13
Comparing to
See all releases

Code changes from version 2.0.12 to 2.0.13

WPide.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WPide
4
  Plugin URI: https://github.com/WPsites/WPide
5
  Description: WordPress code editor with auto completion of both WordPress and PHP functions with reference, syntax highlighting, line numbers, tabbed editing, automatic backup.
6
- Version: 2.0.12
7
  Author: Simon Dunton
8
  Author URI: http://www.wpsites.co.uk
9
  */
@@ -49,7 +49,9 @@ class wpide
49
  preg_match('#admin-ajax\.php$#', $_SERVER['PHP_SELF']) ){
50
 
51
 
52
- //force local file method for testing - you could force other methods 'direct', 'ssh', 'ftpext' or 'ftpsockets'
 
 
53
  $this->override_fs_method('direct');
54
 
55
  // Uncomment any of these calls to add the functionality that you need.
@@ -70,8 +72,11 @@ class wpide
70
 
71
  //setup ajax function for startup to get some debug info, checking permissions etc
72
  add_action('wp_ajax_wpide_startup_check', array( $this, 'wpide_startup_check' ) );
73
-
74
-
 
 
 
75
  }
76
 
77
 
@@ -99,9 +104,19 @@ class wpide
99
 
100
  }
101
 
102
- public static function add_admin_head()
103
  {
 
 
 
 
 
 
 
 
104
 
 
 
105
  }
106
 
107
 
@@ -123,18 +138,20 @@ class wpide
123
  //include ace theme
124
  wp_enqueue_script('ace-theme', plugins_url("ace-0.2.0/src/theme-dawn.js", __FILE__ ) );//monokai is nice
125
  // wordpress-completion tags
126
- wp_enqueue_script('wpide-wordpress-completion', plugins_url("js/autocomplete.wordpress.js", __FILE__ ) );
127
  // php-completion tags
128
- wp_enqueue_script('wpide-php-completion', plugins_url("js/autocomplete.php.js", __FILE__ ) );
129
  // load editor
130
  wp_enqueue_script('wpide-load-editor', plugins_url("js/load-editor.js", __FILE__ ) );
131
  // load autocomplete dropdown
132
  wp_enqueue_script('wpide-dd', plugins_url("js/jquery.dd.js", __FILE__ ) );
133
 
134
  // load jquery ui
135
- wp_enqueue_script('jquery-ui', plugins_url("js/jquery-ui-1.8.20.custom.min.js", __FILE__ ), array('jquery'), '1.8.20');
 
 
 
136
 
137
-
138
 
139
 
140
  }
@@ -168,11 +185,18 @@ class wpide
168
 
169
  //setup wp_filesystem api
170
  global $wp_filesystem;
 
 
 
 
 
 
 
171
  if ( ! WP_Filesystem($creds) )
172
  return false;
173
 
174
  $_POST['dir'] = urldecode($_POST['dir']);
175
- $root = WP_CONTENT_DIR;
176
 
177
  if( $wp_filesystem->exists($root . $_POST['dir']) ) {
178
  //$files = scandir($root . $_POST['dir']);
@@ -214,11 +238,17 @@ class wpide
214
 
215
  //setup wp_filesystem api
216
  global $wp_filesystem;
 
 
 
 
 
 
217
  if ( ! WP_Filesystem($creds) )
218
  return false;
219
 
220
 
221
- $root = WP_CONTENT_DIR;
222
  $file_name = $root . stripslashes($_POST['filename']);
223
  echo $wp_filesystem->get_contents($file_name);
224
  die(); // this is required to return a proper result
@@ -246,10 +276,16 @@ class wpide
246
 
247
  //setup wp_filesystem api
248
  global $wp_filesystem;
 
 
 
 
 
 
249
  if ( ! WP_Filesystem($creds) )
250
  return false;
251
 
252
- $root = WP_CONTENT_DIR;
253
 
254
  //check all required vars are passed
255
  if (strlen($_POST['path'])>0 && strlen($_POST['type'])>0 && strlen($_POST['file'])>0){
@@ -302,11 +338,17 @@ class wpide
302
 
303
  //setup wp_filesystem api
304
  global $wp_filesystem;
 
 
 
 
 
 
305
  if ( ! WP_Filesystem($creds) )
306
  echo "Cannot initialise the WP file system API";
307
 
308
  //save a copy of the file and create a backup just in case
309
- $root = WP_CONTENT_DIR;
310
  $file_name = $root . stripslashes($_POST['filename']);
311
 
312
  //set backup filename
@@ -347,12 +389,17 @@ class wpide
347
 
348
  //setup wp_filesystem api
349
  global $wp_filesystem;
350
-
 
 
 
 
 
351
  if ( ! WP_Filesystem($creds) )
352
  echo "Cannot initialise the WP file system API";
353
 
354
  //save a copy of the file and create a backup just in case
355
- $root = WP_CONTENT_DIR;
356
  $file_name = $root . stripslashes($_POST['filename']);
357
 
358
  //set backup filename
@@ -385,7 +432,7 @@ class wpide
385
  public static function wpide_startup_check() {
386
  global $wp_filesystem, $wp_version;
387
 
388
- echo "\n\n\n\nWPIDE STARUP CHECKS \n";
389
  echo "___________________ \n\n";
390
 
391
  //WordPress version
@@ -406,6 +453,17 @@ class wpide
406
 
407
  //setup wp_filesystem api
408
  $wpide_filesystem_before = $wp_filesystem;
 
 
 
 
 
 
 
 
 
 
 
409
  if ( ! WP_Filesystem($creds) ) {
410
 
411
  echo "There has been a problem initialising the filesystem API \n\n";
@@ -416,8 +474,8 @@ class wpide
416
  unset($wpide_filesystem_before);
417
 
418
 
419
- $root = WP_CONTENT_DIR;
420
-
421
 
422
  //Running webservers user and group
423
  echo "Web server user/group = " . getenv('APACHE_RUN_USER') . ":" . getenv('APACHE_RUN_GROUP') . "\n";
@@ -450,7 +508,7 @@ class wpide
450
  //themes folder editable
451
  echo "The wp-content/themes folder ". ( $wp_filesystem->is_readable( $root."/themes" )==1 ? "IS":"IS NOT" ) ." readable and ". ( $wp_filesystem->is_writable( $root."/themes" )==1 ? "IS":"IS NOT" ) ." writable by this method \n";
452
 
453
-
454
 
455
  echo "___________________ \n\n\n\n";
456
 
@@ -503,6 +561,7 @@ class wpide
503
  <script>
504
 
505
  var wpide_app_path = "<?php echo plugin_dir_url( __FILE__ ); ?>";
 
506
 
507
  function the_filetree() {
508
  jQuery('#wpide_file_browser').fileTree({ script: ajaxurl }, function(parent, file) {
@@ -580,31 +639,59 @@ class wpide
580
  });
581
  }
582
 
 
 
583
  jQuery(document).ready(function($) {
 
584
  // Handler for .ready() called.
585
  the_filetree() ;
586
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
587
 
588
-
589
-
590
-
591
 
592
  });
593
  </script>
594
 
595
- <?php
596
- $url = wp_nonce_url('admin.php?page=wpide','plugin-name-action_wpidenonce');
597
- if ( ! WP_Filesystem($creds) ) {
598
- request_filesystem_credentials($url, '', true, false, null);
599
- return;
600
- }
601
- ?>
602
 
603
  <div id="poststuff" class="metabox-holder has-right-sidebar">
604
 
605
  <div id="side-info-column" class="inner-sidebar">
606
 
607
- <div id="wpide_info"><div id="wpide_info_content"></div> </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
608
 
609
  <div id="submitdiv" class="postbox ">
610
  <h3 class="hndle"><span>Files</span></h3>
3
  Plugin Name: WPide
4
  Plugin URI: https://github.com/WPsites/WPide
5
  Description: WordPress code editor with auto completion of both WordPress and PHP functions with reference, syntax highlighting, line numbers, tabbed editing, automatic backup.
6
+ Version: 2.0.13
7
  Author: Simon Dunton
8
  Author URI: http://www.wpsites.co.uk
9
  */
49
  preg_match('#admin-ajax\.php$#', $_SERVER['PHP_SELF']) ){
50
 
51
 
52
+ // force local file method until I've worked out how to implement the other methods
53
+ // main problem being password wouldn't/isn't saved between requests
54
+ // you could force other methods 'direct', 'ssh', 'ftpext' or 'ftpsockets'
55
  $this->override_fs_method('direct');
56
 
57
  // Uncomment any of these calls to add the functionality that you need.
72
 
73
  //setup ajax function for startup to get some debug info, checking permissions etc
74
  add_action('wp_ajax_wpide_startup_check', array( $this, 'wpide_startup_check' ) );
75
+
76
+ //add a warning when navigating away from WPide
77
+ //it has to go after WordPress scripts otherwise WP clears the binding
78
+ add_action('admin_print_footer_scripts', array( $this, 'add_admin_nav_warning' ), 99 );
79
+
80
  }
81
 
82
 
104
 
105
  }
106
 
107
+ public static function add_admin_nav_warning()
108
  {
109
+ ?>
110
+ <script type="text/javascript">
111
+
112
+ jQuery(document).ready(function($) {
113
+ window.onbeforeunload = function() {
114
+ return 'You are attempting to navigate away from WPide. Make sure you have saved any changes made to your files otherwise they will be forgotten.' ;
115
+ }
116
+ });
117
 
118
+ </script>
119
+ <?php
120
  }
121
 
122
 
138
  //include ace theme
139
  wp_enqueue_script('ace-theme', plugins_url("ace-0.2.0/src/theme-dawn.js", __FILE__ ) );//monokai is nice
140
  // wordpress-completion tags
141
+ wp_enqueue_script('wpide-wordpress-completion', plugins_url("js/autocomplete/wordpress.js", __FILE__ ) );
142
  // php-completion tags
143
+ wp_enqueue_script('wpide-php-completion', plugins_url("js/autocomplete/php.js", __FILE__ ) );
144
  // load editor
145
  wp_enqueue_script('wpide-load-editor', plugins_url("js/load-editor.js", __FILE__ ) );
146
  // load autocomplete dropdown
147
  wp_enqueue_script('wpide-dd', plugins_url("js/jquery.dd.js", __FILE__ ) );
148
 
149
  // load jquery ui
150
+ wp_enqueue_script('jquery-ui', plugins_url("js/jquery-ui-1.9.2.custom.min.js", __FILE__ ), array('jquery'), '1.9.2');
151
+
152
+ // load color picker
153
+ wp_enqueue_script('ImageColorPicker', plugins_url("js/ImageColorPicker.js", __FILE__ ), array('jquery'), '0.3');
154
 
 
155
 
156
 
157
  }
185
 
186
  //setup wp_filesystem api
187
  global $wp_filesystem;
188
+ $url = wp_nonce_url('admin.php?page=wpide','plugin-name-action_wpidenonce');
189
+ $form_fields = null; // for now, but at some point the login info should be passed in here
190
+ if (false === ($creds = request_filesystem_credentials($url, FS_METHOD, false, false, $form_fields) ) ) {
191
+ // no credentials yet, just produced a form for the user to fill in
192
+ return true; // stop the normal page form from displaying
193
+ }
194
+
195
  if ( ! WP_Filesystem($creds) )
196
  return false;
197
 
198
  $_POST['dir'] = urldecode($_POST['dir']);
199
+ $root = apply_filters( 'wpide_filesystem_root', WP_CONTENT_DIR );
200
 
201
  if( $wp_filesystem->exists($root . $_POST['dir']) ) {
202
  //$files = scandir($root . $_POST['dir']);
238
 
239
  //setup wp_filesystem api
240
  global $wp_filesystem;
241
+ $url = wp_nonce_url('admin.php?page=wpide','plugin-name-action_wpidenonce');
242
+ $form_fields = null; // for now, but at some point the login info should be passed in here
243
+ if (false === ($creds = request_filesystem_credentials($url, FS_METHOD, false, false, $form_fields) ) ) {
244
+ // no credentials yet, just produced a form for the user to fill in
245
+ return true; // stop the normal page form from displaying
246
+ }
247
  if ( ! WP_Filesystem($creds) )
248
  return false;
249
 
250
 
251
+ $root = apply_filters( 'wpide_filesystem_root', WP_CONTENT_DIR );
252
  $file_name = $root . stripslashes($_POST['filename']);
253
  echo $wp_filesystem->get_contents($file_name);
254
  die(); // this is required to return a proper result
276
 
277
  //setup wp_filesystem api
278
  global $wp_filesystem;
279
+ $url = wp_nonce_url('admin.php?page=wpide','plugin-name-action_wpidenonce');
280
+ $form_fields = null; // for now, but at some point the login info should be passed in here
281
+ if (false === ($creds = request_filesystem_credentials($url, FS_METHOD, false, false, $form_fields) ) ) {
282
+ // no credentials yet, just produced a form for the user to fill in
283
+ return true; // stop the normal page form from displaying
284
+ }
285
  if ( ! WP_Filesystem($creds) )
286
  return false;
287
 
288
+ $root = apply_filters( 'wpide_filesystem_root', WP_CONTENT_DIR );
289
 
290
  //check all required vars are passed
291
  if (strlen($_POST['path'])>0 && strlen($_POST['type'])>0 && strlen($_POST['file'])>0){
338
 
339
  //setup wp_filesystem api
340
  global $wp_filesystem;
341
+ $url = wp_nonce_url('admin.php?page=wpide','plugin-name-action_wpidenonce');
342
+ $form_fields = null; // for now, but at some point the login info should be passed in here
343
+ if (false === ($creds = request_filesystem_credentials($url, FS_METHOD, false, false, $form_fields) ) ) {
344
+ // no credentials yet, just produced a form for the user to fill in
345
+ return true; // stop the normal page form from displaying
346
+ }
347
  if ( ! WP_Filesystem($creds) )
348
  echo "Cannot initialise the WP file system API";
349
 
350
  //save a copy of the file and create a backup just in case
351
+ $root = apply_filters( 'wpide_filesystem_root', WP_CONTENT_DIR );
352
  $file_name = $root . stripslashes($_POST['filename']);
353
 
354
  //set backup filename
389
 
390
  //setup wp_filesystem api
391
  global $wp_filesystem;
392
+ $url = wp_nonce_url('admin.php?page=wpide','plugin-name-action_wpidenonce');
393
+ $form_fields = null; // for now, but at some point the login info should be passed in here
394
+ if (false === ($creds = request_filesystem_credentials($url, FS_METHOD, false, false, $form_fields) ) ) {
395
+ // no credentials yet, just produced a form for the user to fill in
396
+ return true; // stop the normal page form from displaying
397
+ }
398
  if ( ! WP_Filesystem($creds) )
399
  echo "Cannot initialise the WP file system API";
400
 
401
  //save a copy of the file and create a backup just in case
402
+ $root = apply_filters( 'wpide_filesystem_root', WP_CONTENT_DIR );
403
  $file_name = $root . stripslashes($_POST['filename']);
404
 
405
  //set backup filename
432
  public static function wpide_startup_check() {
433
  global $wp_filesystem, $wp_version;
434
 
435
+ echo "\n\n\n\nWPIDE STARTUP CHECKS \n";
436
  echo "___________________ \n\n";
437
 
438
  //WordPress version
453
 
454
  //setup wp_filesystem api
455
  $wpide_filesystem_before = $wp_filesystem;
456
+
457
+ $url = wp_nonce_url('admin.php?page=wpide','plugin-name-action_wpidenonce');
458
+ $form_fields = null; // for now, but at some point the login info should be passed in here
459
+ ob_start();
460
+ if (false === ($creds = request_filesystem_credentials($url, FS_METHOD, false, false, $form_fields) ) ) {
461
+ // if we get here, then we don't have credentials yet,
462
+ // but have just produced a form for the user to fill in,
463
+ // so stop processing for now
464
+ //return true; // stop the normal page form from displaying
465
+ }
466
+ ob_end_clean();
467
  if ( ! WP_Filesystem($creds) ) {
468
 
469
  echo "There has been a problem initialising the filesystem API \n\n";
474
  unset($wpide_filesystem_before);
475
 
476
 
477
+ $root = apply_filters( 'wpide_filesystem_root', WP_CONTENT_DIR );
478
+ if ( isset($wp_filesystem) ){
479
 
480
  //Running webservers user and group
481
  echo "Web server user/group = " . getenv('APACHE_RUN_USER') . ":" . getenv('APACHE_RUN_GROUP') . "\n";
508
  //themes folder editable
509
  echo "The wp-content/themes folder ". ( $wp_filesystem->is_readable( $root."/themes" )==1 ? "IS":"IS NOT" ) ." readable and ". ( $wp_filesystem->is_writable( $root."/themes" )==1 ? "IS":"IS NOT" ) ." writable by this method \n";
510
 
511
+ }
512
 
513
  echo "___________________ \n\n\n\n";
514
 
561
  <script>
562
 
563
  var wpide_app_path = "<?php echo plugin_dir_url( __FILE__ ); ?>";
564
+ //dont think this is needed any more.. var wpide_file_root_url = "<?php echo apply_filters("wpide_file_root_url", WP_CONTENT_URL );?>";
565
 
566
  function the_filetree() {
567
  jQuery('#wpide_file_browser').fileTree({ script: ajaxurl }, function(parent, file) {
639
  });
640
  }
641
 
642
+
643
+
644
  jQuery(document).ready(function($) {
645
+
646
  // Handler for .ready() called.
647
  the_filetree() ;
648
 
649
+ //inialise the color assist
650
+ $("#wpide_color_assist img").ImageColorPicker({
651
+ afterColorSelected: function(event, color){
652
+ jQuery("#wpide_color_assist_input").val(color);
653
+ }
654
+ });
655
+ $("#wpide_color_assist").hide(); //hide it until it's needed
656
+
657
+ $("#wpide_color_assist_send").click(function(e){
658
+ e.preventDefault();
659
+ editor.insert( jQuery("#wpide_color_assist_input").val().replace('#', '') );
660
+
661
+ $("#wpide_color_assist").hide(); //hide it until it's needed again
662
+ });
663
+
664
+ $(".close_color_picker a").click(function(e){
665
+ e.preventDefault();
666
+ $("#wpide_color_assist").hide(); //hide it until it's needed again
667
+ });
668
 
669
+
670
+
 
671
 
672
  });
673
  </script>
674
 
675
+
 
 
 
 
 
 
676
 
677
  <div id="poststuff" class="metabox-holder has-right-sidebar">
678
 
679
  <div id="side-info-column" class="inner-sidebar">
680
 
681
+ <div id="wpide_info">
682
+ <div id="wpide_info_content"></div>
683
+ </div>
684
+ <br style="clear:both;" />
685
+ <div id="wpide_color_assist">
686
+ <div class="close_color_picker"><a href="close-color-picker">x</a></div>
687
+ <h3>Colour Assist</h3>
688
+ <img src='<?php echo plugins_url("images/color-wheel.png", __FILE__ ); ?>' />
689
+ <input type="button" class="button" id="wpide_color_assist_send" value="&lt; Send to editor" />
690
+ <input type="text" id="wpide_color_assist_input" name="wpide_color_assist_input" value="" />
691
+
692
+ </div>
693
+
694
+
695
 
696
  <div id="submitdiv" class="postbox ">
697
  <h3 class="hndle"><span>Files</span></h3>
images/color-wheel.png ADDED
Binary file
jqueryFileTree.js CHANGED
@@ -56,6 +56,17 @@ if(jQuery) (function($){
56
  $(c).removeClass('wait').append(data);
57
  if( o.root == t ) $(c).find('UL:hidden').show(); else $(c).find('UL:hidden').slideDown({ duration: o.expandSpeed, easing: o.expandEasing });
58
  bindTree(c);
 
 
 
 
 
 
 
 
 
 
 
59
  });
60
  }
61
 
@@ -79,6 +90,9 @@ if(jQuery) (function($){
79
  } else {
80
  h($(this).parent(), $(this).attr('rel'));
81
  }
 
 
 
82
  return false;
83
  });
84
  // Prevent A from triggering the # on non-click events
@@ -90,6 +104,8 @@ if(jQuery) (function($){
90
  jQuery.ajaxSetup({async:false}); //we need to wait until we get the response
91
  showTree( $(this), escape(o.root) );
92
  jQuery.ajaxSetup({async:true}); //enable async again
 
 
93
 
94
  //if nothing returned then let user know something wrong with permissions
95
  if ( $(this).children('.jqueryFileTree').length==0 ){
56
  $(c).removeClass('wait').append(data);
57
  if( o.root == t ) $(c).find('UL:hidden').show(); else $(c).find('UL:hidden').slideDown({ duration: o.expandSpeed, easing: o.expandEasing });
58
  bindTree(c);
59
+
60
+ //make files draggable
61
+ $("li.file", $("#wpide_file_browser") ).draggable({
62
+ cursor: "move",
63
+ handle: "a",
64
+ cursorAt: { top: 20, left: 20 },
65
+ helper: function( event ) {
66
+ return $( "<div>Image Path</div>" );
67
+ }
68
+ });
69
+
70
  });
71
  }
72
 
90
  } else {
91
  h($(this).parent(), $(this).attr('rel'));
92
  }
93
+
94
+
95
+
96
  return false;
97
  });
98
  // Prevent A from triggering the # on non-click events
104
  jQuery.ajaxSetup({async:false}); //we need to wait until we get the response
105
  showTree( $(this), escape(o.root) );
106
  jQuery.ajaxSetup({async:true}); //enable async again
107
+
108
+
109
 
110
  //if nothing returned then let user know something wrong with permissions
111
  if ( $(this).children('.jqueryFileTree').length==0 ){
js/ImageColorPicker.js ADDED
@@ -0,0 +1,231 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * jQuery ImageColorPicker Plugin v0.3
3
+ * http://github.com/Skarabaeus/ImageColorPicker
4
+ *
5
+ * Copyright 2010, Stefan Siebel
6
+ * Licensed under the MIT license.
7
+ * http://github.com/Skarabaeus/ImageColorPicker/MIT-LICENSE.txt
8
+ *
9
+ * Released under the MIT
10
+ *
11
+ * Date: Tue May 17 11:20:16 2011 -0700
12
+ */
13
+ (function(){
14
+ var uiImageColorPicker = function(){
15
+
16
+ var _d2h = function(d) {
17
+ var result;
18
+ if (! isNaN( parseInt(d) ) ) {
19
+ result = parseInt(d).toString(16);
20
+ } else {
21
+ result = d;
22
+ }
23
+
24
+ if (result.length === 1) {
25
+ result = "0" + result;
26
+ }
27
+ return result;
28
+ };
29
+
30
+ var _h2d = function(h) {
31
+ return parseInt(h,16);
32
+ };
33
+
34
+ var _pointerPos = {};
35
+
36
+ var _createImageColorPicker = function(widget) {
37
+ // store 2D context in widget for later access
38
+ widget.ctx = null;
39
+
40
+ // rgb
41
+ widget.color = [0, 0, 0];
42
+
43
+ // create additional DOM elements.
44
+ widget.$canvas = jQuery('<canvas class="ImageColorPickerCanvas"></canvas>');
45
+ widget.$canvas2 = jQuery('<canvas class="ImageColorPickerCanvasColor"></canvas>');
46
+
47
+ // add them to the DOM
48
+ widget.element.wrap('<div class="ImageColorPickerWrapper"></div>');
49
+ widget.$wrapper = widget.element.parent();
50
+ widget.$wrapper.append(widget.$canvas);
51
+ widget.$wrapper.append(widget.$canvas2);
52
+
53
+ if (typeof(widget.$canvas.get(0).getContext) === 'function') { // FF, Chrome, ...
54
+ widget.ctx = widget.$canvas.get(0).getContext('2d');
55
+ widget.ctx2 = widget.$canvas2.get(0).getContext('2d');
56
+
57
+ // this does not work yet!
58
+ } else {
59
+ widget.destroy();
60
+ if (console) {
61
+ console.log("ImageColor Picker: Can't get canvas context. Use "
62
+ + "Firefox, Chrome or include excanvas to your project.");
63
+ }
64
+
65
+ }
66
+
67
+ // draw the image in the canvas
68
+ var img = new Image();
69
+ img.src = widget.element.attr("src");
70
+ widget.$canvas.attr("width", img.width);
71
+ widget.$canvas.attr("height", img.height);
72
+
73
+ //the floating color
74
+ widget.$canvas2.attr("width", "40");
75
+ widget.$canvas2.attr("height", "40");
76
+
77
+ var canvas = widget.$canvas;
78
+ var mouse={x:0,y:0} //make an object to hold mouse position
79
+
80
+ canvas.onmousemove=function(e){mouse={x:e.pageX-this.offsetLeft,y:e.pageY-this.offsetTop};}
81
+ canvas.onmousemove=function(e){mouse={x:e.pageX-this.offsetLeft,y:e.pageY-this.offsetTop};}
82
+
83
+
84
+
85
+
86
+ widget.ctx.drawImage(img, 0, 0);
87
+
88
+ // get the image data.
89
+ try {
90
+ try {
91
+ widget.imageData = widget.ctx.getImageData(0, 0, img.width, img.height);
92
+ } catch (e1) {
93
+ netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead");
94
+ widget.imageData = widget.ctx.getImageData(0, 0, img.width, img.height);
95
+ }
96
+ } catch (e2) {
97
+ widget.destroy();
98
+ if (console) {
99
+ console.log("ImageColor Picker: Unable to access image data. "
100
+ + "This could be either due "
101
+ + "to the browser you are using (IE doesn't work) or image and script "
102
+ + "are saved on different servers or you run the script locally. ");
103
+ }
104
+ }
105
+
106
+ // hide the original image
107
+ widget.element.hide();
108
+
109
+ // for usage in events
110
+ var that = widget;
111
+
112
+ widget.$canvas.bind("mousemove", function(e){
113
+ var point = imageCoordinates( that, e.pageX, e.pageY );
114
+ var color = lookupColor( that.imageData, point );
115
+
116
+ updateCurrentColor( that, color.red, color.green, color.blue, point );
117
+ });
118
+
119
+ widget.$canvas.bind("click", function(e){
120
+ var point = imageCoordinates( that, e.pageX, e.pageY );
121
+ var color = lookupColor( that.imageData, point );
122
+
123
+ updateSelectedColor( that, color.red, color.green, color.blue );
124
+ that._trigger("afterColorSelected", 0, that.selectedColor());
125
+ });
126
+
127
+ widget.$canvas.bind("mouseleave", function(e){
128
+ widget.$canvas2.css("display", "none");
129
+ });
130
+
131
+ // hope that helps to prevent memory leaks
132
+ jQuery(window).unload(function(e){
133
+ that.destroy();
134
+ });
135
+ };
136
+
137
+ // for pageX and pageY, determine image coordinates using offset
138
+ var imageCoordinates = function( widget, pageX, pageY ) {
139
+ var offset = widget.$canvas.offset();
140
+
141
+ return { x: Math.round( pageX - offset.left ),
142
+ y: Math.round( pageY - offset.top ) };
143
+ }
144
+
145
+ // lookup color values for point [x,y] location in image
146
+ var lookupColor = function( imageData, point) {
147
+ var pixel = ((point.y * imageData.width) + point.x) * 4;
148
+
149
+ return { red: imageData.data[pixel],
150
+ green: imageData.data[(pixel + 1)],
151
+ blue: imageData.data[(pixel + 2)] }
152
+
153
+ }
154
+
155
+ var updateCurrentColor = function(widget, red, green, blue, point) {
156
+ var c = widget.ctx;
157
+ var c2 = widget.ctx2;
158
+ var canvasWidth = widget.$canvas.attr("width");
159
+ var canvasHeight = widget.$canvas.attr("height");
160
+ widget.$canvas2.css("display", "block");
161
+
162
+
163
+ // draw current Color
164
+ c2.fillStyle = "rgb(" + red + "," + green + "," + blue + ")";
165
+ c2.fillRect (0, 0, 30, 30);
166
+
167
+ // draw border
168
+ c2.lineWidth = "3"
169
+ c2.lineJoin = "round";
170
+ c2.strokeStyle="#FFFFFF";
171
+ c2.strokeRect (0, 0, 30, 30);
172
+
173
+ widget.$canvas2.css("top", (point.y+30) - jQuery(widget.$canvas).parent().scrollTop() );
174
+ widget.$canvas2.css("left", (point.x+30) - jQuery(widget.$canvas).parent().scrollLeft() );
175
+
176
+ }
177
+
178
+ var updateSelectedColor = function(widget, red, green, blue) {
179
+ jQuery("#wpide_color_assist_input").css("borderRight", "30px solid #" + _d2h(red) + _d2h(green) + _d2h(blue) );
180
+
181
+ // set new selected color
182
+ var newColor = [red, green, blue];
183
+ widget.color = newColor;
184
+ }
185
+
186
+ return {
187
+ // default options
188
+ options: {
189
+
190
+ },
191
+
192
+ _create: function() {
193
+ if (this.element.get(0).tagName.toLowerCase() === 'img') {
194
+ if (this.element.get(0).complete) {
195
+ _createImageColorPicker(this);
196
+ } else {
197
+ this.element.bind('load', { that: this }, function(e){
198
+ var that = e.data.that;
199
+ _createImageColorPicker(that);
200
+ });
201
+ }
202
+ }
203
+ },
204
+
205
+ destroy: function() {
206
+ // default destroy
207
+ jQuery.Widget.prototype.destroy.apply(this, arguments);
208
+
209
+ // remove possible large array with pixel data
210
+ this.imageData = null;
211
+
212
+ // remove additional elements
213
+ this.$canvas.remove();
214
+ this.element.unwrap();
215
+ this.element.show();
216
+ },
217
+
218
+ selectedColor: function() {
219
+ return "#" + _d2h(this.color[0]) + _d2h(this.color[1]) + _d2h(this.color[2]);
220
+ }
221
+
222
+ };
223
+ }();
224
+ jQuery.widget("ui.ImageColorPicker", uiImageColorPicker);
225
+ })();
226
+
227
+
228
+
229
+
230
+
231
+
js/autocomplete/php.js ADDED
@@ -0,0 +1,2 @@
 
 
1
+
2
+ var autocomplete_php = jQuery.parseJSON( '{"aggregate_info":{"desc":"Gets aggregation information for a given object","params":[{"required":"yes","param":"object $object"}],"returns":"array"},"apache_get_modules":{"desc":"Get a list of loaded Apache modules","params":[],"returns":"array"},"apache_request_headers":{"desc":"Fetch all HTTP request headers","params":[],"returns":"array"},"apache_response_headers":{"desc":"Fetch all HTTP response headers","params":[],"returns":"array"},"apc_add":{"desc":"Cache a variable in the data store","params":[{"required":"yes","param":"string $key"},{"required":"no","param":"mixed $var = &#039;&#039;"},{"required":"no","param":"int $ttl = &#039;&#039;"},{"required":"yes","param":"array $values"},{"required":"no","param":"mixed $unused = &#039;&#039;"}],"returns":"array"},"apc_cache_info":{"desc":"Retrieves cached information from APC&#039;s data store","params":[{"required":"no","param":"string $cache_type = &#039;&#039;"},{"required":"no","param":"bool $limited = false"}],"returns":"array"},"apc_sma_info":{"desc":"Retrieves APC&#039;s Shared Memory Allocation information","params":[{"required":"no","param":"bool $limited = false"}],"returns":"array"},"apc_store":{"desc":"Cache a variable in the data store","params":[{"required":"yes","param":"string $key"},{"required":"yes","param":"mixed $var"},{"required":"no","param":"int $ttl = &#039;&#039;"},{"required":"yes","param":"array $values"},{"required":"no","param":"mixed $unused = &#039;&#039;"}],"returns":"array"},"apd_callstack":{"desc":"Returns the current call stack as an array","params":[],"returns":"array"},"apd_dump_persistent_resources":{"desc":"Return all persistent resources as an array","params":[],"returns":"array"},"apd_dump_regular_resources":{"desc":"Return all current regular resources as an array","params":[],"returns":"array"},"apd_get_active_symbols":{"desc":"Get an array of the current variables names in the local scope","params":[],"returns":"array"},"array":{"desc":"Create an array","params":[{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"array"},"array_change_key_case":{"desc":"Changes all keys in an array","params":[{"required":"yes","param":"array $input"},{"required":"no","param":"int $case = CASE_LOWER"}],"returns":"array"},"array_chunk":{"desc":"Split an array into chunks","params":[{"required":"yes","param":"array $input"},{"required":"yes","param":"int $size"},{"required":"no","param":"bool $preserve_keys = false"}],"returns":"array"},"array_combine":{"desc":"Creates an array by using one array for keys and another for its values","params":[{"required":"yes","param":"array $keys"},{"required":"yes","param":"array $values"}],"returns":"array"},"array_count_values":{"desc":"Counts all the values of an array","params":[{"required":"yes","param":"array $input"}],"returns":"array"},"array_diff":{"desc":"Computes the difference of arrays","params":[{"required":"yes","param":"array $array1"},{"required":"yes","param":"array $array2"},{"required":"no","param":"array $ ... = &#039;&#039;"}],"returns":"array"},"array_diff_assoc":{"desc":"Computes the difference of arrays with additional index check","params":[{"required":"yes","param":"array $array1"},{"required":"yes","param":"array $array2"},{"required":"no","param":"array $... = &#039;&#039;"}],"returns":"array"},"array_diff_key":{"desc":"Computes the difference of arrays using keys for comparison","params":[{"required":"yes","param":"array $array1"},{"required":"yes","param":"array $array2"},{"required":"no","param":"array $... = &#039;&#039;"}],"returns":"array"},"array_diff_uassoc":{"desc":"Computes the difference of arrays with additional index check which is performed by a user supplied callback function","params":[{"required":"yes","param":"array $array1"},{"required":"yes","param":"array $array2"},{"required":"no","param":"array $... = &#039;&#039;"},{"required":"yes","param":"callback $key_compare_func"}],"returns":"array"},"array_diff_ukey":{"desc":"Computes the difference of arrays using a callback function on the keys for comparison","params":[{"required":"yes","param":"array $array1"},{"required":"yes","param":"array $array2"},{"required":"no","param":"array $ ... = &#039;&#039;"},{"required":"yes","param":"callback $key_compare_func"}],"returns":"array"},"array_fill":{"desc":"Fill an array with values","params":[{"required":"yes","param":"int $start_index"},{"required":"yes","param":"int $num"},{"required":"yes","param":"mixed $value"}],"returns":"array"},"array_fill_keys":{"desc":"Fill an array with values, specifying keys","params":[{"required":"yes","param":"array $keys"},{"required":"yes","param":"mixed $value"}],"returns":"array"},"array_filter":{"desc":"Filters elements of an array using a callback function","params":[{"required":"yes","param":"array $input"},{"required":"no","param":"callback $callback = &#039;&#039;"}],"returns":"array"},"array_intersect":{"desc":"Computes the intersection of arrays","params":[{"required":"yes","param":"array $array1"},{"required":"yes","param":"array $array2"},{"required":"no","param":"array $ ... = &#039;&#039;"}],"returns":"array"},"array_intersect_assoc":{"desc":"Computes the intersection of arrays with additional index check","params":[{"required":"yes","param":"array $array1"},{"required":"yes","param":"array $array2"},{"required":"no","param":"array $ ... = &#039;&#039;"}],"returns":"array"},"array_intersect_key":{"desc":"Computes the intersection of arrays using keys for comparison","params":[{"required":"yes","param":"array $array1"},{"required":"yes","param":"array $array2"},{"required":"no","param":"array $ ... = &#039;&#039;"}],"returns":"array"},"array_intersect_uassoc":{"desc":"Computes the intersection of arrays with additional index check, compares indexes by a callback function","params":[{"required":"yes","param":"array $array1"},{"required":"yes","param":"array $array2"},{"required":"no","param":"array $ ... = &#039;&#039;"},{"required":"yes","param":"callback $key_compare_func"}],"returns":"array"},"array_intersect_ukey":{"desc":"Computes the intersection of arrays using a callback function on the keys for comparison","params":[{"required":"yes","param":"array $array1"},{"required":"yes","param":"array $array2"},{"required":"no","param":"array $... = &#039;&#039;"},{"required":"yes","param":"callback $key_compare_func"}],"returns":"array"},"array_keys":{"desc":"Return all the keys or a subset of the keys of an array","params":[{"required":"yes","param":"array $input"},{"required":"no","param":"mixed $search_value = &#039;&#039;"},{"required":"no","param":"bool $strict = false"}],"returns":"array"},"array_map":{"desc":"Applies the callback to the elements of the given arrays","params":[{"required":"yes","param":"callback $callback"},{"required":"yes","param":"array $arr1"},{"required":"no","param":"array $... = &#039;&#039;"}],"returns":"array"},"array_merge":{"desc":"Merge one or more arrays","params":[{"required":"yes","param":"array $array1"},{"required":"no","param":"array $array2 = &#039;&#039;"},{"required":"no","param":"array $... = &#039;&#039;"}],"returns":"array"},"array_merge_recursive":{"desc":"Merge two or more arrays recursively","params":[{"required":"yes","param":"array $array1"},{"required":"no","param":"array $... = &#039;&#039;"}],"returns":"array"},"array_pad":{"desc":"Pad array to the specified length with a value","params":[{"required":"yes","param":"array $input"},{"required":"yes","param":"int $pad_size"},{"required":"yes","param":"mixed $pad_value"}],"returns":"array"},"array_pop":{"desc":"Pop the element off the end of array","params":[{"required":"yes","param":"array $array"}],"returns":"array"},"array_replace":{"desc":"Replaces elements from passed arrays into the first array","params":[{"required":"yes","param":"array $array"},{"required":"yes","param":"array $array1"},{"required":"no","param":"array $array2 = &#039;&#039;"},{"required":"no","param":"array $... = &#039;&#039;"}],"returns":"array"},"array_replace_recursive":{"desc":"Replaces elements from passed arrays into the first array recursively","params":[{"required":"yes","param":"array $array"},{"required":"yes","param":"array $array1"},{"required":"no","param":"array $array2 = &#039;&#039;"},{"required":"no","param":"array $... = &#039;&#039;"}],"returns":"array"},"array_reverse":{"desc":"Return an array with elements in reverse order","params":[{"required":"yes","param":"array $array"},{"required":"no","param":"bool $preserve_keys = false"}],"returns":"array"},"array_shift":{"desc":"Shift an element off the beginning of array","params":[{"required":"yes","param":"array $array"}],"returns":"array"},"array_slice":{"desc":"Extract a slice of the array","params":[{"required":"yes","param":"array $array"},{"required":"yes","param":"int $offset"},{"required":"no","param":"int $length = &#039;&#039;"},{"required":"no","param":"bool $preserve_keys = false"}],"returns":"array"},"array_splice":{"desc":"Remove a portion of the array and replace it with something else","params":[{"required":"yes","param":"array $input"},{"required":"yes","param":"int $offset"},{"required":"no","param":"int $length = &#039;&#039;"},{"required":"no","param":"mixed $replacement = &#039;&#039;"}],"returns":"array"},"array_udiff":{"desc":"Computes the difference of arrays by using a callback function for data comparison","params":[{"required":"yes","param":"array $array1"},{"required":"yes","param":"array $array2"},{"required":"no","param":"array $ ... = &#039;&#039;"},{"required":"yes","param":"callback $data_compare_func"}],"returns":"array"},"array_udiff_assoc":{"desc":"Computes the difference of arrays with additional index check, compares data by a callback function","params":[{"required":"yes","param":"array $array1"},{"required":"yes","param":"array $array2"},{"required":"no","param":"array $ ... = &#039;&#039;"},{"required":"yes","param":"callback $data_compare_func"}],"returns":"array"},"array_udiff_uassoc":{"desc":"Computes the difference of arrays with additional index check, compares data and indexes by a callback function","params":[{"required":"yes","param":"array $array1"},{"required":"yes","param":"array $array2"},{"required":"no","param":"array $ ... = &#039;&#039;"},{"required":"yes","param":"callback $data_compare_func"},{"required":"yes","param":"callback $key_compare_func"}],"returns":"array"},"array_uintersect":{"desc":"Computes the intersection of arrays, compares data by a callback function","params":[{"required":"yes","param":"array $array1"},{"required":"yes","param":"array $array2"},{"required":"no","param":"array $ ... = &#039;&#039;"},{"required":"yes","param":"callback $data_compare_func"}],"returns":"array"},"array_uintersect_assoc":{"desc":"Computes the intersection of arrays with additional index check, compares data by a callback function","params":[{"required":"yes","param":"array $array1"},{"required":"yes","param":"array $array2"},{"required":"no","param":"array $ ... = &#039;&#039;"},{"required":"yes","param":"callback $data_compare_func"}],"returns":"array"},"array_uintersect_uassoc":{"desc":"Computes the intersection of arrays with additional index check, compares data and indexes by a callback functions","params":[{"required":"yes","param":"array $array1"},{"required":"yes","param":"array $array2"},{"required":"no","param":"array $ ... = &#039;&#039;"},{"required":"yes","param":"callback $data_compare_func"},{"required":"yes","param":"callback $key_compare_func"}],"returns":"array"},"array_unique":{"desc":"Removes duplicate values from an array","params":[{"required":"yes","param":"array $array"},{"required":"no","param":"int $sort_flags = SORT_STRING"}],"returns":"array"},"array_values":{"desc":"Return all the values of an array","params":[{"required":"yes","param":"array $input"}],"returns":"array"},"bson_decode":{"desc":"Deserializes a BSON object into a PHP array","params":[{"required":"yes","param":"string $bson"}],"returns":"array"},"bzerror":{"desc":"Returns the bzip2 error number and error string in an array","params":[{"required":"yes","param":"resource $bz"}],"returns":"array"},"cairo_available_fonts":{"desc":"Retrieves the availables font types","params":[],"returns":"array"},"cairo_available_surfaces":{"desc":"Retrieves all available surfaces","params":[],"returns":"array"},"cairo_clip_extents":{"desc":"Computes the area inside the current clip","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"array"},"cairo_clip_rectangle_list":{"desc":"Retrieves the current clip as a list of rectangles","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"array"},"cairo_device_to_user":{"desc":"Transform a coordinate","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"CairoContext $context"}],"returns":"array"},"cairo_device_to_user_distance":{"desc":"Transform a distance","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"CairoContext $context"}],"returns":"array"},"cairo_fill_extents":{"desc":"Computes the filled area","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"array"},"cairo_font_extents":{"desc":"Get the font extents","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"array"},"cairo_get_current_point":{"desc":"The getCurrentPoint purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"array"},"cairo_get_dash":{"desc":"The getDash purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"array"},"cairo_matrix_transform_distance":{"desc":"Description","params":[{"required":"yes","param":"CairoMatrix $matrix"},{"required":"yes","param":"float $dx"},{"required":"yes","param":"float $dy"}],"returns":"array"},"cairo_matrix_transform_point":{"desc":"Description","params":[{"required":"yes","param":"CairoMatrix $matrix"},{"required":"yes","param":"float $dx"},{"required":"yes","param":"float $dy"}],"returns":"array"},"cairo_path_extents":{"desc":"The pathExtents purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"array"},"cairo_pattern_get_color_stop_rgba":{"desc":"Description","params":[{"required":"yes","param":"CairoGradientPattern $pattern"},{"required":"yes","param":"int $index"}],"returns":"array"},"cairo_pattern_get_linear_points":{"desc":"Description","params":[{"required":"yes","param":"CairoLinearGradient $pattern"}],"returns":"array"},"cairo_pattern_get_radial_circles":{"desc":"Description","params":[{"required":"yes","param":"CairoRadialGradient $pattern"}],"returns":"array"},"cairo_pattern_get_rgba":{"desc":"Description","params":[{"required":"yes","param":"CairoSolidPattern $pattern"}],"returns":"array"},"cairo_ps_get_levels":{"desc":"Description","params":[],"returns":"array"},"cairo_scaled_font_extents":{"desc":"Description","params":[{"required":"yes","param":"CairoScaledFont $scaledfont"}],"returns":"array"},"cairo_scaled_font_glyph_extents":{"desc":"Description","params":[{"required":"yes","param":"CairoScaledFont $scaledfont"},{"required":"yes","param":"array $glyphs"}],"returns":"array"},"cairo_scaled_font_text_extents":{"desc":"Description","params":[{"required":"yes","param":"CairoScaledFont $scaledfont"},{"required":"yes","param":"string $text"}],"returns":"array"},"cairo_stroke_extents":{"desc":"The strokeExtents purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"array"},"cairo_surface_get_device_offset":{"desc":"Description","params":[{"required":"yes","param":"CairoSurface $surface"}],"returns":"array"},"cairo_svg_surface_get_versions":{"desc":"Used to retrieve a list of supported SVG versions","params":[],"returns":"array"},"cairo_text_extents":{"desc":"The textExtents purpose","params":[{"required":"yes","param":"string $text"},{"required":"yes","param":"CairoContext $context"}],"returns":"array"},"cairo_user_to_device":{"desc":"The userToDevice purpose","params":[{"required":"yes","param":"string $x"},{"required":"yes","param":"string $y"},{"required":"yes","param":"CairoContext $context"}],"returns":"array"},"cairo_user_to_device_distance":{"desc":"The userToDeviceDistance purpose","params":[{"required":"yes","param":"string $x"},{"required":"yes","param":"string $y"},{"required":"yes","param":"CairoContext $context"}],"returns":"array"},"cal_from_jd":{"desc":"Converts from Julian Day Count to a supported calendar","params":[{"required":"yes","param":"int $jd"},{"required":"yes","param":"int $calendar"}],"returns":"array"},"cal_info":{"desc":"Returns information about a particular calendar","params":[{"required":"no","param":"int $calendar = -1"}],"returns":"array"},"classkit_import":{"desc":"Import new class method definitions from a file","params":[{"required":"yes","param":"string $filename"}],"returns":"array"},"class_implements":{"desc":"Return the interfaces which are implemented by the given class","params":[{"required":"yes","param":"mixed $class"},{"required":"no","param":"bool $autoload = true"}],"returns":"array"},"class_parents":{"desc":"Return the parent classes of the given class","params":[{"required":"yes","param":"mixed $class"},{"required":"no","param":"bool $autoload = true"}],"returns":"array"},"compact":{"desc":"Create array containing variables and their values","params":[{"required":"yes","param":"mixed $varname"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"array"},"cubrid_column_names":{"desc":"Get the column names in result","params":[{"required":"yes","param":"resource $req_identifier"}],"returns":"array"},"cubrid_column_types":{"desc":"Get column types in result","params":[{"required":"yes","param":"resource $req_identifier"}],"returns":"array"},"cubrid_col_get":{"desc":"Get contents of collection type column using OID","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $oid"},{"required":"yes","param":"string $attr_name"}],"returns":"array"},"cubrid_fetch_array":{"desc":"Fetch a result row as an associative array, a numeric array, or both","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $type = CUBRID_BOTH"}],"returns":"array"},"cubrid_fetch_assoc":{"desc":"Return the associative array that corresponds to the fetched row","params":[{"required":"yes","param":"resource $result"}],"returns":"array"},"cubrid_fetch_lengths":{"desc":"Return an array with the lengths of the values of each field from the current row","params":[{"required":"yes","param":"resource $result"}],"returns":"array"},"cubrid_fetch_row":{"desc":"Return a numerical array with the values of the current row","params":[{"required":"yes","param":"resource $result"}],"returns":"array"},"cubrid_get_db_parameter":{"desc":"Returns the CUBRID database parameters","params":[{"required":"yes","param":"resource $conn_identifier"}],"returns":"array"},"cubrid_list_dbs":{"desc":"Return an array with the list of all existing CUBRID databases","params":[{"required":"yes","param":"resource $conn_identifier"}],"returns":"array"},"cubrid_lob_get":{"desc":"Get BLOB/CLOB data","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $SQL"}],"returns":"array"},"cubrid_schema":{"desc":"Get the requested schema information","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"int $schema_type"},{"required":"no","param":"string $class_name = &#039;&#039;"},{"required":"no","param":"string $attr_name = &#039;&#039;"}],"returns":"array"},"curl_multi_info_read":{"desc":"Get information about the current transfers","params":[{"required":"yes","param":"resource $mh"},{"required":"no","param":"int $msgs_in_queue = &#039;&#039;"}],"returns":"array"},"curl_version":{"desc":"Gets cURL version information","params":[{"required":"no","param":"int $age = CURLVERSION_NOW"}],"returns":"array"},"cyrus_query":{"desc":"Send a query to a Cyrus IMAP server","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $query"}],"returns":"array"},"datefmt_localtime":{"desc":"Parse string to a field-based time value","params":[{"required":"yes","param":"string $value"},{"required":"no","param":"int $position = &#039;&#039;"},{"required":"yes","param":"IntlDateFormatter $fmt"}],"returns":"array"},"date_parse":{"desc":"Returns associative array with detailed info about given date","params":[{"required":"yes","param":"string $date"}],"returns":"array"},"date_parse_from_format":{"desc":"Get info about given date formatted according to the specified format","params":[{"required":"yes","param":"string $format"},{"required":"yes","param":"string $date"}],"returns":"array"},"date_sun_info":{"desc":"Returns an array with information about sunset/sunrise and twilight begin/end","params":[{"required":"yes","param":"int $time"},{"required":"yes","param":"float $latitude"},{"required":"yes","param":"float $longitude"}],"returns":"array"},"db2_fetch_array":{"desc":"Returns an array, indexed by column position, representing a row in a result set","params":[{"required":"yes","param":"resource $stmt"},{"required":"no","param":"int $row_number = -1"}],"returns":"array"},"db2_fetch_assoc":{"desc":"Returns an array, indexed by column name, representing a row in a result set","params":[{"required":"yes","param":"resource $stmt"},{"required":"no","param":"int $row_number = -1"}],"returns":"array"},"db2_fetch_both":{"desc":"Returns an array, indexed by both column name and position, representing a row in a result set","params":[{"required":"yes","param":"resource $stmt"},{"required":"no","param":"int $row_number = -1"}],"returns":"array"},"dbase_get_header_info":{"desc":"Gets the header info of a database","params":[{"required":"yes","param":"int $dbase_identifier"}],"returns":"array"},"dbase_get_record":{"desc":"Gets a record from a database as an indexed array","params":[{"required":"yes","param":"int $dbase_identifier"},{"required":"yes","param":"int $record_number"}],"returns":"array"},"dbase_get_record_with_names":{"desc":"Gets a record from a database as an associative array","params":[{"required":"yes","param":"int $dbase_identifier"},{"required":"yes","param":"int $record_number"}],"returns":"array"},"dba_handlers":{"desc":"List all the handlers available","params":[{"required":"no","param":"bool $full_info = false"}],"returns":"array"},"dba_list":{"desc":"List all open database files","params":[],"returns":"array"},"dbplus_resolve":{"desc":"Resolve host information for relation","params":[{"required":"yes","param":"string $relation_name"}],"returns":"array"},"debug_backtrace":{"desc":"Generates a backtrace","params":[{"required":"no","param":"int $options = DEBUG_BACKTRACE_PROVIDE_OBJECT"},{"required":"no","param":"int $limit = &#039;&#039;"}],"returns":"array"},"dio_stat":{"desc":"Gets stat information about the file descriptor fd","params":[{"required":"yes","param":"resource $fd"}],"returns":"array"},"dns_get_record":{"desc":"Fetch DNS Resource Records associated with a hostname","params":[{"required":"yes","param":"string $hostname"},{"required":"no","param":"int $type = DNS_ANY"},{"required":"no","param":"array $authns = &#039;&#039;"},{"required":"no","param":"array $addtl = &#039;&#039;"}],"returns":"array"},"each":{"desc":"Return the current key and value pair from an array and advance the array cursor","params":[{"required":"yes","param":"array $array"}],"returns":"array"},"enchant_broker_describe":{"desc":"Enumerates the Enchant providers","params":[{"required":"yes","param":"resource $broker"}],"returns":"array"},"enchant_dict_suggest":{"desc":"Will return a list of values if any of those pre-conditions are not met","params":[{"required":"yes","param":"resource $dict"},{"required":"yes","param":"string $word"}],"returns":"array"},"error_get_last":{"desc":"Get the last occurred error","params":[],"returns":"array"},"exif_read_data":{"desc":"Reads the EXIF headers from JPEG or TIFF","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"string $sections = &#039;&#039;"},{"required":"no","param":"bool $arrays = false"},{"required":"no","param":"bool $thumbnail = false"}],"returns":"array"},"explode":{"desc":"Split a string by string","params":[{"required":"yes","param":"string $delimiter"},{"required":"yes","param":"string $string"},{"required":"no","param":"int $limit = &#039;&#039;"}],"returns":"array"},"fam_next_event":{"desc":"Get next pending FAM event","params":[{"required":"yes","param":"resource $fam"}],"returns":"array"},"fbsql_fetch_array":{"desc":"Fetch a result row as an associative array, a numeric array, or both","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $result_type = &#039;&#039;"}],"returns":"array"},"fbsql_fetch_assoc":{"desc":"Fetch a result row as an associative array","params":[{"required":"yes","param":"resource $result"}],"returns":"array"},"fbsql_fetch_lengths":{"desc":"Get the length of each output in a result","params":[{"required":"yes","param":"resource $result"}],"returns":"array"},"fbsql_fetch_row":{"desc":"Get a result row as an enumerated array","params":[{"required":"yes","param":"resource $result"}],"returns":"array"},"fbsql_get_autostart_info":{"desc":"","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"array"},"fdf_get_attachment":{"desc":"Extracts uploaded file embedded in the FDF","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"string $fieldname"},{"required":"yes","param":"string $savepath"}],"returns":"array"},"fgetcsv":{"desc":"Gets line from file pointer and parse for CSV fields","params":[{"required":"yes","param":"resource $handle"},{"required":"no","param":"int $length = &#039;&#039;"},{"required":"no","param":"string $delimiter = &#039;"},{"required":"yes","param":"&#039;"},{"required":"no","param":"string $enclosure = &#039;&quot;&#039;"},{"required":"no","param":"string $escape = &#039;&#92;&#92;&#039;"}],"returns":"array"},"file":{"desc":"Reads entire file into an array","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"int $flags = &#039;&#039;"},{"required":"no","param":"resource $context = &#039;&#039;"}],"returns":"array"},"filter_list":{"desc":"Returns a list of all supported filters","params":[],"returns":"array"},"fstat":{"desc":"Gets information about a file using an open file pointer","params":[{"required":"yes","param":"resource $handle"}],"returns":"array"},"ftp_nlist":{"desc":"Returns a list of files in the given directory","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"string $directory"}],"returns":"array"},"ftp_raw":{"desc":"Sends an arbitrary command to an FTP server","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"string $command"}],"returns":"array"},"ftp_rawlist":{"desc":"Returns a detailed list of files in the given directory","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"string $directory"},{"required":"no","param":"bool $recursive = false"}],"returns":"array"},"func_get_args":{"desc":"Returns an array comprising a function&#039;s argument list","params":[],"returns":"array"},"gd_info":{"desc":"Retrieve information about the currently installed GD library","params":[],"returns":"array"},"gearman_job_status":{"desc":"Get the status of a background job","params":[{"required":"yes","param":"string $job_handle"}],"returns":"array"},"geoip_db_get_all_info":{"desc":"Returns detailed information about all GeoIP database types","params":[],"returns":"array"},"geoip_record_by_name":{"desc":"Returns the detailed City information found in the GeoIP Database","params":[{"required":"yes","param":"string $hostname"}],"returns":"array"},"geoip_region_by_name":{"desc":"Get the country code and region","params":[{"required":"yes","param":"string $hostname"}],"returns":"array"},"getallheaders":{"desc":"Fetch all HTTP request headers","params":[],"returns":"array"},"getdate":{"desc":"Get date/time information","params":[{"required":"no","param":"int $timestamp = time("}],"returns":"array"},"gethostbynamel":{"desc":"Get a list of IPv4 addresses corresponding to a given Internet host name","params":[{"required":"yes","param":"string $hostname"}],"returns":"array"},"getimagesize":{"desc":"Get the size of an image","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"array $imageinfo = &#039;&#039;"}],"returns":"array"},"getopt":{"desc":"Gets options from the command line argument list","params":[{"required":"yes","param":"string $options"},{"required":"no","param":"array $longopts = &#039;&#039;"}],"returns":"array"},"getrusage":{"desc":"Gets the current resource usages","params":[{"required":"no","param":"int $who = &#039;&#039;"}],"returns":"array"},"get_class_methods":{"desc":"Gets the class methods&#039; names","params":[{"required":"yes","param":"mixed $class_name"}],"returns":"array"},"get_class_vars":{"desc":"Get the default properties of the class","params":[{"required":"yes","param":"string $class_name"}],"returns":"array"},"get_declared_classes":{"desc":"Returns an array with the name of the defined classes","params":[],"returns":"array"},"get_declared_interfaces":{"desc":"Returns an array of all declared interfaces","params":[],"returns":"array"},"get_defined_constants":{"desc":"Returns an associative array with the names of all the constants and their values","params":[{"required":"no","param":"bool $categorize = false"}],"returns":"array"},"get_defined_functions":{"desc":"Returns an array of all defined functions","params":[],"returns":"array"},"get_defined_vars":{"desc":"Returns an array of all defined variables","params":[],"returns":"array"},"get_extension_funcs":{"desc":"Returns an array with the names of the functions of a module","params":[{"required":"yes","param":"string $module_name"}],"returns":"array"},"get_headers":{"desc":"Fetches all the headers sent by the server in response to a HTTP request","params":[{"required":"yes","param":"string $url"},{"required":"no","param":"int $format = &#039;&#039;"}],"returns":"array"},"get_html_translation_table":{"desc":"Returns the translation table used by htmlspecialchars and htmlentities","params":[{"required":"no","param":"int $table = HTML_SPECIALCHARS"},{"required":"no","param":"int $quote_style = ENT_COMPAT"},{"required":"no","param":"string $charset_hint = &#039;&#039;"}],"returns":"array"},"get_included_files":{"desc":"Returns an array with the names of included or required files","params":[],"returns":"array"},"get_loaded_extensions":{"desc":"Returns an array with the names of all modules compiled and loaded","params":[{"required":"no","param":"bool $zend_extensions = false"}],"returns":"array"},"get_meta_tags":{"desc":"Extracts all meta tag content attributes from a file and returns an array","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"bool $use_include_path = false"}],"returns":"array"},"get_object_vars":{"desc":"Gets the properties of the given object","params":[{"required":"yes","param":"object $object"}],"returns":"array"},"glob":{"desc":"Find pathnames matching a pattern","params":[{"required":"yes","param":"string $pattern"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"array"},"gmp_div_qr":{"desc":"Divide numbers and get quotient and remainder","params":[{"required":"yes","param":"resource $n"},{"required":"yes","param":"resource $d"},{"required":"no","param":"int $round = GMP_ROUND_ZERO"}],"returns":"array"},"gmp_gcdext":{"desc":"Calculate GCD and multipliers","params":[{"required":"yes","param":"resource $a"},{"required":"yes","param":"resource $b"}],"returns":"array"},"gmp_sqrtrem":{"desc":"Square root with remainder","params":[{"required":"yes","param":"resource $a"}],"returns":"array"},"gnupg_decryptverify":{"desc":"Decrypts and verifies a given text","params":[{"required":"yes","param":"resource $identifier"},{"required":"yes","param":"string $text"},{"required":"yes","param":"string $plaintext"}],"returns":"array"},"gnupg_import":{"desc":"Imports a key","params":[{"required":"yes","param":"resource $identifier"},{"required":"yes","param":"string $keydata"}],"returns":"array"},"gnupg_keyinfo":{"desc":"Returns an array with information about all keys that matches the given pattern","params":[{"required":"yes","param":"resource $identifier"},{"required":"yes","param":"string $pattern"}],"returns":"array"},"gnupg_verify":{"desc":"Verifies a signed text","params":[{"required":"yes","param":"resource $identifier"},{"required":"yes","param":"string $signed_text"},{"required":"yes","param":"string $signature"},{"required":"no","param":"string $plaintext = &#039;&#039;"}],"returns":"array"},"gopher_parsedir":{"desc":"Translate a gopher formatted directory entry into an associative array.","params":[{"required":"yes","param":"string $dirent"}],"returns":"array"},"gupnp_device_info_get":{"desc":"Get info of root device","params":[{"required":"yes","param":"resource $root_device"}],"returns":"array"},"gupnp_service_info_get":{"desc":"Get full info of service","params":[{"required":"yes","param":"resource $proxy"}],"returns":"array"},"gupnp_service_introspection_get_state_variable":{"desc":"Returns the state variable data","params":[{"required":"yes","param":"resource $introspection"},{"required":"yes","param":"string $variable_name"}],"returns":"array"},"gupnp_service_proxy_send_action":{"desc":"Send action with multiple parameters synchronously","params":[{"required":"yes","param":"resource $proxy"},{"required":"yes","param":"string $action"},{"required":"yes","param":"array $in_params"},{"required":"yes","param":"array $out_params"}],"returns":"array"},"gzfile":{"desc":"Read entire gz-file into an array","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"int $use_include_path = &#039;&#039;"}],"returns":"array"},"hash_algos":{"desc":"Return a list of registered hashing algorithms","params":[],"returns":"array"},"headers_list":{"desc":"Returns a list of response headers sent (or ready to send)","params":[],"returns":"array"},"http_get_request_headers":{"desc":"Get request headers as array","params":[],"returns":"array"},"http_parse_headers":{"desc":"Parse HTTP headers","params":[{"required":"yes","param":"string $header"}],"returns":"array"},"hw_Children":{"desc":"Object ids of children","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $objectID"}],"returns":"array"},"hw_ChildrenObj":{"desc":"Object records of children","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $objectID"}],"returns":"array"},"hw_GetAnchors":{"desc":"Object ids of anchors of document","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $objectID"}],"returns":"array"},"hw_GetAnchorsObj":{"desc":"Object records of anchors of document","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $objectID"}],"returns":"array"},"hw_GetChildColl":{"desc":"Object ids of child collections","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $objectID"}],"returns":"array"},"hw_GetChildCollObj":{"desc":"Object records of child collections","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $objectID"}],"returns":"array"},"hw_GetChildDocColl":{"desc":"Object ids of child documents of collection","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $objectID"}],"returns":"array"},"hw_GetChildDocCollObj":{"desc":"Object records of child documents of collection","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $objectID"}],"returns":"array"},"hw_GetObjectByQuery":{"desc":"Search object","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"string $query"},{"required":"yes","param":"int $max_hits"}],"returns":"array"},"hw_GetObjectByQueryColl":{"desc":"Search object in collection","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $objectID"},{"required":"yes","param":"string $query"},{"required":"yes","param":"int $max_hits"}],"returns":"array"},"hw_GetObjectByQueryCollObj":{"desc":"Search object in collection","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $objectID"},{"required":"yes","param":"string $query"},{"required":"yes","param":"int $max_hits"}],"returns":"array"},"hw_GetObjectByQueryObj":{"desc":"Search object","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"string $query"},{"required":"yes","param":"int $max_hits"}],"returns":"array"},"hw_GetParents":{"desc":"Object ids of parents","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $objectID"}],"returns":"array"},"hw_GetParentsObj":{"desc":"Object records of parents","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $objectID"}],"returns":"array"},"hw_GetSrcByDestObj":{"desc":"Returns anchors pointing at object","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $objectID"}],"returns":"array"},"hw_InCollections":{"desc":"Check if object ids in collections","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"array $object_id_array"},{"required":"yes","param":"array $collection_id_array"},{"required":"yes","param":"int $return_collections"}],"returns":"array"},"hw_objrec2array":{"desc":"Convert attributes from object record to object array","params":[{"required":"yes","param":"string $object_record"},{"required":"no","param":"array $format = &#039;&#039;"}],"returns":"array"},"hw_Who":{"desc":"List of currently logged in users","params":[{"required":"yes","param":"int $connection"}],"returns":"array"},"ibase_blob_info":{"desc":"Return blob length and other useful info","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"string $blob_id"}],"returns":"array"},"ibase_fetch_assoc":{"desc":"Fetch a result row from a query as an associative array","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $fetch_flag = &#039;&#039;"}],"returns":"array"},"ibase_fetch_row":{"desc":"Fetch a row from an InterBase database","params":[{"required":"yes","param":"resource $result_identifier"},{"required":"no","param":"int $fetch_flag = &#039;&#039;"}],"returns":"array"},"ibase_field_info":{"desc":"Get information about a field","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_number"}],"returns":"array"},"ibase_param_info":{"desc":"Return information about a parameter in a prepared query","params":[{"required":"yes","param":"resource $query"},{"required":"yes","param":"int $param_number"}],"returns":"array"},"iconv_mime_decode_headers":{"desc":"Decodes multiple MIME header fields at once","params":[{"required":"yes","param":"string $encoded_headers"},{"required":"no","param":"int $mode = &#039;&#039;"},{"required":"no","param":"string $charset = ini_get(&quot;iconv.internal_encoding&quot;"}],"returns":"array"},"id3_get_genre_list":{"desc":"Get all possible genre values","params":[],"returns":"array"},"id3_get_tag":{"desc":"Get all information stored in an ID3 tag","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"int $version = ID3_BEST"}],"returns":"array"},"ifx_fetch_row":{"desc":"Get row as an associative array","params":[{"required":"yes","param":"resource $result_id"},{"required":"no","param":"mixed $position = &#039;&#039;"}],"returns":"array"},"ifx_fieldproperties":{"desc":"List of SQL fieldproperties","params":[{"required":"yes","param":"resource $result_id"}],"returns":"array"},"ifx_fieldtypes":{"desc":"List of Informix SQL fields","params":[{"required":"yes","param":"resource $result_id"}],"returns":"array"},"ifx_getsqlca":{"desc":"Get the contents of sqlca.sqlerrd[0..5] after a query","params":[{"required":"yes","param":"resource $result_id"}],"returns":"array"},"imagecolorsforindex":{"desc":"Get the colors for an index","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $index"}],"returns":"array"},"imageftbbox":{"desc":"Give the bounding box of a text using fonts via freetype2","params":[{"required":"yes","param":"float $size"},{"required":"yes","param":"float $angle"},{"required":"yes","param":"string $fontfile"},{"required":"yes","param":"string $text"},{"required":"no","param":"array $extrainfo = &#039;&#039;"}],"returns":"array"},"imagefttext":{"desc":"Write text to the image using fonts using FreeType 2","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"float $size"},{"required":"yes","param":"float $angle"},{"required":"yes","param":"int $x"},{"required":"yes","param":"int $y"},{"required":"yes","param":"int $color"},{"required":"yes","param":"string $fontfile"},{"required":"yes","param":"string $text"},{"required":"no","param":"array $extrainfo = &#039;&#039;"}],"returns":"array"},"imagepsbbox":{"desc":"Give the bounding box of a text rectangle using PostScript Type1 fonts","params":[{"required":"yes","param":"string $text"},{"required":"yes","param":"resource $font"},{"required":"yes","param":"int $size"},{"required":"yes","param":"int $space"},{"required":"yes","param":"int $tightness"},{"required":"yes","param":"float $angle"}],"returns":"array"},"imagepstext":{"desc":"Draws a text over an image using PostScript Type1 fonts","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"string $text"},{"required":"yes","param":"resource $font_index"},{"required":"yes","param":"int $size"},{"required":"yes","param":"int $foreground"},{"required":"yes","param":"int $background"},{"required":"yes","param":"int $x"},{"required":"yes","param":"int $y"},{"required":"no","param":"int $space = &#039;&#039;"},{"required":"no","param":"int $tightness = &#039;&#039;"},{"required":"no","param":"float $angle = 0.0"},{"required":"no","param":"int $antialias_steps = 4"}],"returns":"array"},"imagettfbbox":{"desc":"Give the bounding box of a text using TrueType fonts","params":[{"required":"yes","param":"float $size"},{"required":"yes","param":"float $angle"},{"required":"yes","param":"string $fontfile"},{"required":"yes","param":"string $text"}],"returns":"array"},"imagettftext":{"desc":"Write text to the image using TrueType fonts","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"float $size"},{"required":"yes","param":"float $angle"},{"required":"yes","param":"int $x"},{"required":"yes","param":"int $y"},{"required":"yes","param":"int $color"},{"required":"yes","param":"string $fontfile"},{"required":"yes","param":"string $text"}],"returns":"array"},"imap_alerts":{"desc":"Returns all IMAP alert messages that have occurred","params":[],"returns":"array"},"imap_errors":{"desc":"Returns all of the IMAP errors that have occured","params":[],"returns":"array"},"imap_fetch_overview":{"desc":"Read an overview of the information in the headers of the given message","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $sequence"},{"required":"no","param":"int $options = &#039;&#039;"}],"returns":"array"},"imap_getacl":{"desc":"Gets the ACL for a given mailbox","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $mailbox"}],"returns":"array"},"imap_getmailboxes":{"desc":"Read the list of mailboxes, returning detailed information on each one","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $ref"},{"required":"yes","param":"string $pattern"}],"returns":"array"},"imap_getsubscribed":{"desc":"List all the subscribed mailboxes","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $ref"},{"required":"yes","param":"string $pattern"}],"returns":"array"},"imap_get_quota":{"desc":"Retrieve the quota level settings, and usage statics per mailbox","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $quota_root"}],"returns":"array"},"imap_get_quotaroot":{"desc":"Retrieve the quota settings per user","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $quota_root"}],"returns":"array"},"imap_headers":{"desc":"Returns headers for all messages in a mailbox","params":[{"required":"yes","param":"resource $imap_stream"}],"returns":"array"},"imap_list":{"desc":"Read the list of mailboxes","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $ref"},{"required":"yes","param":"string $pattern"}],"returns":"array"},"imap_listscan":{"desc":"Returns the list of mailboxes that matches the given text","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $ref"},{"required":"yes","param":"string $pattern"},{"required":"yes","param":"string $content"}],"returns":"array"},"imap_lsub":{"desc":"List all the subscribed mailboxes","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $ref"},{"required":"yes","param":"string $pattern"}],"returns":"array"},"imap_mime_header_decode":{"desc":"Decode MIME header elements","params":[{"required":"yes","param":"string $text"}],"returns":"array"},"imap_rfc822_parse_adrlist":{"desc":"Parses an address string","params":[{"required":"yes","param":"string $address"},{"required":"yes","param":"string $default_host"}],"returns":"array"},"imap_search":{"desc":"This function returns an array of messages matching the given search criteria","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $criteria"},{"required":"no","param":"int $options = SE_FREE"},{"required":"no","param":"string $charset = NIL"}],"returns":"array"},"imap_sort":{"desc":"Gets and sort messages","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"int $criteria"},{"required":"yes","param":"int $reverse"},{"required":"no","param":"int $options = &#039;&#039;"},{"required":"no","param":"string $search_criteria = &#039;&#039;"},{"required":"no","param":"string $charset = NIL"}],"returns":"array"},"imap_thread":{"desc":"Returns a tree of threaded message","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"no","param":"int $options = SE_FREE"}],"returns":"array"},"inclued_get_data":{"desc":"Get the inclued data","params":[],"returns":"array"},"ingres_fetch_array":{"desc":"Fetch a row of result into an array","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $result_type = &#039;&#039;"}],"returns":"array"},"ingres_fetch_assoc":{"desc":"Fetch a row of result into an associative array","params":[{"required":"yes","param":"resource $result"}],"returns":"array"},"ingres_fetch_row":{"desc":"Fetch a row of result into an enumerated array","params":[{"required":"yes","param":"resource $result"}],"returns":"array"},"ini_get_all":{"desc":"Gets all configuration options","params":[{"required":"no","param":"string $extension = &#039;&#039;"},{"required":"no","param":"bool $details = true"}],"returns":"array"},"inotify_read":{"desc":"Read events from an inotify instance","params":[{"required":"yes","param":"resource $inotify_instance"}],"returns":"array"},"iptcparse":{"desc":"Parse a binary IPTC block into single tags.","params":[{"required":"yes","param":"string $iptcblock"}],"returns":"array"},"iterator_to_array":{"desc":"Copy the iterator into an array","params":[{"required":"yes","param":"Traversable $iterator"},{"required":"no","param":"bool $use_keys = true"}],"returns":"array"},"kadm5_get_policies":{"desc":"Gets all policies from the Kerberos database","params":[{"required":"yes","param":"resource $handle"}],"returns":"array"},"kadm5_get_principal":{"desc":"Gets the principal&#039;s entries from the Kerberos database","params":[{"required":"yes","param":"resource $handle"},{"required":"yes","param":"string $principal"}],"returns":"array"},"kadm5_get_principals":{"desc":"Gets all principals from the Kerberos database","params":[{"required":"yes","param":"resource $handle"}],"returns":"array"},"ldap_explode_dn":{"desc":"Splits DN into its component parts","params":[{"required":"yes","param":"string $dn"},{"required":"yes","param":"int $with_attrib"}],"returns":"array"},"ldap_get_attributes":{"desc":"Get attributes from a search result entry","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"resource $result_entry_identifier"}],"returns":"array"},"ldap_get_entries":{"desc":"Get all result entries","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"resource $result_identifier"}],"returns":"array"},"ldap_get_values":{"desc":"Get all values from a result entry","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"resource $result_entry_identifier"},{"required":"yes","param":"string $attribute"}],"returns":"array"},"ldap_get_values_len":{"desc":"Get all binary values from a result entry","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"resource $result_entry_identifier"},{"required":"yes","param":"string $attribute"}],"returns":"array"},"libxml_get_errors":{"desc":"Retrieve array of errors","params":[],"returns":"array"},"list":{"desc":"Assign variables as if they were an array","params":[{"required":"yes","param":"mixed $varname"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"array"},"localeconv":{"desc":"Get numeric formatting information","params":[],"returns":"array"},"locale_get_all_variants":{"desc":"Gets the variants for the input locale","params":[{"required":"yes","param":"string $locale"}],"returns":"array"},"locale_get_keywords":{"desc":"Gets the keywords for the input locale","params":[{"required":"yes","param":"string $locale"}],"returns":"array"},"locale_parse":{"desc":"Returns a key-value array of locale ID subtag elements.","params":[{"required":"yes","param":"string $locale"}],"returns":"array"},"localtime":{"desc":"Get the local time","params":[{"required":"no","param":"int $timestamp = time()"},{"required":"no","param":"bool $is_associative = false"}],"returns":"array"},"lstat":{"desc":"Gives information about a file or symbolic link","params":[{"required":"yes","param":"string $filename"}],"returns":"array"},"mailparse_msg_get_part_data":{"desc":"Returns an associative array of info about the message","params":[{"required":"yes","param":"resource $mimemail"}],"returns":"array"},"mailparse_msg_get_structure":{"desc":"Returns an array of mime section names in the supplied message","params":[{"required":"yes","param":"resource $mimemail"}],"returns":"array"},"mailparse_rfc822_parse_addresses":{"desc":"Parse RFC 822 compliant addresses","params":[{"required":"yes","param":"string $addresses"}],"returns":"array"},"mailparse_uudecode_all":{"desc":"Scans the data from fp and extract each embedded uuencoded file","params":[{"required":"yes","param":"resource $fp"}],"returns":"array"},"maxdb_fetch_assoc":{"desc":"Fetch a result row as an associative array","params":[{"required":"yes","param":"resource $result"}],"returns":"array"},"maxdb_fetch_lengths":{"desc":"Returns the lengths of the columns of the current row in the result set","params":[{"required":"yes","param":"resource $result"}],"returns":"array"},"mb_encoding_aliases":{"desc":"Get aliases of a known encoding type","params":[{"required":"yes","param":"string $encoding"}],"returns":"array"},"mb_ereg_search_getregs":{"desc":"Retrieve the result from the last multibyte regular expression match","params":[],"returns":"array"},"mb_ereg_search_pos":{"desc":"Returns position and length of a matched part of the multibyte regular expression for a predefined multibyte string","params":[{"required":"no","param":"string $pattern = &#039;&#039;"},{"required":"no","param":"string $option = &quot;ms&quot;"}],"returns":"array"},"mb_ereg_search_regs":{"desc":"Returns the matched part of a multibyte regular expression","params":[{"required":"no","param":"string $pattern = &#039;&#039;"},{"required":"no","param":"string $option = &quot;ms&quot;"}],"returns":"array"},"mb_list_encodings":{"desc":"Returns an array of all supported encodings","params":[],"returns":"array"},"mb_parse_str":{"desc":"Parse GET/POST/COOKIE data and set global variable","params":[{"required":"yes","param":"string $encoded_string"},{"required":"no","param":"array $result = &#039;&#039;"}],"returns":"array"},"mb_split":{"desc":"Split multibyte string using regular expression","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"string $string"},{"required":"no","param":"int $limit = -1"}],"returns":"array"},"mcrypt_enc_get_supported_key_sizes":{"desc":"Returns an array with the supported keysizes of the opened algorithm","params":[{"required":"yes","param":"resource $td"}],"returns":"array"},"mcrypt_list_algorithms":{"desc":"Gets an array of all supported ciphers","params":[{"required":"no","param":"string $lib_dir = ini_get(&quot;mcrypt.algorithms_dir&quot;"}],"returns":"array"},"mcrypt_list_modes":{"desc":"Gets an array of all supported modes","params":[{"required":"no","param":"string $lib_dir = ini_get(&quot;mcrypt.modes_dir&quot;"}],"returns":"array"},"mcrypt_module_get_supported_key_sizes":{"desc":"Returns an array with the supported keysizes of the opened algorithm","params":[{"required":"yes","param":"string $algorithm"},{"required":"no","param":"string $lib_dir = &#039;&#039;"}],"returns":"array"},"msession_find":{"desc":"Find all sessions with name and value","params":[{"required":"yes","param":"string $name"},{"required":"yes","param":"string $value"}],"returns":"array"},"msession_get_array":{"desc":"Get array of msession variables","params":[{"required":"yes","param":"string $session"}],"returns":"array"},"msession_list":{"desc":"List all sessions","params":[],"returns":"array"},"msession_listvar":{"desc":"List sessions with variable","params":[{"required":"yes","param":"string $name"}],"returns":"array"},"msgfmt_parse":{"desc":"Parse input string according to pattern","params":[{"required":"yes","param":"string $value"},{"required":"yes","param":"MessageFormatter $fmt"}],"returns":"array"},"msgfmt_parse_message":{"desc":"Quick parse input string","params":[{"required":"yes","param":"string $locale"},{"required":"yes","param":"string $pattern"},{"required":"yes","param":"string $source"},{"required":"yes","param":"string $value"}],"returns":"array"},"msg_stat_queue":{"desc":"Returns information from the message queue data structure","params":[{"required":"yes","param":"resource $queue"}],"returns":"array"},"msql_fetch_array":{"desc":"Fetch row as array","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $result_type = &#039;&#039;"}],"returns":"array"},"msql_fetch_row":{"desc":"Get row as enumerated array","params":[{"required":"yes","param":"resource $result"}],"returns":"array"},"mssql_fetch_array":{"desc":"Fetch a result row as an associative array, a numeric array, or both","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $result_type = MSSQL_BOTH"}],"returns":"array"},"mssql_fetch_assoc":{"desc":"Returns an associative array of the current row in the result","params":[{"required":"yes","param":"resource $result_id"}],"returns":"array"},"mssql_fetch_row":{"desc":"Get row as enumerated array","params":[{"required":"yes","param":"resource $result"}],"returns":"array"},"mysqli_fetch_assoc":{"desc":"Fetch a result row as an associative array","params":[{"required":"yes","param":"mysqli_result $result"}],"returns":"array"},"mysqli_fetch_fields":{"desc":"Returns an array of objects representing the fields in a result set","params":[{"required":"yes","param":"mysqli_result $result"}],"returns":"array"},"mysqli_fetch_lengths":{"desc":"Returns the lengths of the columns of the current row in the result set","params":[{"required":"yes","param":"mysqli_result $result"}],"returns":"array"},"mysqli_get_cache_stats":{"desc":"Returns client Zval cache statistics","params":[],"returns":"array"},"mysqli_get_client_stats":{"desc":"Returns client per-process statistics","params":[],"returns":"array"},"mysqli_get_connection_stats":{"desc":"Returns statistics about the client connection","params":[{"required":"yes","param":"mysqli $link"}],"returns":"array"},"mysqlnd_ms_get_stats":{"desc":"Returns query distribution and connection statistics","params":[],"returns":"array"},"mysqlnd_qc_get_cache_info":{"desc":"Returns information on the current handler, the number of cache entries and cache entries, if available","params":[],"returns":"array"},"mysqlnd_qc_get_core_stats":{"desc":"Statistics collected by the core of the query cache","params":[],"returns":"array"},"mysqlnd_qc_get_handler":{"desc":"Returns a list of available storage handler","params":[],"returns":"array"},"mysqlnd_qc_get_query_trace_log":{"desc":"Returns a backtrace for each query inspected by the query cache","params":[],"returns":"array"},"mysql_fetch_array":{"desc":"Fetch a result row as an associative array, a numeric array, or both","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $result_type = MYSQL_BOTH"}],"returns":"array"},"mysql_fetch_assoc":{"desc":"Fetch a result row as an associative array","params":[{"required":"yes","param":"resource $result"}],"returns":"array"},"mysql_fetch_lengths":{"desc":"Get the length of each output in a result","params":[{"required":"yes","param":"resource $result"}],"returns":"array"},"mysql_fetch_row":{"desc":"Get a result row as an enumerated array","params":[{"required":"yes","param":"resource $result"}],"returns":"array"},"m_responsekeys":{"desc":"Returns array of strings which represents the keys that can be used for response parameters on this transaction","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $identifier"}],"returns":"array"},"newt_checkbox_tree_find_item":{"desc":"Finds an item in the checkbox tree","params":[{"required":"yes","param":"resource $checkboxtree"},{"required":"yes","param":"mixed $data"}],"returns":"array"},"newt_checkbox_tree_get_multi_selection":{"desc":"","params":[{"required":"yes","param":"resource $checkboxtree"},{"required":"yes","param":"string $seqnum"}],"returns":"array"},"newt_checkbox_tree_get_selection":{"desc":"","params":[{"required":"yes","param":"resource $checkboxtree"}],"returns":"array"},"newt_listbox_get_selection":{"desc":"","params":[{"required":"yes","param":"resource $listbox"}],"returns":"array"},"notes_body":{"desc":"Open the message msg_number in the specified mailbox on the specified server (leave serv","params":[{"required":"yes","param":"string $server"},{"required":"yes","param":"string $mailbox"},{"required":"yes","param":"int $msg_number"}],"returns":"array"},"notes_search":{"desc":"Find notes that match keywords in database_name","params":[{"required":"yes","param":"string $database_name"},{"required":"yes","param":"string $keywords"}],"returns":"array"},"notes_unread":{"desc":"Returns the unread note id&#039;s for the current User user_name","params":[{"required":"yes","param":"string $database_name"},{"required":"yes","param":"string $user_name"}],"returns":"array"},"nsapi_request_headers":{"desc":"Fetch all HTTP request headers","params":[],"returns":"array"},"nsapi_response_headers":{"desc":"Fetch all HTTP response headers","params":[],"returns":"array"},"ob_get_status":{"desc":"Get status of output buffers","params":[{"required":"no","param":"bool $full_status = FALSE"}],"returns":"array"},"ob_list_handlers":{"desc":"List all output handlers in use","params":[],"returns":"array"},"oci_error":{"desc":"Returns the last error found","params":[{"required":"no","param":"resource $resource = &#039;&#039;"}],"returns":"array"},"oci_fetch_array":{"desc":"Returns the next row from a query as an associative or numeric array","params":[{"required":"yes","param":"resource $statement"},{"required":"no","param":"int $mode = &#039;&#039;"}],"returns":"array"},"oci_fetch_assoc":{"desc":"Returns the next row from a query as an associative array","params":[{"required":"yes","param":"resource $statement"}],"returns":"array"},"oci_fetch_row":{"desc":"Returns the next row from a query as a numeric array","params":[{"required":"yes","param":"resource $statement"}],"returns":"array"},"odbc_data_source":{"desc":"Returns information about a current connection","params":[{"required":"yes","param":"resource $connection_id"},{"required":"yes","param":"int $fetch_type"}],"returns":"array"},"odbc_fetch_array":{"desc":"Fetch a result row as an associative array","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $rownumber = &#039;&#039;"}],"returns":"array"},"odbc_fetch_into":{"desc":"Fetch one result row into array","params":[{"required":"yes","param":"resource $result_id"},{"required":"yes","param":"array $result_array"},{"required":"no","param":"int $rownumber = &#039;&#039;"}],"returns":"array"},"openssl_csr_get_subject":{"desc":"Returns the subject of a CERT","params":[{"required":"yes","param":"mixed $csr"},{"required":"no","param":"bool $use_shortnames = true"}],"returns":"array"},"openssl_get_cipher_methods":{"desc":"Gets available cipher methods","params":[{"required":"no","param":"bool $aliases = false"}],"returns":"array"},"openssl_get_md_methods":{"desc":"Gets available digest methods","params":[{"required":"no","param":"bool $aliases = false"}],"returns":"array"},"openssl_pkey_get_details":{"desc":"Returns an array with the key details","params":[{"required":"yes","param":"resource $key"}],"returns":"array"},"openssl_x509_parse":{"desc":"Parse an X509 certificate and return the information as an array","params":[{"required":"yes","param":"mixed $x509cert"},{"required":"no","param":"bool $shortnames = true"}],"returns":"array"},"parsekit_compile_file":{"desc":"Compile a string of PHP code and return the resulting op array","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"array $errors = &#039;&#039;"},{"required":"no","param":"int $options = PARSEKIT_QUIET"}],"returns":"array"},"parsekit_compile_string":{"desc":"Compile a string of PHP code and return the resulting op array","params":[{"required":"yes","param":"string $phpcode"},{"required":"no","param":"array $errors = &#039;&#039;"},{"required":"no","param":"int $options = PARSEKIT_QUIET"}],"returns":"array"},"parsekit_func_arginfo":{"desc":"Return information regarding function argument(s)","params":[{"required":"yes","param":"mixed $function"}],"returns":"array"},"parse_ini_file":{"desc":"Parse a configuration file","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"bool $process_sections = false"},{"required":"no","param":"int $scanner_mode = INI_SCANNER_NORMAL"}],"returns":"array"},"parse_ini_string":{"desc":"Parse a configuration string","params":[{"required":"yes","param":"string $ini"},{"required":"no","param":"bool $process_sections = false"},{"required":"no","param":"int $scanner_mode = INI_SCANNER_NORMAL"}],"returns":"array"},"pg_convert":{"desc":"Convert associative array values into suitable for SQL statement","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $table_name"},{"required":"yes","param":"array $assoc_array"},{"required":"no","param":"int $options = &#039;&#039;"}],"returns":"array"},"pg_copy_to":{"desc":"Copy a table to an array","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $table_name"},{"required":"no","param":"string $delimiter = &#039;&#039;"},{"required":"no","param":"string $null_as = &#039;&#039;"}],"returns":"array"},"pg_fetch_all":{"desc":"Fetches all rows from a result as an array","params":[{"required":"yes","param":"resource $result"}],"returns":"array"},"pg_fetch_all_columns":{"desc":"Fetches all rows in a particular result column as an array","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $column = &#039;&#039;"}],"returns":"array"},"pg_fetch_array":{"desc":"Fetch a row as an array","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $row = &#039;&#039;"},{"required":"no","param":"int $result_type = &#039;&#039;"}],"returns":"array"},"pg_fetch_assoc":{"desc":"Fetch a row as an associative array","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $row = &#039;&#039;"}],"returns":"array"},"pg_fetch_row":{"desc":"Get a row as an enumerated array","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $row = &#039;&#039;"}],"returns":"array"},"pg_get_notify":{"desc":"Gets SQL NOTIFY message","params":[{"required":"yes","param":"resource $connection"},{"required":"no","param":"int $result_type = &#039;&#039;"}],"returns":"array"},"pg_meta_data":{"desc":"Get meta data for table","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $table_name"}],"returns":"array"},"pg_version":{"desc":"Returns an array with client, protocol and server version (when available)","params":[{"required":"no","param":"resource $connection = &#039;&#039;"}],"returns":"array"},"posix_getgrgid":{"desc":"Return info about a group by group id","params":[{"required":"yes","param":"int $gid"}],"returns":"array"},"posix_getgrnam":{"desc":"Return info about a group by name","params":[{"required":"yes","param":"string $name"}],"returns":"array"},"posix_getgroups":{"desc":"Return the group set of the current process","params":[],"returns":"array"},"posix_getpwnam":{"desc":"Return info about a user by username","params":[{"required":"yes","param":"string $username"}],"returns":"array"},"posix_getpwuid":{"desc":"Return info about a user by user id","params":[{"required":"yes","param":"int $uid"}],"returns":"array"},"posix_getrlimit":{"desc":"Return info about system resource limits","params":[],"returns":"array"},"posix_times":{"desc":"Get process times","params":[],"returns":"array"},"posix_uname":{"desc":"Get system name","params":[],"returns":"array"},"preg_grep":{"desc":"Return array entries that match the pattern","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"array $input"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"array"},"preg_split":{"desc":"Split string by a regular expression","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"string $subject"},{"required":"no","param":"int $limit = -1"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"array"},"printer_list":{"desc":"Return an array of printers attached to the server","params":[{"required":"yes","param":"int $enumtype"},{"required":"no","param":"string $name = &#039;&#039;"},{"required":"no","param":"int $level = &#039;&#039;"}],"returns":"array"},"proc_get_status":{"desc":"Get information about a process opened by proc_open","params":[{"required":"yes","param":"resource $process"}],"returns":"array"},"pspell_suggest":{"desc":"Suggest spellings of a word","params":[{"required":"yes","param":"int $dictionary_link"},{"required":"yes","param":"string $word"}],"returns":"array"},"ps_hyphenate":{"desc":"Hyphenates a word","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $text"}],"returns":"array"},"ps_string_geometry":{"desc":"Gets geometry of a string","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $text"},{"required":"no","param":"int $fontid = &#039;&#039;"},{"required":"no","param":"float $size = 0.0"}],"returns":"array"},"px_get_field":{"desc":"Returns the specification of a single field","params":[{"required":"yes","param":"resource $pxdoc"},{"required":"yes","param":"int $fieldno"}],"returns":"array"},"px_get_info":{"desc":"Return lots of information about a paradox file","params":[{"required":"yes","param":"resource $pxdoc"}],"returns":"array"},"px_get_record":{"desc":"Returns record of paradox database","params":[{"required":"yes","param":"resource $pxdoc"},{"required":"yes","param":"int $num"},{"required":"no","param":"int $mode = &#039;&#039;"}],"returns":"array"},"px_get_schema":{"desc":"Returns the database schema","params":[{"required":"yes","param":"resource $pxdoc"},{"required":"no","param":"int $mode = &#039;&#039;"}],"returns":"array"},"px_retrieve_record":{"desc":"Returns record of paradox database","params":[{"required":"yes","param":"resource $pxdoc"},{"required":"yes","param":"int $num"},{"required":"no","param":"int $mode = &#039;&#039;"}],"returns":"array"},"radius_get_vendor_attr":{"desc":"Extracts a vendor specific attribute","params":[{"required":"yes","param":"string $data"}],"returns":"array"},"range":{"desc":"Create an array containing a range of elements","params":[{"required":"yes","param":"mixed $low"},{"required":"yes","param":"mixed $high"},{"required":"no","param":"number $step = 1"}],"returns":"array"},"readline_list_history":{"desc":"Lists the history","params":[],"returns":"array"},"realpath_cache_get":{"desc":"Get realpath cache entries","params":[],"returns":"array"},"resourcebundle_locales":{"desc":"Get supported locales","params":[{"required":"yes","param":"ResourceBundle $r"}],"returns":"array"},"rrd_fetch":{"desc":"Fetch the data for graph as array.","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"array $options"}],"returns":"array"},"rrd_graph":{"desc":"Creates image from a data.","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"array $options"}],"returns":"array"},"rrd_info":{"desc":"Gets information about rrd file","params":[{"required":"yes","param":"string $filename"}],"returns":"array"},"rrd_lastupdate":{"desc":"Gets information about last updated data.","params":[{"required":"yes","param":"string $filename"}],"returns":"array"},"rrd_xport":{"desc":"Exports the information about RRD database.","params":[{"required":"yes","param":"array $options"}],"returns":"array"},"runkit_superglobals":{"desc":"Return numerically indexed array of registered superglobals","params":[],"returns":"array"},"scandir":{"desc":"List files and directories inside the specified path","params":[{"required":"yes","param":"string $directory"},{"required":"no","param":"int $sorting_order = &#039;&#039;"},{"required":"no","param":"resource $context = &#039;&#039;"}],"returns":"array"},"session_get_cookie_params":{"desc":"Get the session cookie parameters","params":[],"returns":"array"},"session_pgsql_get_error":{"desc":"Returns number of errors and last error message","params":[{"required":"no","param":"bool $with_error_message = false"}],"returns":"array"},"session_pgsql_status":{"desc":"Get current save handler status","params":[],"returns":"array"},"snmp2_real_walk":{"desc":"Return all objects including their respective object ID within the specified one","params":[{"required":"yes","param":"string $host"},{"required":"yes","param":"string $community"},{"required":"yes","param":"string $object_id"},{"required":"no","param":"string $timeout = 1000000"},{"required":"no","param":"string $retries = 5"}],"returns":"array"},"snmp2_walk":{"desc":"Fetch all the SNMP objects from an agent","params":[{"required":"yes","param":"string $host"},{"required":"yes","param":"string $community"},{"required":"yes","param":"string $object_id"},{"required":"no","param":"string $timeout = 1000000"},{"required":"no","param":"string $retries = 5"}],"returns":"array"},"snmp3_real_walk":{"desc":"Return all objects including their respective object ID within the specified one","params":[{"required":"yes","param":"string $host"},{"required":"yes","param":"string $sec_name"},{"required":"yes","param":"string $sec_level"},{"required":"yes","param":"string $auth_protocol"},{"required":"yes","param":"string $auth_passphrase"},{"required":"yes","param":"string $priv_protocol"},{"required":"yes","param":"string $priv_passphrase"},{"required":"yes","param":"string $object_id"},{"required":"no","param":"string $timeout = 1000000"},{"required":"no","param":"string $retries = 5"}],"returns":"array"},"snmp3_walk":{"desc":"Fetch all the SNMP objects from an agent","params":[{"required":"yes","param":"string $host"},{"required":"yes","param":"string $sec_name"},{"required":"yes","param":"string $sec_level"},{"required":"yes","param":"string $auth_protocol"},{"required":"yes","param":"string $auth_passphrase"},{"required":"yes","param":"string $priv_protocol"},{"required":"yes","param":"string $priv_passphrase"},{"required":"yes","param":"string $object_id"},{"required":"no","param":"string $timeout = 1000000"},{"required":"no","param":"string $retries = 5"}],"returns":"array"},"snmprealwalk":{"desc":"Return all objects including their respective object ID within the specified one","params":[{"required":"yes","param":"string $host"},{"required":"yes","param":"string $community"},{"required":"yes","param":"string $object_id"},{"required":"no","param":"int $timeout = 1000000"},{"required":"no","param":"int $retries = 5"}],"returns":"array"},"snmpwalk":{"desc":"Fetch all the SNMP objects from an agent","params":[{"required":"yes","param":"string $hostname"},{"required":"yes","param":"string $community"},{"required":"yes","param":"string $object_id"},{"required":"no","param":"int $timeout = 1000000"},{"required":"no","param":"int $retries = 5"}],"returns":"array"},"snmpwalkoid":{"desc":"Query for a tree of information about a network entity","params":[{"required":"yes","param":"string $hostname"},{"required":"yes","param":"string $community"},{"required":"yes","param":"string $object_id"},{"required":"no","param":"int $timeout = 1000000"},{"required":"no","param":"int $retries = 5"}],"returns":"array"},"split":{"desc":"Split string into array by regular expression","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"string $string"},{"required":"no","param":"int $limit = -1"}],"returns":"array"},"spliti":{"desc":"Split string into array by regular expression case insensitive","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"string $string"},{"required":"no","param":"int $limit = -1"}],"returns":"array"},"spl_autoload_functions":{"desc":"Return all registered __autoload() functions","params":[],"returns":"array"},"spl_classes":{"desc":"Return available SPL classes","params":[],"returns":"array"},"sqlite_array_query":{"desc":"Execute a query against a given database and returns an array","params":[{"required":"yes","param":"resource $dbhandle"},{"required":"yes","param":"string $query"},{"required":"no","param":"int $result_type = &#039;&#039;"},{"required":"no","param":"bool $decode_binary = &#039;&#039;"}],"returns":"array"},"sqlite_current":{"desc":"Fetches the current row from a result set as an array","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $result_type = SQLITE_BOTH"},{"required":"no","param":"bool $decode_binary = true"}],"returns":"array"},"sqlite_fetch_all":{"desc":"Fetches all rows from a result set as an array of arrays","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $result_type = SQLITE_BOTH"},{"required":"no","param":"bool $decode_binary = true"}],"returns":"array"},"sqlite_fetch_array":{"desc":"Fetches the next row from a result set as an array","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $result_type = SQLITE_BOTH"},{"required":"no","param":"bool $decode_binary = true"}],"returns":"array"},"sqlite_fetch_column_types":{"desc":"Return an array of column types from a particular table","params":[{"required":"yes","param":"string $table_name"},{"required":"yes","param":"resource $dbhandle"},{"required":"no","param":"int $result_type = &#039;&#039;"}],"returns":"array"},"sqlite_single_query":{"desc":"Executes a query and returns either an array for one single column or the value of the first row","params":[{"required":"yes","param":"resource $db"},{"required":"yes","param":"string $query"},{"required":"no","param":"bool $first_row_only = &#039;&#039;"},{"required":"no","param":"bool $decode_binary = &#039;&#039;"}],"returns":"array"},"ssh2_methods_negotiated":{"desc":"Return list of negotiated methods","params":[{"required":"yes","param":"resource $session"}],"returns":"array"},"ssh2_publickey_list":{"desc":"List currently authorized publickeys","params":[{"required":"yes","param":"resource $pkey"}],"returns":"array"},"ssh2_sftp_lstat":{"desc":"Stat a symbolic link","params":[{"required":"yes","param":"resource $sftp"},{"required":"yes","param":"string $path"}],"returns":"array"},"ssh2_sftp_stat":{"desc":"Stat a file on a remote filesystem","params":[{"required":"yes","param":"resource $sftp"},{"required":"yes","param":"string $path"}],"returns":"array"},"stat":{"desc":"Gives information about a file","params":[{"required":"yes","param":"string $filename"}],"returns":"array"},"stats_rand_get_seeds":{"desc":"Not documented","params":[],"returns":"array"},"stats_rand_phrase_to_seeds":{"desc":"generate two seeds for the RGN random number generator","params":[{"required":"yes","param":"string $phrase"}],"returns":"array"},"stomp_get_read_timeout":{"desc":"Gets read timeout","params":[{"required":"yes","param":"resource $link"}],"returns":"array"},"stomp_read_frame":{"desc":"Reads the next frame","params":[{"required":"no","param":"string $class_name = &quot;stompFrame&quot;"},{"required":"yes","param":"resource $link"}],"returns":"array"},"stream_context_get_options":{"desc":"Retrieve options for a stream/wrapper/context","params":[{"required":"yes","param":"resource $stream_or_context"}],"returns":"array"},"stream_context_get_params":{"desc":"Retrieves parameters from a context","params":[{"required":"yes","param":"resource $stream_or_context"}],"returns":"array"},"stream_get_filters":{"desc":"Retrieve list of registered filters","params":[],"returns":"array"},"stream_get_meta_data":{"desc":"Retrieves header/meta data from streams/file pointers","params":[{"required":"yes","param":"resource $stream"}],"returns":"array"},"stream_get_transports":{"desc":"Retrieve list of registered socket transports","params":[],"returns":"array"},"stream_get_wrappers":{"desc":"Retrieve list of registered streams","params":[],"returns":"array"},"stream_socket_pair":{"desc":"Creates a pair of connected, indistinguishable socket streams","params":[{"required":"yes","param":"int $domain"},{"required":"yes","param":"int $type"},{"required":"yes","param":"int $protocol"}],"returns":"array"},"strptime":{"desc":"Parse a time/date generated with strftime","params":[{"required":"yes","param":"string $date"},{"required":"yes","param":"string $format"}],"returns":"array"},"str_getcsv":{"desc":"Parse a CSV string into an array","params":[{"required":"yes","param":"string $input"},{"required":"no","param":"string $delimiter = &#039;"},{"required":"yes","param":"&#039;"},{"required":"no","param":"string $enclosure = &#039;&quot;&#039;"},{"required":"no","param":"string $escape = &#039;&#92;&#92;&#039;"}],"returns":"array"},"str_split":{"desc":"Convert a string to an array","params":[{"required":"yes","param":"string $string"},{"required":"no","param":"int $split_length = 1"}],"returns":"array"},"svn_blame":{"desc":"Get the SVN blame for a file","params":[{"required":"yes","param":"string $repository_url"},{"required":"no","param":"int $revision_no = SVN_REVISION_HEAD"}],"returns":"array"},"svn_commit":{"desc":"Sends changes from the local working copy to the repository","params":[{"required":"yes","param":"string $log"},{"required":"yes","param":"array $targets"},{"required":"no","param":"bool $dontrecurse = &#039;&#039;"}],"returns":"array"},"svn_diff":{"desc":"Recursively diffs two paths","params":[{"required":"yes","param":"string $path1"},{"required":"yes","param":"int $rev1"},{"required":"yes","param":"string $path2"},{"required":"yes","param":"int $rev2"}],"returns":"array"},"svn_fs_dir_entries":{"desc":"Enumerates the directory entries under path; returns a hash of dir names to file type","params":[{"required":"yes","param":"resource $fsroot"},{"required":"yes","param":"string $path"}],"returns":"array"},"svn_log":{"desc":"Returns the commit log messages of a repository URL","params":[{"required":"yes","param":"string $repos_url"},{"required":"no","param":"int $start_revision = &#039;&#039;"},{"required":"no","param":"int $end_revision = &#039;&#039;"},{"required":"no","param":"int $limit = &#039;&#039;"},{"required":"no","param":"int $flags = SVN_DISCOVER_CHANGED_PATHS | SVN_STOP_ON_COPY"}],"returns":"array"},"svn_ls":{"desc":"Returns list of directory contents in repository URL, optionally at revision number","params":[{"required":"yes","param":"string $repos_url"},{"required":"no","param":"int $revision_no = SVN_REVISION_HEAD"},{"required":"no","param":"bool $recurse = false"},{"required":"no","param":"bool $peg = false"}],"returns":"array"},"svn_status":{"desc":"Returns the status of working copy files and directories","params":[{"required":"yes","param":"string $path"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"array"},"swf_getbitmapinfo":{"desc":"Get information about a bitmap","params":[{"required":"yes","param":"int $bitmapid"}],"returns":"array"},"swf_getfontinfo":{"desc":"Gets font information","params":[],"returns":"array"},"sybase_fetch_array":{"desc":"Fetch row as array","params":[{"required":"yes","param":"resource $result"}],"returns":"array"},"sybase_fetch_assoc":{"desc":"Fetch a result row as an associative array","params":[{"required":"yes","param":"resource $result"}],"returns":"array"},"sybase_fetch_row":{"desc":"Get a result row as an enumerated array","params":[{"required":"yes","param":"resource $result"}],"returns":"array"},"sys_getloadavg":{"desc":"Gets system load average","params":[],"returns":"array"},"tidy_get_config":{"desc":"Get current Tidy configuration","params":[{"required":"yes","param":"tidy $object"}],"returns":"array"},"token_get_all":{"desc":"Split given source into PHP tokens","params":[{"required":"yes","param":"string $source"}],"returns":"array"},"transliterator_list_ids":{"desc":"Get transliterator IDs","params":[],"returns":"array"},"udm_cat_list":{"desc":"Get all the categories on the same level with the current one","params":[{"required":"yes","param":"resource $agent"},{"required":"yes","param":"string $category"}],"returns":"array"},"udm_cat_path":{"desc":"Get the path to the current category","params":[{"required":"yes","param":"resource $agent"},{"required":"yes","param":"string $category"}],"returns":"array"},"unpack":{"desc":"Unpack data from binary string","params":[{"required":"yes","param":"string $format"},{"required":"yes","param":"string $data"}],"returns":"array"},"vpopmail_alias_get":{"desc":"Get all lines of an alias for a domain","params":[{"required":"yes","param":"string $alias"},{"required":"yes","param":"string $domain"}],"returns":"array"},"vpopmail_alias_get_all":{"desc":"Get all lines of an alias for a domain","params":[{"required":"yes","param":"string $domain"}],"returns":"array"},"win32_ps_list_procs":{"desc":"List running processes","params":[],"returns":"array"},"win32_ps_stat_mem":{"desc":"Stat memory utilization","params":[],"returns":"array"},"win32_ps_stat_proc":{"desc":"Stat process","params":[{"required":"no","param":"int $pid = &#039;&#039;"}],"returns":"array"},"wincache_fcache_fileinfo":{"desc":"Retrieves information about files cached in the file cache","params":[{"required":"no","param":"bool $summaryonly = false"}],"returns":"array"},"wincache_fcache_meminfo":{"desc":"Retrieves information about file cache memory usage","params":[],"returns":"array"},"wincache_ocache_fileinfo":{"desc":"Retrieves information about files cached in the opcode cache","params":[{"required":"no","param":"bool $summaryonly = false"}],"returns":"array"},"wincache_ocache_meminfo":{"desc":"Retrieves information about opcode cache memory usage","params":[],"returns":"array"},"wincache_rplist_fileinfo":{"desc":"Retrieves information about resolve file path cache","params":[{"required":"no","param":"bool $summaryonly = false"}],"returns":"array"},"wincache_rplist_meminfo":{"desc":"Retrieves information about memory usage by the resolve file path cache","params":[],"returns":"array"},"wincache_scache_info":{"desc":"Retrieves information about files cached in the session cache","params":[{"required":"no","param":"bool $summaryonly = false"}],"returns":"array"},"wincache_scache_meminfo":{"desc":"Retrieves information about session cache memory usage","params":[],"returns":"array"},"wincache_ucache_info":{"desc":"Retrieves information about data stored in the user cache","params":[{"required":"no","param":"bool $summaryonly = false"},{"required":"no","param":"string $key = &#039;&#039;"}],"returns":"array"},"wincache_ucache_meminfo":{"desc":"Retrieves information about user cache memory usage","params":[],"returns":"array"},"xattr_list":{"desc":"Get a list of extended attributes","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"array"},"xhprof_disable":{"desc":"Stops xhprof profiler","params":[],"returns":"array"},"xmlrpc_parse_method_descriptions":{"desc":"Decodes XML into a list of method descriptions","params":[{"required":"yes","param":"string $xml"}],"returns":"array"},"yaz_es_result":{"desc":"Inspects Extended Services Result","params":[{"required":"yes","param":"resource $id"}],"returns":"array"},"yaz_scan_result":{"desc":"Returns Scan Response result","params":[{"required":"yes","param":"resource $id"},{"required":"no","param":"array $result = &#039;&#039;"}],"returns":"array"},"yp_cat":{"desc":"Return an array containing the entire map","params":[{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $map"}],"returns":"array"},"yp_first":{"desc":"Returns the first key-value pair from the named map","params":[{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $map"}],"returns":"array"},"yp_next":{"desc":"Returns the next key-value pair in the named map","params":[{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $map"},{"required":"yes","param":"string $key"}],"returns":"array"},"apache_child_terminate":{"desc":"Terminate apache process after this request","params":[],"returns":"bool"},"apache_reset_timeout":{"desc":"Reset the Apache write timer","params":[],"returns":"bool"},"apache_setenv":{"desc":"Set an Apache subprocess_env variable","params":[{"required":"yes","param":"string $variable"},{"required":"yes","param":"string $value"},{"required":"no","param":"bool $walk_to_top = false"}],"returns":"bool"},"apc_bin_load":{"desc":"Load a binary dump into the APC file/user cache","params":[{"required":"yes","param":"string $data"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"bool"},"apc_bin_loadfile":{"desc":"Load a binary dump from a file into the APC file/user cache","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"resource $context = &#039;&#039;"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"bool"},"apc_cas":{"desc":"Updates an old value with a new value","params":[{"required":"yes","param":"string $key"},{"required":"yes","param":"int $old"},{"required":"yes","param":"int $new"}],"returns":"bool"},"apc_clear_cache":{"desc":"Clears the APC cache","params":[{"required":"no","param":"string $cache_type = &#039;&#039;"}],"returns":"bool"},"apc_define_constants":{"desc":"Defines a set of constants for retrieval and mass-definition","params":[{"required":"yes","param":"string $key"},{"required":"yes","param":"array $constants"},{"required":"no","param":"bool $case_sensitive = true"}],"returns":"bool"},"apc_load_constants":{"desc":"Loads a set of constants from the cache","params":[{"required":"yes","param":"string $key"},{"required":"no","param":"bool $case_sensitive = true"}],"returns":"bool"},"apd_breakpoint":{"desc":"Stops the interpreter and waits on a CR from the socket","params":[{"required":"yes","param":"int $debug_level"}],"returns":"bool"},"apd_continue":{"desc":"Restarts the interpreter","params":[{"required":"yes","param":"int $debug_level"}],"returns":"bool"},"apd_echo":{"desc":"Echo to the debugging socket","params":[{"required":"yes","param":"string $output"}],"returns":"bool"},"apd_set_session_trace_socket":{"desc":"Starts the remote session debugging","params":[{"required":"yes","param":"string $tcp_server"},{"required":"yes","param":"int $socket_type"},{"required":"yes","param":"int $port"},{"required":"yes","param":"int $debug_level"}],"returns":"bool"},"array_key_exists":{"desc":"Checks if the given key or index exists in the array","params":[{"required":"yes","param":"mixed $key"},{"required":"yes","param":"array $search"}],"returns":"bool"},"array_walk":{"desc":"Apply a user function to every member of an array","params":[{"required":"yes","param":"array $array"},{"required":"yes","param":"callback $funcname"},{"required":"no","param":"mixed $userdata = &#039;&#039;"}],"returns":"bool"},"array_walk_recursive":{"desc":"Apply a user function recursively to every member of an array","params":[{"required":"yes","param":"array $input"},{"required":"yes","param":"callback $funcname"},{"required":"no","param":"mixed $userdata = &#039;&#039;"}],"returns":"bool"},"arsort":{"desc":"Sort an array in reverse order and maintain index association","params":[{"required":"yes","param":"array $array"},{"required":"no","param":"int $sort_flags = SORT_REGULAR"}],"returns":"bool"},"asort":{"desc":"Sort an array and maintain index association","params":[{"required":"yes","param":"array $array"},{"required":"no","param":"int $sort_flags = SORT_REGULAR"}],"returns":"bool"},"assert":{"desc":"Checks if assertion is FALSE","params":[{"required":"yes","param":"mixed $assertion"}],"returns":"bool"},"bbcode_add_element":{"desc":"Adds a bbcode element","params":[{"required":"yes","param":"resource $bbcode_container"},{"required":"yes","param":"string $tag_name"},{"required":"yes","param":"array $tag_rules"}],"returns":"bool"},"bbcode_add_smiley":{"desc":"Adds a smiley to the parser","params":[{"required":"yes","param":"resource $bbcode_container"},{"required":"yes","param":"string $smiley"},{"required":"yes","param":"string $replace_by"}],"returns":"bool"},"bbcode_destroy":{"desc":"Close BBCode_container resource","params":[{"required":"yes","param":"resource $bbcode_container"}],"returns":"bool"},"bbcode_set_arg_parser":{"desc":"Attach another parser in order to use another rule set for argument parsing","params":[{"required":"yes","param":"resource $bbcode_container"},{"required":"yes","param":"resource $bbcode_arg_parser"}],"returns":"bool"},"bbcode_set_flags":{"desc":"Set or alter parser options","params":[{"required":"yes","param":"resource $bbcode_container"},{"required":"yes","param":"int $flags"},{"required":"no","param":"int $mode = BBCODE_SET_FLAGS_SET"}],"returns":"bool"},"bcompiler_load":{"desc":"Reads and creates classes from a bz compressed file","params":[{"required":"yes","param":"string $filename"}],"returns":"bool"},"bcompiler_load_exe":{"desc":"Reads and creates classes from a bcompiler exe file","params":[{"required":"yes","param":"string $filename"}],"returns":"bool"},"bcompiler_parse_class":{"desc":"Reads the bytecodes of a class and calls back to a user function","params":[{"required":"yes","param":"string $class"},{"required":"yes","param":"string $callback"}],"returns":"bool"},"bcompiler_read":{"desc":"Reads and creates classes from a filehandle","params":[{"required":"yes","param":"resource $filehandle"}],"returns":"bool"},"bcompiler_write_class":{"desc":"Writes an defined class as bytecodes","params":[{"required":"yes","param":"resource $filehandle"},{"required":"yes","param":"string $className"},{"required":"no","param":"string $extends = &#039;&#039;"}],"returns":"bool"},"bcompiler_write_constant":{"desc":"Writes a defined constant as bytecodes","params":[{"required":"yes","param":"resource $filehandle"},{"required":"yes","param":"string $constantName"}],"returns":"bool"},"bcompiler_write_exe_footer":{"desc":"Writes the start pos, and sig to the end of a exe type file","params":[{"required":"yes","param":"resource $filehandle"},{"required":"yes","param":"int $startpos"}],"returns":"bool"},"bcompiler_write_file":{"desc":"Writes a php source file as bytecodes","params":[{"required":"yes","param":"resource $filehandle"},{"required":"yes","param":"string $filename"}],"returns":"bool"},"bcompiler_write_footer":{"desc":"Writes the single character x00 to indicate End of compiled data","params":[{"required":"yes","param":"resource $filehandle"}],"returns":"bool"},"bcompiler_write_function":{"desc":"Writes an defined function as bytecodes","params":[{"required":"yes","param":"resource $filehandle"},{"required":"yes","param":"string $functionName"}],"returns":"bool"},"bcompiler_write_functions_from_file":{"desc":"Writes all functions defined in a file as bytecodes","params":[{"required":"yes","param":"resource $filehandle"},{"required":"yes","param":"string $fileName"}],"returns":"bool"},"bcompiler_write_header":{"desc":"Writes the bcompiler header","params":[{"required":"yes","param":"resource $filehandle"},{"required":"no","param":"string $write_ver = &#039;&#039;"}],"returns":"bool"},"bcompiler_write_included_filename":{"desc":"Writes an included file as bytecodes","params":[{"required":"yes","param":"resource $filehandle"},{"required":"yes","param":"string $filename"}],"returns":"bool"},"bcscale":{"desc":"Set default scale parameter for all bc math functions","params":[{"required":"yes","param":"int $scale"}],"returns":"bool"},"cairo_font_options_equal":{"desc":"Description","params":[{"required":"yes","param":"CairoFontOptions $options"},{"required":"yes","param":"CairoFontOptions $other"}],"returns":"bool"},"cairo_has_current_point":{"desc":"The hasCurrentPoint purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"bool"},"cairo_in_fill":{"desc":"The inFill purpose","params":[{"required":"yes","param":"string $x"},{"required":"yes","param":"string $y"},{"required":"yes","param":"CairoContext $context"}],"returns":"bool"},"cairo_in_stroke":{"desc":"The inStroke purpose","params":[{"required":"yes","param":"string $x"},{"required":"yes","param":"string $y"},{"required":"yes","param":"CairoContext $context"}],"returns":"bool"},"cairo_ps_surface_get_eps":{"desc":"Description","params":[{"required":"yes","param":"CairoPsSurface $surface"}],"returns":"bool"},"chdb_create":{"desc":"Creates a chdb file","params":[{"required":"yes","param":"string $pathname"},{"required":"yes","param":"array $data"}],"returns":"bool"},"chdir":{"desc":"Change directory","params":[{"required":"yes","param":"string $directory"}],"returns":"bool"},"checkdate":{"desc":"Validate a Gregorian date","params":[{"required":"yes","param":"int $month"},{"required":"yes","param":"int $day"},{"required":"yes","param":"int $year"}],"returns":"bool"},"checkdnsrr":{"desc":"Check DNS records corresponding to a given Internet host name or IP address","params":[{"required":"yes","param":"string $host"},{"required":"no","param":"string $type = &quot;MX&quot;"}],"returns":"bool"},"chgrp":{"desc":"Changes file group","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"mixed $group"}],"returns":"bool"},"chmod":{"desc":"Changes file mode","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"int $mode"}],"returns":"bool"},"chown":{"desc":"Changes file owner","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"mixed $user"}],"returns":"bool"},"chroot":{"desc":"Change the root directory","params":[{"required":"yes","param":"string $directory"}],"returns":"bool"},"classkit_method_add":{"desc":"Dynamically adds a new method to a given class","params":[{"required":"yes","param":"string $classname"},{"required":"yes","param":"string $methodname"},{"required":"yes","param":"string $args"},{"required":"yes","param":"string $code"},{"required":"no","param":"int $flags = CLASSKIT_ACC_PUBLIC"}],"returns":"bool"},"classkit_method_copy":{"desc":"Copies a method from class to another","params":[{"required":"yes","param":"string $dClass"},{"required":"yes","param":"string $dMethod"},{"required":"yes","param":"string $sClass"},{"required":"no","param":"string $sMethod = &#039;&#039;"}],"returns":"bool"},"classkit_method_redefine":{"desc":"Dynamically changes the code of the given method","params":[{"required":"yes","param":"string $classname"},{"required":"yes","param":"string $methodname"},{"required":"yes","param":"string $args"},{"required":"yes","param":"string $code"},{"required":"no","param":"int $flags = CLASSKIT_ACC_PUBLIC"}],"returns":"bool"},"classkit_method_remove":{"desc":"Dynamically removes the given method","params":[{"required":"yes","param":"string $classname"},{"required":"yes","param":"string $methodname"}],"returns":"bool"},"classkit_method_rename":{"desc":"Dynamically changes the name of the given method","params":[{"required":"yes","param":"string $classname"},{"required":"yes","param":"string $methodname"},{"required":"yes","param":"string $newname"}],"returns":"bool"},"class_alias":{"desc":"Creates an alias for a class","params":[{"required":"no","param":"string $original = &#039;&#039;"},{"required":"no","param":"string $alias = &#039;&#039;"}],"returns":"bool"},"class_exists":{"desc":"Checks if the class has been defined","params":[{"required":"yes","param":"string $class_name"},{"required":"no","param":"bool $autoload = true"}],"returns":"bool"},"closelog":{"desc":"Close connection to system logger","params":[],"returns":"bool"},"collator_asort":{"desc":"Sort array maintaining index association","params":[{"required":"yes","param":"array $arr"},{"required":"no","param":"int $sort_flag = &#039;&#039;"},{"required":"yes","param":"Collator $coll"}],"returns":"bool"},"collator_set_attribute":{"desc":"Set collation attribute","params":[{"required":"yes","param":"int $attr"},{"required":"yes","param":"int $val"},{"required":"yes","param":"Collator $coll"}],"returns":"bool"},"collator_set_strength":{"desc":"Set collation strength","params":[{"required":"yes","param":"int $strength"},{"required":"yes","param":"Collator $coll"}],"returns":"bool"},"collator_sort":{"desc":"Sort array using specified collator","params":[{"required":"yes","param":"array $arr"},{"required":"no","param":"int $sort_flag = &#039;&#039;"},{"required":"yes","param":"Collator $coll"}],"returns":"bool"},"collator_sort_with_sort_keys":{"desc":"Sort array using specified collator and sort keys","params":[{"required":"yes","param":"array $arr"},{"required":"yes","param":"Collator $coll"}],"returns":"bool"},"com_event_sink":{"desc":"Connect events from a COM object to a PHP object","params":[{"required":"yes","param":"variant $comobject"},{"required":"yes","param":"object $sinkobject"},{"required":"no","param":"mixed $sinkinterface = &#039;&#039;"}],"returns":"bool"},"com_isenum":{"desc":"Indicates if a COM object has an IEnumVariant interface for iteration [deprecated]","params":[{"required":"yes","param":"variant $com_module"}],"returns":"bool"},"com_load_typelib":{"desc":"Loads a Typelib","params":[{"required":"yes","param":"string $typelib_name"},{"required":"no","param":"bool $case_insensitive = true"}],"returns":"bool"},"com_message_pump":{"desc":"Process COM messages, sleeping for up to timeoutms milliseconds","params":[{"required":"no","param":"int $timeoutms = &#039;&#039;"}],"returns":"bool"},"com_print_typeinfo":{"desc":"Print out a PHP class definition for a dispatchable interface","params":[{"required":"yes","param":"object $comobject"},{"required":"no","param":"string $dispinterface = &#039;&#039;"},{"required":"no","param":"bool $wantsink = false"}],"returns":"bool"},"copy":{"desc":"Copies file","params":[{"required":"yes","param":"string $source"},{"required":"yes","param":"string $dest"},{"required":"no","param":"resource $context = &#039;&#039;"}],"returns":"bool"},"crack_check":{"desc":"Performs an obscure check with the given password","params":[{"required":"yes","param":"resource $dictionary"},{"required":"yes","param":"string $password"}],"returns":"bool"},"crack_closedict":{"desc":"Closes an open CrackLib dictionary","params":[{"required":"no","param":"resource $dictionary = &#039;&#039;"}],"returns":"bool"},"cubrid_bind":{"desc":"Bind variables to a prepared statement as parameters","params":[{"required":"yes","param":"resource $req_identifier"},{"required":"yes","param":"mixed $bind_param"},{"required":"yes","param":"mixed $bind_value"},{"required":"no","param":"string $bind_value_type = &#039;&#039;"}],"returns":"bool"},"cubrid_close":{"desc":"Close CUBRID connection","params":[{"required":"no","param":"resource $conn_identifier = &#039;&#039;"}],"returns":"bool"},"cubrid_close_request":{"desc":"Close the request handle","params":[{"required":"yes","param":"resource $req_identifier"}],"returns":"bool"},"cubrid_commit":{"desc":"Commit a transaction","params":[{"required":"yes","param":"resource $conn_identifier"}],"returns":"bool"},"cubrid_disconnect":{"desc":"Close a database connection","params":[{"required":"yes","param":"resource $conn_identifier"}],"returns":"bool"},"cubrid_drop":{"desc":"Delete an instance using OID","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $oid"}],"returns":"bool"},"cubrid_execute":{"desc":"Execute a prepared SQL statement","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $SQL"},{"required":"no","param":"int $option = &#039;&#039;"},{"required":"yes","param":"resource $request_identifier"}],"returns":"bool"},"cubrid_field_seek":{"desc":"Move the result set cursor to the specified field offset","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $field_offset = &#039;&#039;"}],"returns":"bool"},"cubrid_free_result":{"desc":"Free the memory occupied by the result data","params":[{"required":"yes","param":"resource $req_identifier"}],"returns":"bool"},"cubrid_get_autocommit":{"desc":"Get auto-commit mode of the connection","params":[{"required":"yes","param":"resource $conn_identifier"}],"returns":"bool"},"cubrid_lob_close":{"desc":"Close BLOB/CLOB data","params":[{"required":"yes","param":"array $lob_identifier_array"}],"returns":"bool"},"cubrid_lob_export":{"desc":"Export BLOB/CLOB data to file","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"resource $lob_identifier"},{"required":"yes","param":"string $path_name"}],"returns":"bool"},"cubrid_lob_send":{"desc":"Read BLOB/CLOB data and send straight to browser","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"resource $lob_identifier"}],"returns":"bool"},"cubrid_lock_read":{"desc":"Set a read lock on the given OID","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $oid"}],"returns":"bool"},"cubrid_lock_write":{"desc":"Set a write lock on the given OID","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $oid"}],"returns":"bool"},"cubrid_next_result":{"desc":"Get result of next query when executing multiple SQL statements","params":[{"required":"yes","param":"resource $result"}],"returns":"bool"},"cubrid_ping":{"desc":"Ping a server connection or reconnect if there is no connection","params":[{"required":"no","param":"resource $conn_identifier = &#039;&#039;"}],"returns":"bool"},"cubrid_rollback":{"desc":"Roll back a transaction","params":[{"required":"yes","param":"resource $conn_identifier"}],"returns":"bool"},"cubrid_seq_drop":{"desc":"Delete an element from sequence type column using OID","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $oid"},{"required":"yes","param":"string $attr_name"},{"required":"yes","param":"int $index"}],"returns":"bool"},"cubrid_seq_insert":{"desc":"Insert an element to a sequence type column using OID","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $oid"},{"required":"yes","param":"string $attr_name"},{"required":"yes","param":"int $index"},{"required":"yes","param":"string $seq_element"}],"returns":"bool"},"cubrid_seq_put":{"desc":"Update the element value of sequence type column using OID","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $oid"},{"required":"yes","param":"string $attr_name"},{"required":"yes","param":"int $index"},{"required":"yes","param":"string $seq_element"}],"returns":"bool"},"cubrid_set_add":{"desc":"Insert a single element to set type column using OID","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $oid"},{"required":"yes","param":"string $attr_name"},{"required":"yes","param":"string $set_element"}],"returns":"bool"},"cubrid_set_autocommit":{"desc":"Set autocommit mode of the connection","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"bool $mode"}],"returns":"bool"},"cubrid_set_db_parameter":{"desc":"Sets the CUBRID database parameters","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"int $param_type"},{"required":"yes","param":"int $param_value"}],"returns":"bool"},"cubrid_set_drop":{"desc":"Delete an element from set type column using OID","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $oid"},{"required":"yes","param":"string $attr_name"},{"required":"yes","param":"string $set_element"}],"returns":"bool"},"curl_setopt":{"desc":"Set an option for a cURL transfer","params":[{"required":"yes","param":"resource $ch"},{"required":"yes","param":"int $option"},{"required":"yes","param":"mixed $value"}],"returns":"bool"},"curl_setopt_array":{"desc":"Set multiple options for a cURL transfer","params":[{"required":"yes","param":"resource $ch"},{"required":"yes","param":"array $options"}],"returns":"bool"},"cyrus_bind":{"desc":"Bind callbacks to a Cyrus IMAP connection","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"array $callbacks"}],"returns":"bool"},"cyrus_close":{"desc":"Close connection to a Cyrus IMAP server","params":[{"required":"yes","param":"resource $connection"}],"returns":"bool"},"cyrus_unbind":{"desc":"Unbind ...","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $trigger_name"}],"returns":"bool"},"datefmt_is_lenient":{"desc":"Get the lenient used for the IntlDateFormatter","params":[{"required":"yes","param":"IntlDateFormatter $fmt"}],"returns":"bool"},"datefmt_set_calendar":{"desc":"sets the calendar used to the appropriate calendar, which must be","params":[{"required":"yes","param":"int $which"},{"required":"yes","param":"IntlDateFormatter $fmt"}],"returns":"bool"},"datefmt_set_lenient":{"desc":"Set the leniency of the parser","params":[{"required":"yes","param":"bool $lenient"},{"required":"yes","param":"IntlDateFormatter $fmt"}],"returns":"bool"},"datefmt_set_pattern":{"desc":"Set the pattern used for the IntlDateFormatter","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"IntlDateFormatter $fmt"}],"returns":"bool"},"datefmt_set_timezone_id":{"desc":"Sets the time zone to use","params":[{"required":"yes","param":"string $zone"},{"required":"yes","param":"IntlDateFormatter $fmt"}],"returns":"bool"},"date_default_timezone_set":{"desc":"Sets the default timezone used by all date/time functions in a script","params":[{"required":"yes","param":"string $timezone_identifier"}],"returns":"bool"},"db2_bind_param":{"desc":"Binds a PHP variable to an SQL statement parameter","params":[{"required":"yes","param":"resource $stmt"},{"required":"yes","param":"int $parameter-number"},{"required":"yes","param":"string $variable-name"},{"required":"no","param":"int $parameter-type = &#039;&#039;"},{"required":"no","param":"int $data-type = &#039;&#039;"},{"required":"no","param":"int $precision = -1"},{"required":"no","param":"int $scale = &#039;&#039;"}],"returns":"bool"},"db2_close":{"desc":"Closes a database connection","params":[{"required":"yes","param":"resource $connection"}],"returns":"bool"},"db2_commit":{"desc":"Commits a transaction","params":[{"required":"yes","param":"resource $connection"}],"returns":"bool"},"db2_execute":{"desc":"Executes a prepared SQL statement","params":[{"required":"yes","param":"resource $stmt"},{"required":"no","param":"array $parameters = &#039;&#039;"}],"returns":"bool"},"db2_fetch_row":{"desc":"Sets the result set pointer to the next row or requested row","params":[{"required":"yes","param":"resource $stmt"},{"required":"no","param":"int $row_number = &#039;&#039;"}],"returns":"bool"},"db2_free_result":{"desc":"Frees resources associated with a result set","params":[{"required":"yes","param":"resource $stmt"}],"returns":"bool"},"db2_free_stmt":{"desc":"Frees resources associated with the indicated statement resource","params":[{"required":"yes","param":"resource $stmt"}],"returns":"bool"},"db2_pclose":{"desc":"Closes a persistent database connection","params":[{"required":"yes","param":"resource $resource"}],"returns":"bool"},"db2_rollback":{"desc":"Rolls back a transaction","params":[{"required":"yes","param":"resource $connection"}],"returns":"bool"},"db2_set_option":{"desc":"Set options for connection or statement resources","params":[{"required":"yes","param":"resource $resource"},{"required":"yes","param":"array $options"},{"required":"yes","param":"int $type"}],"returns":"bool"},"dbase_add_record":{"desc":"Adds a record to a database","params":[{"required":"yes","param":"int $dbase_identifier"},{"required":"yes","param":"array $record"}],"returns":"bool"},"dbase_close":{"desc":"Closes a database","params":[{"required":"yes","param":"int $dbase_identifier"}],"returns":"bool"},"dbase_delete_record":{"desc":"Deletes a record from a database","params":[{"required":"yes","param":"int $dbase_identifier"},{"required":"yes","param":"int $record_number"}],"returns":"bool"},"dbase_pack":{"desc":"Packs a database","params":[{"required":"yes","param":"int $dbase_identifier"}],"returns":"bool"},"dbase_replace_record":{"desc":"Replaces a record in a database","params":[{"required":"yes","param":"int $dbase_identifier"},{"required":"yes","param":"array $record"},{"required":"yes","param":"int $record_number"}],"returns":"bool"},"dba_delete":{"desc":"Delete DBA entry specified by key","params":[{"required":"yes","param":"string $key"},{"required":"yes","param":"resource $handle"}],"returns":"bool"},"dba_exists":{"desc":"Check whether key exists","params":[{"required":"yes","param":"string $key"},{"required":"yes","param":"resource $handle"}],"returns":"bool"},"dba_insert":{"desc":"Insert entry","params":[{"required":"yes","param":"string $key"},{"required":"yes","param":"string $value"},{"required":"yes","param":"resource $handle"}],"returns":"bool"},"dba_optimize":{"desc":"Optimize database","params":[{"required":"yes","param":"resource $handle"}],"returns":"bool"},"dba_replace":{"desc":"Replace or insert entry","params":[{"required":"yes","param":"string $key"},{"required":"yes","param":"string $value"},{"required":"yes","param":"resource $handle"}],"returns":"bool"},"dba_sync":{"desc":"Synchronize database","params":[{"required":"yes","param":"resource $handle"}],"returns":"bool"},"dbx_sort":{"desc":"Sort a result from a dbx_query by a custom sort function","params":[{"required":"yes","param":"object $result"},{"required":"yes","param":"string $user_compare_function"}],"returns":"bool"},"define":{"desc":"Defines a named constant","params":[{"required":"yes","param":"string $name"},{"required":"yes","param":"mixed $value"},{"required":"no","param":"bool $case_insensitive = false"}],"returns":"bool"},"defined":{"desc":"Checks whether a given named constant exists","params":[{"required":"yes","param":"string $name"}],"returns":"bool"},"dio_tcsetattr":{"desc":"Sets terminal attributes and baud rate for a serial port","params":[{"required":"yes","param":"resource $fd"},{"required":"yes","param":"array $options"}],"returns":"bool"},"dio_truncate":{"desc":"Truncates file descriptor fd to offset bytes","params":[{"required":"yes","param":"resource $fd"},{"required":"yes","param":"int $offset"}],"returns":"bool"},"dl":{"desc":"Loads a PHP extension at runtime","params":[{"required":"yes","param":"string $library"}],"returns":"bool"},"db2_num_rows":{"desc":"Returns the number of rows affected by an SQL statement","params":[{"required":"yes","param":"resource $stmt"}],"returns":"boolean"},"empty":{"desc":"Determine whether a variable is empty","params":[{"required":"yes","param":"mixed $var"}],"returns":"bool"},"enchant_broker_dict_exists":{"desc":"Whether a dictionary exists or not. Using non-empty tag","params":[{"required":"yes","param":"resource $broker"},{"required":"yes","param":"string $tag"}],"returns":"bool"},"enchant_broker_free":{"desc":"Free the broker resource and its dictionnaries","params":[{"required":"yes","param":"resource $broker"}],"returns":"bool"},"enchant_broker_free_dict":{"desc":"Free a dictionary resource","params":[{"required":"yes","param":"resource $dict"}],"returns":"bool"},"enchant_broker_set_ordering":{"desc":"Declares a preference of dictionaries to use for the language","params":[{"required":"yes","param":"resource $broker"},{"required":"yes","param":"string $tag"},{"required":"yes","param":"string $ordering"}],"returns":"bool"},"enchant_dict_check":{"desc":"Check whether a word is correctly spelled or not","params":[{"required":"yes","param":"resource $dict"},{"required":"yes","param":"string $word"}],"returns":"bool"},"enchant_dict_is_in_session":{"desc":"whether or not &#039;word&#039; exists in this spelling-session","params":[{"required":"yes","param":"resource $dict"},{"required":"yes","param":"string $word"}],"returns":"bool"},"enchant_dict_quick_check":{"desc":"Check the word is correctly spelled and provide suggestions","params":[{"required":"yes","param":"resource $dict"},{"required":"yes","param":"string $word"},{"required":"no","param":"array $suggestions = &#039;&#039;"}],"returns":"bool"},"error_log":{"desc":"Send an error message somewhere","params":[{"required":"yes","param":"string $message"},{"required":"no","param":"int $message_type = &#039;&#039;"},{"required":"no","param":"string $destination = &#039;&#039;"},{"required":"no","param":"string $extra_headers = &#039;&#039;"}],"returns":"bool"},"event_add":{"desc":"Add an event to the set of monitored events","params":[{"required":"yes","param":"resource $event"},{"required":"no","param":"int $timeout = -1"}],"returns":"bool"},"event_base_loopbreak":{"desc":"Abort event loop","params":[{"required":"yes","param":"resource $event_base"}],"returns":"bool"},"event_base_loopexit":{"desc":"Exit loop after a time","params":[{"required":"yes","param":"resource $event_base"},{"required":"no","param":"int $timeout = -1"}],"returns":"bool"},"event_base_priority_init":{"desc":"Set the number of event priority levels","params":[{"required":"yes","param":"resource $event_base"},{"required":"yes","param":"int $npriorities"}],"returns":"bool"},"event_base_set":{"desc":"Associate event base with an event","params":[{"required":"yes","param":"resource $event"},{"required":"yes","param":"resource $event_base"}],"returns":"bool"},"event_buffer_base_set":{"desc":"Associate buffered event with an event base","params":[{"required":"yes","param":"resource $bevent"},{"required":"yes","param":"resource $event_base"}],"returns":"bool"},"event_buffer_disable":{"desc":"Disable a buffered event","params":[{"required":"yes","param":"resource $bevent"},{"required":"yes","param":"int $events"}],"returns":"bool"},"event_buffer_enable":{"desc":"Enable a buffered event","params":[{"required":"yes","param":"resource $bevent"},{"required":"yes","param":"int $events"}],"returns":"bool"},"event_buffer_priority_set":{"desc":"Assign a priority to a buffered event","params":[{"required":"yes","param":"resource $bevent"},{"required":"yes","param":"int $priority"}],"returns":"bool"},"event_buffer_set_callback":{"desc":"Set or reset callbacks for a buffered event","params":[{"required":"yes","param":"resource $event"},{"required":"yes","param":"mixed $readcb"},{"required":"yes","param":"mixed $writecb"},{"required":"yes","param":"mixed $errorcb"},{"required":"no","param":"mixed $arg = &#039;&#039;"}],"returns":"bool"},"event_buffer_write":{"desc":"Write data to a buffered event","params":[{"required":"yes","param":"resource $bevent"},{"required":"yes","param":"string $data"},{"required":"no","param":"int $data_size = -1"}],"returns":"bool"},"event_del":{"desc":"Remove an event from the set of monitored events","params":[{"required":"yes","param":"resource $event"}],"returns":"bool"},"event_set":{"desc":"Prepare an event","params":[{"required":"yes","param":"resource $event"},{"required":"yes","param":"mixed $fd"},{"required":"yes","param":"int $events"},{"required":"yes","param":"mixed $callback"},{"required":"no","param":"mixed $arg = &#039;&#039;"}],"returns":"bool"},"extension_loaded":{"desc":"Find out whether an extension is loaded","params":[{"required":"yes","param":"string $name"}],"returns":"bool"},"fam_cancel_monitor":{"desc":"Terminate monitoring","params":[{"required":"yes","param":"resource $fam"},{"required":"yes","param":"resource $fam_monitor"}],"returns":"bool"},"fam_resume_monitor":{"desc":"Resume suspended monitoring","params":[{"required":"yes","param":"resource $fam"},{"required":"yes","param":"resource $fam_monitor"}],"returns":"bool"},"fam_suspend_monitor":{"desc":"Temporarily suspend monitoring","params":[{"required":"yes","param":"resource $fam"},{"required":"yes","param":"resource $fam_monitor"}],"returns":"bool"},"fbsql_autocommit":{"desc":"Enable or disable autocommit","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"no","param":"bool $OnOff = &#039;&#039;"}],"returns":"bool"},"fbsql_change_user":{"desc":"Change logged in user of the active connection","params":[{"required":"yes","param":"string $user"},{"required":"yes","param":"string $password"},{"required":"no","param":"string $database = &#039;&#039;"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"fbsql_close":{"desc":"Close FrontBase connection","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"fbsql_commit":{"desc":"Commits a transaction to the database","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"fbsql_create_db":{"desc":"Create a FrontBase database","params":[{"required":"yes","param":"string $database_name"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"},{"required":"no","param":"string $database_options = &#039;&#039;"}],"returns":"bool"},"fbsql_data_seek":{"desc":"Move internal result pointer","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $row_number"}],"returns":"bool"},"fbsql_drop_db":{"desc":"Drop (delete) a FrontBase database","params":[{"required":"yes","param":"string $database_name"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"fbsql_field_seek":{"desc":"Set result pointer to a specified field offset","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $field_offset = &#039;&#039;"}],"returns":"bool"},"fbsql_free_result":{"desc":"Free result memory","params":[{"required":"yes","param":"resource $result"}],"returns":"bool"},"fbsql_next_result":{"desc":"Move the internal result pointer to the next result","params":[{"required":"yes","param":"resource $result"}],"returns":"bool"},"fbsql_rollback":{"desc":"Rollback a transaction to the database","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"fbsql_select_db":{"desc":"Select a FrontBase database","params":[{"required":"no","param":"string $database_name = &#039;&#039;"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"fbsql_set_lob_mode":{"desc":"Set the LOB retrieve mode for a FrontBase result set","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $lob_mode"}],"returns":"bool"},"fbsql_set_password":{"desc":"Change the password for a given user","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"string $user"},{"required":"yes","param":"string $password"},{"required":"yes","param":"string $old_password"}],"returns":"bool"},"fbsql_start_db":{"desc":"Start a database on local or remote server","params":[{"required":"yes","param":"string $database_name"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"},{"required":"no","param":"string $database_options = &#039;&#039;"}],"returns":"bool"},"fbsql_stop_db":{"desc":"Stop a database on local or remote server","params":[{"required":"yes","param":"string $database_name"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"fbsql_warnings":{"desc":"Enable or disable FrontBase warnings","params":[{"required":"no","param":"bool $OnOff = &#039;&#039;"}],"returns":"bool"},"fclose":{"desc":"Closes an open file pointer","params":[{"required":"yes","param":"resource $handle"}],"returns":"bool"},"fdf_add_doc_javascript":{"desc":"Adds javascript code to the FDF document","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"string $script_name"},{"required":"yes","param":"string $script_code"}],"returns":"bool"},"fdf_add_template":{"desc":"Adds a template into the FDF document","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"int $newpage"},{"required":"yes","param":"string $filename"},{"required":"yes","param":"string $template"},{"required":"yes","param":"int $rename"}],"returns":"bool"},"fdf_enum_values":{"desc":"Call a user defined function for each document value","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"callback $function"},{"required":"no","param":"mixed $userdata = &#039;&#039;"}],"returns":"bool"},"fdf_get_ap":{"desc":"Get the appearance of a field","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"string $field"},{"required":"yes","param":"int $face"},{"required":"yes","param":"string $filename"}],"returns":"bool"},"fdf_remove_item":{"desc":"Sets target frame for form","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"string $fieldname"},{"required":"yes","param":"int $item"}],"returns":"bool"},"fdf_save":{"desc":"Save a FDF document","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"no","param":"string $filename = &#039;&#039;"}],"returns":"bool"},"fdf_set_ap":{"desc":"Set the appearance of a field","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"string $field_name"},{"required":"yes","param":"int $face"},{"required":"yes","param":"string $filename"},{"required":"yes","param":"int $page_number"}],"returns":"bool"},"fdf_set_encoding":{"desc":"Sets FDF character encoding","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"string $encoding"}],"returns":"bool"},"fdf_set_file":{"desc":"Set PDF document to display FDF data in","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"string $url"},{"required":"no","param":"string $target_frame = &#039;&#039;"}],"returns":"bool"},"fdf_set_flags":{"desc":"Sets a flag of a field","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"string $fieldname"},{"required":"yes","param":"int $whichFlags"},{"required":"yes","param":"int $newFlags"}],"returns":"bool"},"fdf_set_javascript_action":{"desc":"Sets an javascript action of a field","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"string $fieldname"},{"required":"yes","param":"int $trigger"},{"required":"yes","param":"string $script"}],"returns":"bool"},"fdf_set_on_import_javascript":{"desc":"Adds javascript code to be executed when Acrobat opens the FDF","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"string $script"},{"required":"yes","param":"bool $before_data_import"}],"returns":"bool"},"fdf_set_opt":{"desc":"Sets an option of a field","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"string $fieldname"},{"required":"yes","param":"int $element"},{"required":"yes","param":"string $str1"},{"required":"yes","param":"string $str2"}],"returns":"bool"},"fdf_set_status":{"desc":"Set the value of the /STATUS key","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"string $status"}],"returns":"bool"},"fdf_set_submit_form_action":{"desc":"Sets a submit form action of a field","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"string $fieldname"},{"required":"yes","param":"int $trigger"},{"required":"yes","param":"string $script"},{"required":"yes","param":"int $flags"}],"returns":"bool"},"fdf_set_target_frame":{"desc":"Set target frame for form display","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"string $frame_name"}],"returns":"bool"},"fdf_set_value":{"desc":"Set the value of a field","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"string $fieldname"},{"required":"yes","param":"mixed $value"},{"required":"no","param":"int $isName = &#039;&#039;"}],"returns":"bool"},"fdf_set_version":{"desc":"Sets version number for a FDF file","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"string $version"}],"returns":"bool"},"feof":{"desc":"Tests for end-of-file on a file pointer","params":[{"required":"yes","param":"resource $handle"}],"returns":"bool"},"fflush":{"desc":"Flushes the output to a file","params":[{"required":"yes","param":"resource $handle"}],"returns":"bool"},"filepro":{"desc":"Read and verify the map file","params":[{"required":"yes","param":"string $directory"}],"returns":"bool"},"file_exists":{"desc":"Checks whether a file or directory exists","params":[{"required":"yes","param":"string $filename"}],"returns":"bool"},"filter_has_var":{"desc":"Checks if variable of specified type exists","params":[{"required":"yes","param":"int $type"},{"required":"yes","param":"string $variable_name"}],"returns":"bool"},"finfo_close":{"desc":"Close fileinfo resource","params":[{"required":"yes","param":"resource $finfo"}],"returns":"bool"},"finfo_set_flags":{"desc":"Set libmagic configuration options","params":[{"required":"yes","param":"resource $finfo"},{"required":"yes","param":"int $options"}],"returns":"bool"},"flock":{"desc":"Portable advisory file locking","params":[{"required":"yes","param":"resource $handle"},{"required":"yes","param":"int $operation"},{"required":"no","param":"int $wouldblock = &#039;&#039;"}],"returns":"bool"},"fnmatch":{"desc":"Match filename against a pattern","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"string $string"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"bool"},"ftp_alloc":{"desc":"Allocates space for a file to be uploaded","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"int $filesize"},{"required":"no","param":"string $result = &#039;&#039;"}],"returns":"bool"},"ftp_cdup":{"desc":"Changes to the parent directory","params":[{"required":"yes","param":"resource $ftp_stream"}],"returns":"bool"},"ftp_chdir":{"desc":"Changes the current directory on a FTP server","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"string $directory"}],"returns":"bool"},"ftp_delete":{"desc":"Deletes a file on the FTP server","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"string $path"}],"returns":"bool"},"ftp_exec":{"desc":"Requests execution of a command on the FTP server","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"string $command"}],"returns":"bool"},"ftp_fget":{"desc":"Downloads a file from the FTP server and saves to an open file","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"resource $handle"},{"required":"yes","param":"string $remote_file"},{"required":"yes","param":"int $mode"},{"required":"no","param":"int $resumepos = &#039;&#039;"}],"returns":"bool"},"ftp_fput":{"desc":"Uploads from an open file to the FTP server","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"string $remote_file"},{"required":"yes","param":"resource $handle"},{"required":"yes","param":"int $mode"},{"required":"no","param":"int $startpos = &#039;&#039;"}],"returns":"bool"},"ftp_get":{"desc":"Downloads a file from the FTP server","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"string $local_file"},{"required":"yes","param":"string $remote_file"},{"required":"yes","param":"int $mode"},{"required":"no","param":"int $resumepos = &#039;&#039;"}],"returns":"bool"},"ftp_login":{"desc":"Logs in to an FTP connection","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"string $username"},{"required":"yes","param":"string $password"}],"returns":"bool"},"ftp_pasv":{"desc":"Turns passive mode on or off","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"bool $pasv"}],"returns":"bool"},"ftp_put":{"desc":"Uploads a file to the FTP server","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"string $remote_file"},{"required":"yes","param":"string $local_file"},{"required":"yes","param":"int $mode"},{"required":"no","param":"int $startpos = &#039;&#039;"}],"returns":"bool"},"ftp_rename":{"desc":"Renames a file or a directory on the FTP server","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"string $oldname"},{"required":"yes","param":"string $newname"}],"returns":"bool"},"ftp_rmdir":{"desc":"Removes a directory","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"string $directory"}],"returns":"bool"},"ftp_set_option":{"desc":"Set miscellaneous runtime FTP options","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"int $option"},{"required":"yes","param":"mixed $value"}],"returns":"bool"},"ftp_site":{"desc":"Sends a SITE command to the server","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"string $command"}],"returns":"bool"},"ftruncate":{"desc":"Truncates a file to a given length","params":[{"required":"yes","param":"resource $handle"},{"required":"yes","param":"int $size"}],"returns":"bool"},"function_exists":{"desc":"Return TRUE if the given function has been defined","params":[{"required":"yes","param":"string $function_name"}],"returns":"bool"},"gc_enabled":{"desc":"Returns status of the circular reference collector","params":[],"returns":"bool"},"geoip_db_avail":{"desc":"Determine if GeoIP Database is available","params":[{"required":"yes","param":"int $database"}],"returns":"bool"},"getmxrr":{"desc":"Get MX records corresponding to a given Internet host name","params":[{"required":"yes","param":"string $hostname"},{"required":"yes","param":"array $mxhosts"},{"required":"no","param":"array $weight = &#039;&#039;"}],"returns":"bool"},"gmp_perfect_square":{"desc":"Perfect square check","params":[{"required":"yes","param":"resource $a"}],"returns":"bool"},"gmp_testbit":{"desc":"Tests if a bit is set","params":[{"required":"yes","param":"resource $a"},{"required":"yes","param":"int $index"}],"returns":"bool"},"gnupg_adddecryptkey":{"desc":"Add a key for decryption","params":[{"required":"yes","param":"resource $identifier"},{"required":"yes","param":"string $fingerprint"},{"required":"yes","param":"string $passphrase"}],"returns":"bool"},"gnupg_addencryptkey":{"desc":"Add a key for encryption","params":[{"required":"yes","param":"resource $identifier"},{"required":"yes","param":"string $fingerprint"}],"returns":"bool"},"gnupg_addsignkey":{"desc":"Add a key for signing","params":[{"required":"yes","param":"resource $identifier"},{"required":"yes","param":"string $fingerprint"},{"required":"no","param":"string $passphrase = &#039;&#039;"}],"returns":"bool"},"gnupg_cleardecryptkeys":{"desc":"Removes all keys which were set for decryption before","params":[{"required":"yes","param":"resource $identifier"}],"returns":"bool"},"gnupg_clearencryptkeys":{"desc":"Removes all keys which were set for encryption before","params":[{"required":"yes","param":"resource $identifier"}],"returns":"bool"},"gnupg_clearsignkeys":{"desc":"Removes all keys which were set for signing before","params":[{"required":"yes","param":"resource $identifier"}],"returns":"bool"},"gnupg_setarmor":{"desc":"Toggle armored output","params":[{"required":"yes","param":"resource $identifier"},{"required":"yes","param":"int $armor"}],"returns":"bool"},"gnupg_setsignmode":{"desc":"Sets the mode for signing","params":[{"required":"yes","param":"resource $identifier"},{"required":"yes","param":"int $signmode"}],"returns":"bool"},"gupnp_context_host_path":{"desc":"Start hosting","params":[{"required":"yes","param":"resource $context"},{"required":"yes","param":"string $local_path"},{"required":"yes","param":"string $server_path"}],"returns":"bool"},"gupnp_context_timeout_add":{"desc":"Sets a function to be called at regular intervals","params":[{"required":"yes","param":"resource $context"},{"required":"yes","param":"int $timeout"},{"required":"yes","param":"mixed $callback"},{"required":"no","param":"mixed $arg = &#039;&#039;"}],"returns":"bool"},"gupnp_context_unhost_path":{"desc":"Stop hosting","params":[{"required":"yes","param":"resource $context"},{"required":"yes","param":"string $server_path"}],"returns":"bool"},"gupnp_control_point_browse_start":{"desc":"Start browsing","params":[{"required":"yes","param":"resource $cpoint"}],"returns":"bool"},"gupnp_control_point_browse_stop":{"desc":"Stop browsing","params":[{"required":"yes","param":"resource $cpoint"}],"returns":"bool"},"gupnp_control_point_callback_set":{"desc":"Set control point callback","params":[{"required":"yes","param":"resource $cpoint"},{"required":"yes","param":"int $signal"},{"required":"yes","param":"mixed $callback"},{"required":"no","param":"mixed $arg = &#039;&#039;"}],"returns":"bool"},"gupnp_device_action_callback_set":{"desc":"Set device callback function","params":[{"required":"yes","param":"resource $root_device"},{"required":"yes","param":"int $signal"},{"required":"yes","param":"string $action_name"},{"required":"yes","param":"mixed $callback"},{"required":"no","param":"mixed $arg = &#039;&#039;"}],"returns":"bool"},"gupnp_root_device_get_available":{"desc":"Check whether root device is available","params":[{"required":"yes","param":"resource $root_device"}],"returns":"bool"},"gupnp_root_device_set_available":{"desc":"Set whether or not root_device is available","params":[{"required":"yes","param":"resource $root_device"},{"required":"yes","param":"bool $available"}],"returns":"bool"},"gupnp_root_device_start":{"desc":"Start main loop","params":[{"required":"yes","param":"resource $root_device"}],"returns":"bool"},"gupnp_root_device_stop":{"desc":"Stop main loop","params":[{"required":"yes","param":"resource $root_device"}],"returns":"bool"},"gupnp_service_action_return":{"desc":"Return succesfully","params":[{"required":"yes","param":"resource $action"}],"returns":"bool"},"gupnp_service_action_return_error":{"desc":"Return error code","params":[{"required":"yes","param":"resource $action"},{"required":"yes","param":"int $error_code"},{"required":"no","param":"string $error_description = &#039;&#039;"}],"returns":"bool"},"gupnp_service_action_set":{"desc":"Sets the specified action return values","params":[{"required":"yes","param":"resource $action"},{"required":"yes","param":"string $name"},{"required":"yes","param":"int $type"},{"required":"yes","param":"mixed $value"}],"returns":"bool"},"gupnp_service_freeze_notify":{"desc":"Freeze new notifications","params":[{"required":"yes","param":"resource $service"}],"returns":"bool"},"gupnp_service_notify":{"desc":"Notifies listening clients","params":[{"required":"yes","param":"resource $service"},{"required":"yes","param":"string $name"},{"required":"yes","param":"int $type"},{"required":"yes","param":"mixed $value"}],"returns":"bool"},"gupnp_service_proxy_action_set":{"desc":"Send action to the service and set value","params":[{"required":"yes","param":"resource $proxy"},{"required":"yes","param":"string $action"},{"required":"yes","param":"string $name"},{"required":"yes","param":"mixed $value"},{"required":"yes","param":"int $type"}],"returns":"bool"},"gupnp_service_proxy_add_notify":{"desc":"Sets up callback for variable change notification","params":[{"required":"yes","param":"resource $proxy"},{"required":"yes","param":"string $value"},{"required":"yes","param":"int $type"},{"required":"yes","param":"mixed $callback"},{"required":"no","param":"mixed $arg = &#039;&#039;"}],"returns":"bool"},"gupnp_service_proxy_callback_set":{"desc":"Set service proxy callback for signal","params":[{"required":"yes","param":"resource $proxy"},{"required":"yes","param":"int $signal"},{"required":"yes","param":"mixed $callback"},{"required":"no","param":"mixed $arg = &#039;&#039;"}],"returns":"bool"},"gupnp_service_proxy_get_subscribed":{"desc":"Check whether subscription is valid to the service","params":[{"required":"yes","param":"resource $proxy"}],"returns":"bool"},"gupnp_service_proxy_remove_notify":{"desc":"Cancels the variable change notification","params":[{"required":"yes","param":"resource $proxy"},{"required":"yes","param":"string $value"}],"returns":"bool"},"gupnp_service_proxy_set_subscribed":{"desc":"(Un)subscribes to the service.","params":[{"required":"yes","param":"resource $proxy"},{"required":"yes","param":"bool $subscribed"}],"returns":"bool"},"gupnp_service_thaw_notify":{"desc":"Sends out any pending notifications and stops queuing of new ones.","params":[{"required":"yes","param":"resource $service"}],"returns":"bool"},"gzclose":{"desc":"Close an open gz-file pointer","params":[{"required":"yes","param":"resource $zp"}],"returns":"bool"},"gzrewind":{"desc":"Rewind the position of a gz-file pointer","params":[{"required":"yes","param":"resource $zp"}],"returns":"bool"},"hash_update":{"desc":"Pump data into an active hashing context","params":[{"required":"yes","param":"resource $context"},{"required":"yes","param":"string $data"}],"returns":"bool"},"hash_update_file":{"desc":"Pump data into an active hashing context from a file","params":[{"required":"no","param":"resource $context = &#039;&#039;"},{"required":"yes","param":"string $filename"}],"returns":"bool"},"headers_sent":{"desc":"Checks if or where headers have been sent","params":[{"required":"no","param":"string $file = &#039;&#039;"},{"required":"no","param":"int $line = &#039;&#039;"}],"returns":"bool"},"http_cache_etag":{"desc":"Caching by ETag","params":[{"required":"no","param":"string $etag = &#039;&#039;"}],"returns":"bool"},"http_cache_last_modified":{"desc":"Caching by last modification","params":[{"required":"no","param":"int $timestamp_or_expires = &#039;&#039;"}],"returns":"bool"},"http_match_etag":{"desc":"Match ETag","params":[{"required":"yes","param":"string $etag"},{"required":"no","param":"bool $for_range = false"}],"returns":"bool"},"http_match_modified":{"desc":"Match last modification","params":[{"required":"no","param":"int $timestamp = -1"},{"required":"no","param":"bool $for_range = false"}],"returns":"bool"},"http_match_request_header":{"desc":"Match any header","params":[{"required":"yes","param":"string $header"},{"required":"yes","param":"string $value"},{"required":"no","param":"bool $match_case = false"}],"returns":"bool"},"http_redirect":{"desc":"Issue HTTP redirect","params":[{"required":"no","param":"string $url = &#039;&#039;"},{"required":"no","param":"array $params = &#039;&#039;"},{"required":"no","param":"bool $session = false"},{"required":"no","param":"int $status = &#039;&#039;"}],"returns":"bool"},"http_request_method_unregister":{"desc":"Unregister request method","params":[{"required":"yes","param":"mixed $method"}],"returns":"bool"},"http_send_content_disposition":{"desc":"Send Content-Disposition","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"bool $inline = false"}],"returns":"bool"},"http_send_content_type":{"desc":"Send Content-Type","params":[{"required":"no","param":"string $content_type = &quot;application/x-octetstream&quot;"}],"returns":"bool"},"http_send_data":{"desc":"Send arbitrary data","params":[{"required":"yes","param":"string $data"}],"returns":"bool"},"http_send_file":{"desc":"Send file","params":[{"required":"yes","param":"string $file"}],"returns":"bool"},"http_send_last_modified":{"desc":"Send Last-Modified","params":[{"required":"no","param":"int $timestamp = &#039;&#039;"}],"returns":"bool"},"http_send_status":{"desc":"Send HTTP response status","params":[{"required":"yes","param":"int $status"}],"returns":"bool"},"http_send_stream":{"desc":"Send stream","params":[{"required":"yes","param":"resource $stream"}],"returns":"bool"},"hw_changeobject":{"desc":"Changes attributes of an object (obsolete)","params":[{"required":"yes","param":"int $link"},{"required":"yes","param":"int $objid"},{"required":"yes","param":"array $attributes"}],"returns":"bool"},"hw_Close":{"desc":"Closes the Hyperwave connection","params":[{"required":"yes","param":"int $connection"}],"returns":"bool"},"hw_Deleteobject":{"desc":"Deletes object","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $object_to_delete"}],"returns":"bool"},"hw_Document_SetContent":{"desc":"Sets/replaces content of hw_document","params":[{"required":"yes","param":"int $hw_document"},{"required":"yes","param":"string $content"}],"returns":"bool"},"hw_EditText":{"desc":"Retrieve text document","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $hw_document"}],"returns":"bool"},"hw_Free_Document":{"desc":"Frees hw_document","params":[{"required":"yes","param":"int $hw_document"}],"returns":"bool"},"hw_insertanchors":{"desc":"Inserts only anchors into text","params":[{"required":"yes","param":"int $hwdoc"},{"required":"yes","param":"array $anchorecs"},{"required":"yes","param":"array $dest"},{"required":"no","param":"array $urlprefixes = &#039;&#039;"}],"returns":"bool"},"hw_Modifyobject":{"desc":"Modifies object record","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $object_to_change"},{"required":"yes","param":"array $remove"},{"required":"yes","param":"array $add"},{"required":"no","param":"int $mode = &#039;&#039;"}],"returns":"bool"},"hw_Output_Document":{"desc":"Prints hw_document","params":[{"required":"yes","param":"int $hw_document"}],"returns":"bool"},"hw_Unlock":{"desc":"Unlock object","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $objectID"}],"returns":"bool"},"ibase_add_user":{"desc":"Add a user to a security database (only for IB6 or later)","params":[{"required":"yes","param":"resource $service_handle"},{"required":"yes","param":"string $user_name"},{"required":"yes","param":"string $password"},{"required":"no","param":"string $first_name = &#039;&#039;"},{"required":"no","param":"string $middle_name = &#039;&#039;"},{"required":"no","param":"string $last_name = &#039;&#039;"}],"returns":"bool"},"ibase_blob_cancel":{"desc":"Cancel creating blob","params":[{"required":"yes","param":"resource $blob_handle"}],"returns":"bool"},"ibase_blob_echo":{"desc":"Output blob contents to browser","params":[{"required":"yes","param":"string $blob_id"},{"required":"yes","param":"resource $link_identifier"}],"returns":"bool"},"ibase_close":{"desc":"Close a connection to an InterBase database","params":[{"required":"no","param":"resource $connection_id = &#039;&#039;"}],"returns":"bool"},"ibase_commit":{"desc":"Commit a transaction","params":[{"required":"no","param":"resource $link_or_trans_identifier = &#039;&#039;"}],"returns":"bool"},"ibase_commit_ret":{"desc":"Commit a transaction without closing it","params":[{"required":"no","param":"resource $link_or_trans_identifier = &#039;&#039;"}],"returns":"bool"},"ibase_delete_user":{"desc":"Delete a user from a security database (only for IB6 or later)","params":[{"required":"yes","param":"resource $service_handle"},{"required":"yes","param":"string $user_name"}],"returns":"bool"},"ibase_drop_db":{"desc":"Drops a database","params":[{"required":"no","param":"resource $connection = &#039;&#039;"}],"returns":"bool"},"ibase_free_event_handler":{"desc":"Cancels a registered event handler","params":[{"required":"yes","param":"resource $event"}],"returns":"bool"},"ibase_free_query":{"desc":"Free memory allocated by a prepared query","params":[{"required":"yes","param":"resource $query"}],"returns":"bool"},"ibase_free_result":{"desc":"Free a result set","params":[{"required":"yes","param":"resource $result_identifier"}],"returns":"bool"},"ibase_maintain_db":{"desc":"Execute a maintenance command on the database server","params":[{"required":"yes","param":"resource $service_handle"},{"required":"yes","param":"string $db"},{"required":"yes","param":"int $action"},{"required":"no","param":"int $argument = &#039;&#039;"}],"returns":"bool"},"ibase_modify_user":{"desc":"Modify a user to a security database (only for IB6 or later)","params":[{"required":"yes","param":"resource $service_handle"},{"required":"yes","param":"string $user_name"},{"required":"yes","param":"string $password"},{"required":"no","param":"string $first_name = &#039;&#039;"},{"required":"no","param":"string $middle_name = &#039;&#039;"},{"required":"no","param":"string $last_name = &#039;&#039;"}],"returns":"bool"},"ibase_name_result":{"desc":"Assigns a name to a result set","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"string $name"}],"returns":"bool"},"ibase_rollback":{"desc":"Roll back a transaction","params":[{"required":"no","param":"resource $link_or_trans_identifier = &#039;&#039;"}],"returns":"bool"},"ibase_rollback_ret":{"desc":"Roll back a transaction without closing it","params":[{"required":"no","param":"resource $link_or_trans_identifier = &#039;&#039;"}],"returns":"bool"},"ibase_service_detach":{"desc":"Disconnect from the service manager","params":[{"required":"yes","param":"resource $service_handle"}],"returns":"bool"},"ibase_timefmt":{"desc":"Sets the format of timestamp, date and time type columns returned from queries","params":[{"required":"yes","param":"string $format"},{"required":"no","param":"int $columntype = &#039;&#039;"}],"returns":"bool"},"iconv_set_encoding":{"desc":"Set current setting for character encoding conversion","params":[{"required":"yes","param":"string $type"},{"required":"yes","param":"string $charset"}],"returns":"bool"},"id3_remove_tag":{"desc":"Remove an existing ID3 tag","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"int $version = ID3_V1_0"}],"returns":"bool"},"id3_set_tag":{"desc":"Update information stored in an ID3 tag","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"array $tag"},{"required":"no","param":"int $version = ID3_V1_0"}],"returns":"bool"},"ifxus_close_slob":{"desc":"Deletes the slob object","params":[{"required":"yes","param":"int $bid"}],"returns":"bool"},"ifxus_free_slob":{"desc":"Deletes the slob object","params":[{"required":"yes","param":"int $bid"}],"returns":"bool"},"ifx_blobinfile_mode":{"desc":"Set the default blob mode for all select queries","params":[{"required":"yes","param":"int $mode"}],"returns":"bool"},"ifx_byteasvarchar":{"desc":"Set the default byte mode","params":[{"required":"yes","param":"int $mode"}],"returns":"bool"},"ifx_close":{"desc":"Close Informix connection","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"ifx_do":{"desc":"Execute a previously prepared SQL-statement","params":[{"required":"yes","param":"resource $result_id"}],"returns":"bool"},"ifx_free_blob":{"desc":"Deletes the blob object","params":[{"required":"yes","param":"int $bid"}],"returns":"bool"},"ifx_free_char":{"desc":"Deletes the char object","params":[{"required":"yes","param":"int $bid"}],"returns":"bool"},"ifx_free_result":{"desc":"Releases resources for the query","params":[{"required":"yes","param":"resource $result_id"}],"returns":"bool"},"ifx_nullformat":{"desc":"Sets the default return value on a fetch row","params":[{"required":"yes","param":"int $mode"}],"returns":"bool"},"ifx_textasvarchar":{"desc":"Set the default text mode","params":[{"required":"yes","param":"int $mode"}],"returns":"bool"},"ifx_update_blob":{"desc":"Updates the content of the blob object","params":[{"required":"yes","param":"int $bid"},{"required":"yes","param":"string $content"}],"returns":"bool"},"ifx_update_char":{"desc":"Updates the content of the char object","params":[{"required":"yes","param":"int $bid"},{"required":"yes","param":"string $content"}],"returns":"bool"},"image2wbmp":{"desc":"Output image to browser or file","params":[{"required":"yes","param":"resource $image"},{"required":"no","param":"string $filename = &#039;&#039;"},{"required":"no","param":"int $threshold = &#039;&#039;"}],"returns":"bool"},"imagealphablending":{"desc":"Set the blending mode for an image","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"bool $blendmode"}],"returns":"bool"},"imageantialias":{"desc":"Should antialias functions be used or not","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"bool $enabled"}],"returns":"bool"},"imagearc":{"desc":"Draws an arc","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $cx"},{"required":"yes","param":"int $cy"},{"required":"yes","param":"int $width"},{"required":"yes","param":"int $height"},{"required":"yes","param":"int $start"},{"required":"yes","param":"int $end"},{"required":"yes","param":"int $color"}],"returns":"bool"},"imagechar":{"desc":"Draw a character horizontally","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $font"},{"required":"yes","param":"int $x"},{"required":"yes","param":"int $y"},{"required":"yes","param":"string $c"},{"required":"yes","param":"int $color"}],"returns":"bool"},"imagecharup":{"desc":"Draw a character vertically","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $font"},{"required":"yes","param":"int $x"},{"required":"yes","param":"int $y"},{"required":"yes","param":"string $c"},{"required":"yes","param":"int $color"}],"returns":"bool"},"imagecolordeallocate":{"desc":"De-allocate a color for an image","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $color"}],"returns":"bool"},"imagecolormatch":{"desc":"Makes the colors of the palette version of an image more closely match the true color version","params":[{"required":"yes","param":"resource $image1"},{"required":"yes","param":"resource $image2"}],"returns":"bool"},"imageconvolution":{"desc":"Apply a 3x3 convolution matrix, using coefficient and offset","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"array $matrix"},{"required":"yes","param":"float $div"},{"required":"yes","param":"float $offset"}],"returns":"bool"},"imagecopy":{"desc":"Copy part of an image","params":[{"required":"yes","param":"resource $dst_im"},{"required":"yes","param":"resource $src_im"},{"required":"yes","param":"int $dst_x"},{"required":"yes","param":"int $dst_y"},{"required":"yes","param":"int $src_x"},{"required":"yes","param":"int $src_y"},{"required":"yes","param":"int $src_w"},{"required":"yes","param":"int $src_h"}],"returns":"bool"},"imagecopymerge":{"desc":"Copy and merge part of an image","params":[{"required":"yes","param":"resource $dst_im"},{"required":"yes","param":"resource $src_im"},{"required":"yes","param":"int $dst_x"},{"required":"yes","param":"int $dst_y"},{"required":"yes","param":"int $src_x"},{"required":"yes","param":"int $src_y"},{"required":"yes","param":"int $src_w"},{"required":"yes","param":"int $src_h"},{"required":"yes","param":"int $pct"}],"returns":"bool"},"imagecopymergegray":{"desc":"Copy and merge part of an image with gray scale","params":[{"required":"yes","param":"resource $dst_im"},{"required":"yes","param":"resource $src_im"},{"required":"yes","param":"int $dst_x"},{"required":"yes","param":"int $dst_y"},{"required":"yes","param":"int $src_x"},{"required":"yes","param":"int $src_y"},{"required":"yes","param":"int $src_w"},{"required":"yes","param":"int $src_h"},{"required":"yes","param":"int $pct"}],"returns":"bool"},"imagecopyresampled":{"desc":"Copy and resize part of an image with resampling","params":[{"required":"yes","param":"resource $dst_image"},{"required":"yes","param":"resource $src_image"},{"required":"yes","param":"int $dst_x"},{"required":"yes","param":"int $dst_y"},{"required":"yes","param":"int $src_x"},{"required":"yes","param":"int $src_y"},{"required":"yes","param":"int $dst_w"},{"required":"yes","param":"int $dst_h"},{"required":"yes","param":"int $src_w"},{"required":"yes","param":"int $src_h"}],"returns":"bool"},"imagecopyresized":{"desc":"Copy and resize part of an image","params":[{"required":"yes","param":"resource $dst_image"},{"required":"yes","param":"resource $src_image"},{"required":"yes","param":"int $dst_x"},{"required":"yes","param":"int $dst_y"},{"required":"yes","param":"int $src_x"},{"required":"yes","param":"int $src_y"},{"required":"yes","param":"int $dst_w"},{"required":"yes","param":"int $dst_h"},{"required":"yes","param":"int $src_w"},{"required":"yes","param":"int $src_h"}],"returns":"bool"},"imagedashedline":{"desc":"Draw a dashed line","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $x1"},{"required":"yes","param":"int $y1"},{"required":"yes","param":"int $x2"},{"required":"yes","param":"int $y2"},{"required":"yes","param":"int $color"}],"returns":"bool"},"imagedestroy":{"desc":"Destroy an image","params":[{"required":"yes","param":"resource $image"}],"returns":"bool"},"imageellipse":{"desc":"Draw an ellipse","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $cx"},{"required":"yes","param":"int $cy"},{"required":"yes","param":"int $width"},{"required":"yes","param":"int $height"},{"required":"yes","param":"int $color"}],"returns":"bool"},"imagefill":{"desc":"Flood fill","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $x"},{"required":"yes","param":"int $y"},{"required":"yes","param":"int $color"}],"returns":"bool"},"imagefilledarc":{"desc":"Draw a partial arc and fill it","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $cx"},{"required":"yes","param":"int $cy"},{"required":"yes","param":"int $width"},{"required":"yes","param":"int $height"},{"required":"yes","param":"int $start"},{"required":"yes","param":"int $end"},{"required":"yes","param":"int $color"},{"required":"yes","param":"int $style"}],"returns":"bool"},"imagefilledellipse":{"desc":"Draw a filled ellipse","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $cx"},{"required":"yes","param":"int $cy"},{"required":"yes","param":"int $width"},{"required":"yes","param":"int $height"},{"required":"yes","param":"int $color"}],"returns":"bool"},"imagefilledpolygon":{"desc":"Draw a filled polygon","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"array $points"},{"required":"yes","param":"int $num_points"},{"required":"yes","param":"int $color"}],"returns":"bool"},"imagefilledrectangle":{"desc":"Draw a filled rectangle","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $x1"},{"required":"yes","param":"int $y1"},{"required":"yes","param":"int $x2"},{"required":"yes","param":"int $y2"},{"required":"yes","param":"int $color"}],"returns":"bool"},"imagefilltoborder":{"desc":"Flood fill to specific color","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $x"},{"required":"yes","param":"int $y"},{"required":"yes","param":"int $border"},{"required":"yes","param":"int $color"}],"returns":"bool"},"imagefilter":{"desc":"Applies a filter to an image","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $filtertype"},{"required":"no","param":"int $arg1 = &#039;&#039;"},{"required":"no","param":"int $arg2 = &#039;&#039;"},{"required":"no","param":"int $arg3 = &#039;&#039;"},{"required":"no","param":"int $arg4 = &#039;&#039;"}],"returns":"bool"},"imagegammacorrect":{"desc":"Apply a gamma correction to a GD image","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"float $inputgamma"},{"required":"yes","param":"float $outputgamma"}],"returns":"bool"},"imagegd":{"desc":"Output GD image to browser or file","params":[{"required":"yes","param":"resource $image"},{"required":"no","param":"string $filename = &#039;&#039;"}],"returns":"bool"},"imagegd2":{"desc":"Output GD2 image to browser or file","params":[{"required":"yes","param":"resource $image"},{"required":"no","param":"string $filename = &#039;&#039;"},{"required":"no","param":"int $chunk_size = &#039;&#039;"},{"required":"no","param":"int $type = &#039;&#039;"}],"returns":"bool"},"imagegif":{"desc":"Output image to browser or file","params":[{"required":"yes","param":"resource $image"},{"required":"no","param":"string $filename = &#039;&#039;"}],"returns":"bool"},"imageistruecolor":{"desc":"Finds whether an image is a truecolor image","params":[{"required":"yes","param":"resource $image"}],"returns":"bool"},"imagejpeg":{"desc":"Output image to browser or file","params":[{"required":"yes","param":"resource $image"},{"required":"no","param":"string $filename = &#039;&#039;"},{"required":"no","param":"int $quality = &#039;&#039;"}],"returns":"bool"},"imagelayereffect":{"desc":"Set the alpha blending flag to use the bundled libgd layering effects","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $effect"}],"returns":"bool"},"imageline":{"desc":"Draw a line","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $x1"},{"required":"yes","param":"int $y1"},{"required":"yes","param":"int $x2"},{"required":"yes","param":"int $y2"},{"required":"yes","param":"int $color"}],"returns":"bool"},"imagepng":{"desc":"Output a PNG image to either the browser or a file","params":[{"required":"yes","param":"resource $image"},{"required":"no","param":"string $filename = &#039;&#039;"},{"required":"no","param":"int $quality = &#039;&#039;"},{"required":"no","param":"int $filters = &#039;&#039;"}],"returns":"bool"},"imagepolygon":{"desc":"Draws a polygon","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"array $points"},{"required":"yes","param":"int $num_points"},{"required":"yes","param":"int $color"}],"returns":"bool"},"imagepsencodefont":{"desc":"Change the character encoding vector of a font","params":[{"required":"yes","param":"resource $font_index"},{"required":"yes","param":"string $encodingfile"}],"returns":"bool"},"imagepsextendfont":{"desc":"Extend or condense a font","params":[{"required":"yes","param":"resource $font_index"},{"required":"yes","param":"float $extend"}],"returns":"bool"},"imagepsfreefont":{"desc":"Free memory used by a PostScript Type 1 font","params":[{"required":"yes","param":"resource $font_index"}],"returns":"bool"},"imagepsslantfont":{"desc":"Slant a font","params":[{"required":"yes","param":"resource $font_index"},{"required":"yes","param":"float $slant"}],"returns":"bool"},"imagerectangle":{"desc":"Draw a rectangle","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $x1"},{"required":"yes","param":"int $y1"},{"required":"yes","param":"int $x2"},{"required":"yes","param":"int $y2"},{"required":"yes","param":"int $color"}],"returns":"bool"},"imagesavealpha":{"desc":"Set the flag to save full alpha channel information (as opposed to single-color transparency) when saving PNG images","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"bool $saveflag"}],"returns":"bool"},"imagesetbrush":{"desc":"Set the brush image for line drawing","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"resource $brush"}],"returns":"bool"},"imagesetpixel":{"desc":"Set a single pixel","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $x"},{"required":"yes","param":"int $y"},{"required":"yes","param":"int $color"}],"returns":"bool"},"imagesetstyle":{"desc":"Set the style for line drawing","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"array $style"}],"returns":"bool"},"imagesetthickness":{"desc":"Set the thickness for line drawing","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $thickness"}],"returns":"bool"},"imagesettile":{"desc":"Set the tile image for filling","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"resource $tile"}],"returns":"bool"},"imagestring":{"desc":"Draw a string horizontally","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $font"},{"required":"yes","param":"int $x"},{"required":"yes","param":"int $y"},{"required":"yes","param":"string $string"},{"required":"yes","param":"int $color"}],"returns":"bool"},"imagestringup":{"desc":"Draw a string vertically","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $font"},{"required":"yes","param":"int $x"},{"required":"yes","param":"int $y"},{"required":"yes","param":"string $string"},{"required":"yes","param":"int $color"}],"returns":"bool"},"imagetruecolortopalette":{"desc":"Convert a true color image to a palette image","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"bool $dither"},{"required":"yes","param":"int $ncolors"}],"returns":"bool"},"imagewbmp":{"desc":"Output image to browser or file","params":[{"required":"yes","param":"resource $image"},{"required":"no","param":"string $filename = &#039;&#039;"},{"required":"no","param":"int $foreground = &#039;&#039;"}],"returns":"bool"},"imagexbm":{"desc":"Output XBM image to browser or file","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"string $filename"},{"required":"no","param":"int $foreground = &#039;&#039;"}],"returns":"bool"},"imap_append":{"desc":"Append a string message to a specified mailbox","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $mailbox"},{"required":"yes","param":"string $message"},{"required":"no","param":"string $options = &#039;&#039;"},{"required":"no","param":"string $internal_date = &#039;&#039;"}],"returns":"bool"},"imap_clearflag_full":{"desc":"Clears flags on messages","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $sequence"},{"required":"yes","param":"string $flag"},{"required":"no","param":"int $options = &#039;&#039;"}],"returns":"bool"},"imap_close":{"desc":"Close an IMAP stream","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"no","param":"int $flag = &#039;&#039;"}],"returns":"bool"},"imap_createmailbox":{"desc":"Create a new mailbox","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $mailbox"}],"returns":"bool"},"imap_delete":{"desc":"Mark a message for deletion from current mailbox","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"int $msg_number"},{"required":"no","param":"int $options = &#039;&#039;"}],"returns":"bool"},"imap_deletemailbox":{"desc":"Delete a mailbox","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $mailbox"}],"returns":"bool"},"imap_expunge":{"desc":"Delete all messages marked for deletion","params":[{"required":"yes","param":"resource $imap_stream"}],"returns":"bool"},"imap_gc":{"desc":"Clears IMAP cache","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"int $caches"}],"returns":"bool"},"imap_mail":{"desc":"Send an email message","params":[{"required":"yes","param":"string $to"},{"required":"yes","param":"string $subject"},{"required":"yes","param":"string $message"},{"required":"no","param":"string $additional_headers = &#039;&#039;"},{"required":"no","param":"string $cc = &#039;&#039;"},{"required":"no","param":"string $bcc = &#039;&#039;"},{"required":"no","param":"string $rpath = &#039;&#039;"}],"returns":"bool"},"imap_mail_copy":{"desc":"Copy specified messages to a mailbox","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $msglist"},{"required":"yes","param":"string $mailbox"},{"required":"no","param":"int $options = &#039;&#039;"}],"returns":"bool"},"imap_mail_move":{"desc":"Move specified messages to a mailbox","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $msglist"},{"required":"yes","param":"string $mailbox"},{"required":"no","param":"int $options = &#039;&#039;"}],"returns":"bool"},"imap_ping":{"desc":"Check if the IMAP stream is still active","params":[{"required":"yes","param":"resource $imap_stream"}],"returns":"bool"},"imap_renamemailbox":{"desc":"Rename an old mailbox to new mailbox","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $old_mbox"},{"required":"yes","param":"string $new_mbox"}],"returns":"bool"},"imap_reopen":{"desc":"Reopen IMAP stream to new mailbox","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $mailbox"},{"required":"no","param":"int $options = &#039;&#039;"},{"required":"no","param":"int $n_retries = &#039;&#039;"}],"returns":"bool"},"imap_savebody":{"desc":"Save a specific body section to a file","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"mixed $file"},{"required":"yes","param":"int $msg_number"},{"required":"no","param":"string $part_number = &quot;&quot;"},{"required":"no","param":"int $options = &#039;&#039;"}],"returns":"bool"},"imap_setacl":{"desc":"Sets the ACL for a giving mailbox","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $mailbox"},{"required":"yes","param":"string $id"},{"required":"yes","param":"string $rights"}],"returns":"bool"},"imap_setflag_full":{"desc":"Sets flags on messages","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $sequence"},{"required":"yes","param":"string $flag"},{"required":"no","param":"int $options = NIL"}],"returns":"bool"},"imap_set_quota":{"desc":"Sets a quota for a given mailbox","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $quota_root"},{"required":"yes","param":"int $quota_limit"}],"returns":"bool"},"imap_subscribe":{"desc":"Subscribe to a mailbox","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $mailbox"}],"returns":"bool"},"imap_undelete":{"desc":"Unmark the message which is marked deleted","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"int $msg_number"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"bool"},"imap_unsubscribe":{"desc":"Unsubscribe from a mailbox","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $mailbox"}],"returns":"bool"},"import_request_variables":{"desc":"Import GET/POST/Cookie variables into the global scope","params":[{"required":"yes","param":"string $types"},{"required":"no","param":"string $prefix = &#039;&#039;"}],"returns":"bool"},"ingres_autocommit":{"desc":"Switch autocommit on or off","params":[{"required":"yes","param":"resource $link"}],"returns":"bool"},"ingres_autocommit_state":{"desc":"Test if the connection is using autocommit","params":[{"required":"yes","param":"resource $link"}],"returns":"bool"},"ingres_close":{"desc":"Close an Ingres database connection","params":[{"required":"yes","param":"resource $link"}],"returns":"bool"},"ingres_commit":{"desc":"Commit a transaction","params":[{"required":"yes","param":"resource $link"}],"returns":"bool"},"ingres_execute":{"desc":"Execute a prepared query","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"array $params = &#039;&#039;"},{"required":"no","param":"string $types = &#039;&#039;"}],"returns":"bool"},"ingres_field_nullable":{"desc":"Test if a field is nullable","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $index"}],"returns":"bool"},"ingres_free_result":{"desc":"Free the resources associated with a result identifier","params":[{"required":"yes","param":"resource $result"}],"returns":"bool"},"ingres_next_error":{"desc":"Get the next Ingres error","params":[{"required":"no","param":"resource $link = &#039;&#039;"}],"returns":"bool"},"ingres_result_seek":{"desc":"Set the row position before fetching data","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $position"}],"returns":"bool"},"ingres_rollback":{"desc":"Roll back a transaction","params":[{"required":"yes","param":"resource $link"}],"returns":"bool"},"ingres_set_environment":{"desc":"Set environment features controlling output options","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"array $options"}],"returns":"bool"},"inotify_rm_watch":{"desc":"Remove an existing watch from an inotify instance","params":[{"required":"yes","param":"resource $inotify_instance"},{"required":"yes","param":"int $watch_descriptor"}],"returns":"bool"},"interface_exists":{"desc":"Checks if the interface has been defined","params":[{"required":"yes","param":"string $interface_name"},{"required":"no","param":"bool $autoload = true"}],"returns":"bool"},"intl_is_failure":{"desc":"Check whether the given error code indicates failure","params":[{"required":"yes","param":"int $error_code"}],"returns":"bool"},"in_array":{"desc":"Checks if a value exists in an array","params":[{"required":"yes","param":"mixed $needle"},{"required":"yes","param":"array $haystack"},{"required":"no","param":"bool $strict = &#039;&#039;"}],"returns":"bool"},"isset":{"desc":"Determine if a variable is set and is not NULL","params":[{"required":"no","param":"mixed $var = &#039;&#039;"},{"required":"no","param":"$... = &#039;&#039;"}],"returns":"bool"},"is_a":{"desc":"Checks if the object is of this class or has this class as one of its parents","params":[{"required":"yes","param":"object $object"},{"required":"yes","param":"string $class_name"}],"returns":"bool"},"is_array":{"desc":"Finds whether a variable is an array","params":[{"required":"yes","param":"mixed $var"}],"returns":"bool"},"is_bool":{"desc":"Finds out whether a variable is a boolean","params":[{"required":"yes","param":"mixed $var"}],"returns":"bool"},"is_callable":{"desc":"Verify that the contents of a variable can be called as a function","params":[{"required":"yes","param":"callback $name"},{"required":"no","param":"bool $syntax_only = false"},{"required":"no","param":"string $callable_name = &#039;&#039;"}],"returns":"bool"},"is_dir":{"desc":"Tells whether the filename is a directory","params":[{"required":"yes","param":"string $filename"}],"returns":"bool"},"is_executable":{"desc":"Tells whether the filename is executable","params":[{"required":"yes","param":"string $filename"}],"returns":"bool"},"is_file":{"desc":"Tells whether the filename is a regular file","params":[{"required":"yes","param":"string $filename"}],"returns":"bool"},"is_finite":{"desc":"Finds whether a value is a legal finite number","params":[{"required":"yes","param":"float $val"}],"returns":"bool"},"is_float":{"desc":"Finds whether the type of a variable is float","params":[{"required":"yes","param":"mixed $var"}],"returns":"bool"},"is_infinite":{"desc":"Finds whether a value is infinite","params":[{"required":"yes","param":"float $val"}],"returns":"bool"},"is_int":{"desc":"Find whether the type of a variable is integer","params":[{"required":"yes","param":"mixed $var"}],"returns":"bool"},"is_link":{"desc":"Tells whether the filename is a symbolic link","params":[{"required":"yes","param":"string $filename"}],"returns":"bool"},"is_nan":{"desc":"Finds whether a value is not a number","params":[{"required":"yes","param":"float $val"}],"returns":"bool"},"is_null":{"desc":"Finds whether a variable is NULL","params":[{"required":"yes","param":"mixed $var"}],"returns":"bool"},"is_numeric":{"desc":"Finds whether a variable is a number or a numeric string","params":[{"required":"yes","param":"mixed $var"}],"returns":"bool"},"is_object":{"desc":"Finds whether a variable is an object","params":[{"required":"yes","param":"mixed $var"}],"returns":"bool"},"is_readable":{"desc":"Tells whether a file exists and is readable","params":[{"required":"yes","param":"string $filename"}],"returns":"bool"},"is_resource":{"desc":"Finds whether a variable is a resource","params":[{"required":"yes","param":"mixed $var"}],"returns":"bool"},"is_soap_fault":{"desc":"Checks if a SOAP call has failed","params":[{"required":"yes","param":"mixed $object"}],"returns":"bool"},"is_string":{"desc":"Find whether the type of a variable is string","params":[{"required":"yes","param":"mixed $var"}],"returns":"bool"},"is_subclass_of":{"desc":"Checks if the object has this class as one of its parents","params":[{"required":"yes","param":"mixed $object"},{"required":"yes","param":"string $class_name"}],"returns":"bool"},"is_uploaded_file":{"desc":"Tells whether the file was uploaded via HTTP POST","params":[{"required":"yes","param":"string $filename"}],"returns":"bool"},"is_writable":{"desc":"Tells whether the filename is writable","params":[{"required":"yes","param":"string $filename"}],"returns":"bool"},"jpeg2wbmp":{"desc":"Convert JPEG image file to WBMP image file","params":[{"required":"yes","param":"string $jpegname"},{"required":"yes","param":"string $wbmpname"},{"required":"yes","param":"int $dest_height"},{"required":"yes","param":"int $dest_width"},{"required":"yes","param":"int $threshold"}],"returns":"bool"},"kadm5_chpass_principal":{"desc":"Changes the principal&#039;s password","params":[{"required":"yes","param":"resource $handle"},{"required":"yes","param":"string $principal"},{"required":"yes","param":"string $password"}],"returns":"bool"},"kadm5_create_principal":{"desc":"Creates a kerberos principal with the given parameters","params":[{"required":"yes","param":"resource $handle"},{"required":"yes","param":"string $principal"},{"required":"no","param":"string $password = &#039;&#039;"},{"required":"no","param":"array $options = &#039;&#039;"}],"returns":"bool"},"kadm5_delete_principal":{"desc":"Deletes a kerberos principal","params":[{"required":"yes","param":"resource $handle"},{"required":"yes","param":"string $principal"}],"returns":"bool"},"kadm5_destroy":{"desc":"Closes the connection to the admin server and releases all related resources","params":[{"required":"yes","param":"resource $handle"}],"returns":"bool"},"kadm5_flush":{"desc":"Flush all changes to the Kerberos database","params":[{"required":"yes","param":"resource $handle"}],"returns":"bool"},"kadm5_modify_principal":{"desc":"Modifies a kerberos principal with the given parameters","params":[{"required":"yes","param":"resource $handle"},{"required":"yes","param":"string $principal"},{"required":"yes","param":"array $options"}],"returns":"bool"},"krsort":{"desc":"Sort an array by key in reverse order","params":[{"required":"yes","param":"array $array"},{"required":"no","param":"int $sort_flags = SORT_REGULAR"}],"returns":"bool"},"ksort":{"desc":"Sort an array by key","params":[{"required":"yes","param":"array $array"},{"required":"no","param":"int $sort_flags = SORT_REGULAR"}],"returns":"bool"},"lchgrp":{"desc":"Changes group ownership of symlink","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"mixed $group"}],"returns":"bool"},"lchown":{"desc":"Changes user ownership of symlink","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"mixed $user"}],"returns":"bool"},"ldap_add":{"desc":"Add entries to LDAP directory","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"string $dn"},{"required":"yes","param":"array $entry"}],"returns":"bool"},"ldap_bind":{"desc":"Bind to LDAP directory","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"no","param":"string $bind_rdn = &#039;&#039;"},{"required":"no","param":"string $bind_password = &#039;&#039;"}],"returns":"bool"},"ldap_delete":{"desc":"Delete an entry from a directory","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"string $dn"}],"returns":"bool"},"ldap_free_result":{"desc":"Free result memory","params":[{"required":"yes","param":"resource $result_identifier"}],"returns":"bool"},"ldap_get_option":{"desc":"Get the current value for given option","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"int $option"},{"required":"yes","param":"mixed $retval"}],"returns":"bool"},"ldap_modify":{"desc":"Modify an LDAP entry","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"string $dn"},{"required":"yes","param":"array $entry"}],"returns":"bool"},"ldap_mod_add":{"desc":"Add attribute values to current attributes","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"string $dn"},{"required":"yes","param":"array $entry"}],"returns":"bool"},"ldap_mod_del":{"desc":"Delete attribute values from current attributes","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"string $dn"},{"required":"yes","param":"array $entry"}],"returns":"bool"},"ldap_mod_replace":{"desc":"Replace attribute values with new ones","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"string $dn"},{"required":"yes","param":"array $entry"}],"returns":"bool"},"ldap_parse_reference":{"desc":"Extract information from reference entry","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"resource $entry"},{"required":"yes","param":"array $referrals"}],"returns":"bool"},"ldap_parse_result":{"desc":"Extract information from result","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $errcode"},{"required":"no","param":"string $matcheddn = &#039;&#039;"},{"required":"no","param":"string $errmsg = &#039;&#039;"},{"required":"no","param":"array $referrals = &#039;&#039;"}],"returns":"bool"},"ldap_rename":{"desc":"Modify the name of an entry","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"string $dn"},{"required":"yes","param":"string $newrdn"},{"required":"yes","param":"string $newparent"},{"required":"yes","param":"bool $deleteoldrdn"}],"returns":"bool"},"ldap_sasl_bind":{"desc":"Bind to LDAP directory using SASL","params":[{"required":"yes","param":"resource $link"},{"required":"no","param":"string $binddn = &#039;&#039;"},{"required":"no","param":"string $password = &#039;&#039;"},{"required":"no","param":"string $sasl_mech = &#039;&#039;"},{"required":"no","param":"string $sasl_realm = &#039;&#039;"},{"required":"no","param":"string $sasl_authc_id = &#039;&#039;"},{"required":"no","param":"string $sasl_authz_id = &#039;&#039;"},{"required":"no","param":"string $props = &#039;&#039;"}],"returns":"bool"},"ldap_set_option":{"desc":"Set the value of the given option","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"int $option"},{"required":"yes","param":"mixed $newval"}],"returns":"bool"},"ldap_set_rebind_proc":{"desc":"Set a callback function to do re-binds on referral chasing","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"callback $callback"}],"returns":"bool"},"ldap_sort":{"desc":"Sort LDAP result entries","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"resource $result"},{"required":"yes","param":"string $sortfilter"}],"returns":"bool"},"ldap_start_tls":{"desc":"Start TLS","params":[{"required":"yes","param":"resource $link"}],"returns":"bool"},"ldap_unbind":{"desc":"Unbind from LDAP directory","params":[{"required":"yes","param":"resource $link_identifier"}],"returns":"bool"},"libxml_disable_entity_loader":{"desc":"Disable the ability to load external entities","params":[{"required":"no","param":"bool $disable = true"}],"returns":"bool"},"libxml_use_internal_errors":{"desc":"Disable libxml errors and allow user to fetch error information as needed","params":[{"required":"no","param":"bool $use_errors = false"}],"returns":"bool"},"link":{"desc":"Create a hard link","params":[{"required":"yes","param":"string $target"},{"required":"yes","param":"string $link"}],"returns":"bool"},"locale_filter_matches":{"desc":"Checks if a language tag filter matches with locale","params":[{"required":"yes","param":"string $langtag"},{"required":"yes","param":"string $locale"},{"required":"no","param":"bool $canonicalize = false"}],"returns":"bool"},"locale_set_default":{"desc":"sets the default runtime locale","params":[{"required":"yes","param":"string $locale"}],"returns":"bool"},"mail":{"desc":"Send mail","params":[{"required":"yes","param":"string $to"},{"required":"yes","param":"string $subject"},{"required":"yes","param":"string $message"},{"required":"no","param":"string $additional_headers = &#039;&#039;"},{"required":"no","param":"string $additional_parameters = &#039;&#039;"}],"returns":"bool"},"mailparse_msg_free":{"desc":"Frees a MIME resource","params":[{"required":"yes","param":"resource $mimemail"}],"returns":"bool"},"mailparse_msg_parse":{"desc":"Incrementally parse data into buffer","params":[{"required":"yes","param":"resource $mimemail"},{"required":"yes","param":"string $data"}],"returns":"bool"},"mailparse_stream_encode":{"desc":"Streams data from source file pointer, apply encoding and write to destfp","params":[{"required":"yes","param":"resource $sourcefp"},{"required":"yes","param":"resource $destfp"},{"required":"yes","param":"string $encoding"}],"returns":"bool"},"maxdb_autocommit":{"desc":"Turns on or off auto-commiting database modifications","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"bool $mode"}],"returns":"bool"},"maxdb_change_user":{"desc":"Changes the user of the specified database connection","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"string $user"},{"required":"yes","param":"string $password"},{"required":"yes","param":"string $database"}],"returns":"bool"},"maxdb_close":{"desc":"Closes a previously opened database connection","params":[{"required":"yes","param":"resource $link"}],"returns":"bool"},"maxdb_commit":{"desc":"Commits the current transaction","params":[{"required":"yes","param":"resource $link"}],"returns":"bool"},"maxdb_data_seek":{"desc":"Adjusts the result pointer to an arbitary row in the result","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $offset"}],"returns":"bool"},"maxdb_disable_rpl_parse":{"desc":"Disable RPL parse","params":[{"required":"yes","param":"resource $link"}],"returns":"bool"},"maxdb_dump_debug_info":{"desc":"Dump debugging information into the log","params":[{"required":"yes","param":"resource $link"}],"returns":"bool"},"maxdb_enable_reads_from_master":{"desc":"Enable reads from master","params":[{"required":"yes","param":"resource $link"}],"returns":"bool"},"maxdb_enable_rpl_parse":{"desc":"Enable RPL parse","params":[{"required":"yes","param":"resource $link"}],"returns":"bool"},"maxdb_field_seek":{"desc":"Set result pointer to a specified field offset","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $fieldnr"}],"returns":"bool"},"maxdb_kill":{"desc":"Disconnects from a MaxDB server","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"int $processid"}],"returns":"bool"},"maxdb_master_query":{"desc":"Enforce execution of a query on the master in a master/slave setup","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"string $query"}],"returns":"bool"},"maxdb_more_results":{"desc":"Check if there any more query results from a multi query","params":[{"required":"yes","param":"resource $link"}],"returns":"bool"},"maxdb_multi_query":{"desc":"Performs a query on the database","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"string $query"}],"returns":"bool"},"maxdb_next_result":{"desc":"Prepare next result from multi_query","params":[{"required":"yes","param":"resource $link"}],"returns":"bool"},"maxdb_options":{"desc":"Set options","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"int $option"},{"required":"yes","param":"mixed $value"}],"returns":"bool"},"maxdb_ping":{"desc":"Pings a server connection, or tries to reconnect if the connection has gone down","params":[{"required":"yes","param":"resource $link"}],"returns":"bool"},"maxdb_real_connect":{"desc":"Opens a connection to a MaxDB server","params":[{"required":"yes","param":"resource $link"},{"required":"no","param":"string $hostname = &#039;&#039;"},{"required":"no","param":"string $username = &#039;&#039;"},{"required":"no","param":"string $passwd = &#039;&#039;"},{"required":"no","param":"string $dbname = &#039;&#039;"},{"required":"no","param":"int $port = &#039;&#039;"},{"required":"no","param":"string $socket = &#039;&#039;"}],"returns":"bool"},"maxdb_real_query":{"desc":"Execute an SQL query","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"string $query"}],"returns":"bool"},"maxdb_report":{"desc":"Enables or disables internal report functions","params":[{"required":"yes","param":"int $flags"}],"returns":"bool"},"maxdb_rollback":{"desc":"Rolls back current transaction","params":[{"required":"yes","param":"resource $link"}],"returns":"bool"},"maxdb_rpl_probe":{"desc":"RPL probe","params":[{"required":"yes","param":"resource $link"}],"returns":"bool"},"maxdb_select_db":{"desc":"Selects the default database for database queries","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"string $dbname"}],"returns":"bool"},"maxdb_send_query":{"desc":"Send the query and return","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"string $query"}],"returns":"bool"},"maxdb_server_init":{"desc":"Initialize embedded server","params":[{"required":"no","param":"array $server = &#039;&#039;"},{"required":"no","param":"array $groups = &#039;&#039;"}],"returns":"bool"},"maxdb_ssl_set":{"desc":"Used for establishing secure connections using SSL","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"string $key"},{"required":"yes","param":"string $cert"},{"required":"yes","param":"string $ca"},{"required":"yes","param":"string $capath"},{"required":"yes","param":"string $cipher"}],"returns":"bool"},"maxdb_stmt_bind_param":{"desc":"Binds variables to a prepared statement as parameters","params":[{"required":"yes","param":"resource $stmt"},{"required":"yes","param":"string $types"},{"required":"yes","param":"mixed $var1"},{"required":"no","param":"mixed $... = &#039;&#039;"},{"required":"yes","param":"array $var"}],"returns":"bool"},"maxdb_stmt_bind_result":{"desc":"Binds variables to a prepared statement for result storage","params":[{"required":"yes","param":"resource $stmt"},{"required":"yes","param":"mixed $var1"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"bool"},"maxdb_stmt_close":{"desc":"Closes a prepared statement","params":[{"required":"yes","param":"resource $stmt"}],"returns":"bool"},"maxdb_stmt_close_long_data":{"desc":"Ends a sequence of maxdb_stmt_send_long_data","params":[{"required":"yes","param":"resource $stmt"},{"required":"yes","param":"int $param_nr"}],"returns":"bool"},"maxdb_stmt_data_seek":{"desc":"Seeks to an arbitray row in statement result set","params":[{"required":"yes","param":"resource $statement"},{"required":"yes","param":"int $offset"}],"returns":"bool"},"maxdb_stmt_execute":{"desc":"Executes a prepared Query","params":[{"required":"yes","param":"resource $stmt"}],"returns":"bool"},"maxdb_stmt_fetch":{"desc":"Fetch results from a prepared statement into the bound variables","params":[{"required":"yes","param":"resource $stmt"}],"returns":"bool"},"maxdb_stmt_reset":{"desc":"Resets a prepared statement","params":[{"required":"yes","param":"resource $stmt"}],"returns":"bool"},"maxdb_stmt_send_long_data":{"desc":"Send data in blocks","params":[{"required":"yes","param":"resource $stmt"},{"required":"yes","param":"int $param_nr"},{"required":"yes","param":"string $data"}],"returns":"bool"},"maxdb_thread_safe":{"desc":"Returns whether thread safety is given or not","params":[],"returns":"bool"},"mb_check_encoding":{"desc":"Check if the string is valid for the specified encoding","params":[{"required":"no","param":"string $var = &#039;&#039;"},{"required":"no","param":"string $encoding = mb_internal_encoding("}],"returns":"bool"},"mb_ereg_match":{"desc":"Regular expression match for multibyte string","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"string $string"},{"required":"no","param":"string $option = &quot;msr&quot;"}],"returns":"bool"},"mb_ereg_search":{"desc":"Multibyte regular expression match for predefined multibyte string","params":[{"required":"no","param":"string $pattern = &#039;&#039;"},{"required":"no","param":"string $option = &quot;ms&quot;"}],"returns":"bool"},"mb_ereg_search_init":{"desc":"Setup string and regular expression for a multibyte regular expression match","params":[{"required":"yes","param":"string $string"},{"required":"no","param":"string $pattern = &#039;&#039;"},{"required":"no","param":"string $option = &quot;msr&quot;"}],"returns":"bool"},"mb_ereg_search_setpos":{"desc":"Set start point of next regular expression match","params":[{"required":"yes","param":"int $position"}],"returns":"bool"},"mb_send_mail":{"desc":"Send encoded mail","params":[{"required":"yes","param":"string $to"},{"required":"yes","param":"string $subject"},{"required":"yes","param":"string $message"},{"required":"no","param":"string $additional_headers = &#039;&#039;"},{"required":"no","param":"string $additional_parameter = &#039;&#039;"}],"returns":"bool"},"mcrypt_enc_is_block_algorithm":{"desc":"Checks whether the algorithm of the opened mode is a block algorithm","params":[{"required":"yes","param":"resource $td"}],"returns":"bool"},"mcrypt_enc_is_block_algorithm_mode":{"desc":"Checks whether the encryption of the opened mode works on blocks","params":[{"required":"yes","param":"resource $td"}],"returns":"bool"},"mcrypt_enc_is_block_mode":{"desc":"Checks whether the opened mode outputs blocks","params":[{"required":"yes","param":"resource $td"}],"returns":"bool"},"mcrypt_generic_deinit":{"desc":"This function deinitializes an encryption module","params":[{"required":"yes","param":"resource $td"}],"returns":"bool"},"mcrypt_generic_end":{"desc":"This function terminates encryption","params":[{"required":"yes","param":"resource $td"}],"returns":"bool"},"mcrypt_module_close":{"desc":"Closes the mcrypt module","params":[{"required":"yes","param":"resource $td"}],"returns":"bool"},"mcrypt_module_is_block_algorithm":{"desc":"This function checks whether the specified algorithm is a block algorithm","params":[{"required":"yes","param":"string $algorithm"},{"required":"no","param":"string $lib_dir = &#039;&#039;"}],"returns":"bool"},"mcrypt_module_is_block_algorithm_mode":{"desc":"Returns if the specified module is a block algorithm or not","params":[{"required":"yes","param":"string $mode"},{"required":"no","param":"string $lib_dir = &#039;&#039;"}],"returns":"bool"},"mcrypt_module_is_block_mode":{"desc":"Returns if the specified mode outputs blocks or not","params":[{"required":"yes","param":"string $mode"},{"required":"no","param":"string $lib_dir = &#039;&#039;"}],"returns":"bool"},"mcrypt_module_self_test":{"desc":"This function runs a self test on the specified module","params":[{"required":"yes","param":"string $algorithm"},{"required":"no","param":"string $lib_dir = &#039;&#039;"}],"returns":"bool"},"memcache_debug":{"desc":"Turn debug output on/off","params":[{"required":"yes","param":"bool $on_off"}],"returns":"bool"},"method_exists":{"desc":"Checks if the class method exists","params":[{"required":"yes","param":"mixed $object"},{"required":"yes","param":"string $method_name"}],"returns":"bool"},"mkdir":{"desc":"Makes directory","params":[{"required":"yes","param":"string $pathname"},{"required":"no","param":"int $mode = 0777"},{"required":"no","param":"bool $recursive = false"},{"required":"no","param":"resource $context = &#039;&#039;"}],"returns":"bool"},"move_uploaded_file":{"desc":"Moves an uploaded file to a new location","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"string $destination"}],"returns":"bool"},"msession_connect":{"desc":"Connect to msession server","params":[{"required":"yes","param":"string $host"},{"required":"yes","param":"string $port"}],"returns":"bool"},"msession_create":{"desc":"Create a session","params":[{"required":"yes","param":"string $session"},{"required":"no","param":"string $classname = &#039;&#039;"},{"required":"no","param":"string $data = &#039;&#039;"}],"returns":"bool"},"msession_destroy":{"desc":"Destroy a session","params":[{"required":"yes","param":"string $name"}],"returns":"bool"},"msession_set":{"desc":"Set value in session","params":[{"required":"yes","param":"string $session"},{"required":"yes","param":"string $name"},{"required":"yes","param":"string $value"}],"returns":"bool"},"msession_set_data":{"desc":"Set data session unstructured data","params":[{"required":"yes","param":"string $session"},{"required":"yes","param":"string $value"}],"returns":"bool"},"msgfmt_set_pattern":{"desc":"Set the pattern used by the formatter","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"MessageFormatter $fmt"}],"returns":"bool"},"msg_queue_exists":{"desc":"Check whether a message queue exists","params":[{"required":"yes","param":"int $key"}],"returns":"bool"},"msg_receive":{"desc":"Receive a message from a message queue","params":[{"required":"yes","param":"resource $queue"},{"required":"yes","param":"int $desiredmsgtype"},{"required":"yes","param":"int $msgtype"},{"required":"yes","param":"int $maxsize"},{"required":"yes","param":"mixed $message"},{"required":"no","param":"bool $unserialize = true"},{"required":"no","param":"int $flags = &#039;&#039;"},{"required":"no","param":"int $errorcode = &#039;&#039;"}],"returns":"bool"},"msg_remove_queue":{"desc":"Destroy a message queue","params":[{"required":"yes","param":"resource $queue"}],"returns":"bool"},"msg_send":{"desc":"Send a message to a message queue","params":[{"required":"yes","param":"resource $queue"},{"required":"yes","param":"int $msgtype"},{"required":"yes","param":"mixed $message"},{"required":"no","param":"bool $serialize = &#039;&#039;"},{"required":"no","param":"bool $blocking = &#039;&#039;"},{"required":"no","param":"int $errorcode = &#039;&#039;"}],"returns":"bool"},"msg_set_queue":{"desc":"Set information in the message queue data structure","params":[{"required":"yes","param":"resource $queue"},{"required":"yes","param":"array $data"}],"returns":"bool"},"msql_close":{"desc":"Close mSQL connection","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"msql_create_db":{"desc":"Create mSQL database","params":[{"required":"yes","param":"string $database_name"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"msql_data_seek":{"desc":"Move internal row pointer","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $row_number"}],"returns":"bool"},"msql_drop_db":{"desc":"Drop (delete) mSQL database","params":[{"required":"yes","param":"string $database_name"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"msql_field_seek":{"desc":"Set field offset","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_offset"}],"returns":"bool"},"msql_free_result":{"desc":"Free result memory","params":[{"required":"yes","param":"resource $result"}],"returns":"bool"},"msql_select_db":{"desc":"Select mSQL database","params":[{"required":"yes","param":"string $database_name"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"mssql_bind":{"desc":"Adds a parameter to a stored procedure or a remote stored procedure","params":[{"required":"yes","param":"resource $stmt"},{"required":"yes","param":"string $param_name"},{"required":"yes","param":"mixed $var"},{"required":"yes","param":"int $type"},{"required":"no","param":"bool $is_output = false"},{"required":"no","param":"bool $is_null = false"},{"required":"no","param":"int $maxlen = -1"}],"returns":"bool"},"mssql_close":{"desc":"Close MS SQL Server connection","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"mssql_data_seek":{"desc":"Moves internal row pointer","params":[{"required":"yes","param":"resource $result_identifier"},{"required":"yes","param":"int $row_number"}],"returns":"bool"},"mssql_field_seek":{"desc":"Seeks to the specified field offset","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_offset"}],"returns":"bool"},"mssql_free_result":{"desc":"Free result memory","params":[{"required":"yes","param":"resource $result"}],"returns":"bool"},"mssql_free_statement":{"desc":"Free statement memory","params":[{"required":"yes","param":"resource $stmt"}],"returns":"bool"},"mssql_next_result":{"desc":"Move the internal result pointer to the next result","params":[{"required":"yes","param":"resource $result_id"}],"returns":"bool"},"mssql_select_db":{"desc":"Select MS SQL database","params":[{"required":"yes","param":"string $database_name"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"mysqli_autocommit":{"desc":"Turns on or off auto-commiting database modifications","params":[{"required":"yes","param":"bool $mode"},{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_change_user":{"desc":"Changes the user of the specified database connection","params":[{"required":"yes","param":"string $user"},{"required":"yes","param":"string $password"},{"required":"yes","param":"string $database"},{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_close":{"desc":"Closes a previously opened database connection","params":[{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_commit":{"desc":"Commits the current transaction","params":[{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_data_seek":{"desc":"Adjusts the result pointer to an arbitary row in the result","params":[{"required":"yes","param":"int $offset"},{"required":"yes","param":"mysqli_result $result"}],"returns":"bool"},"mysqli_debug":{"desc":"Performs debugging operations","params":[{"required":"yes","param":"string $message"}],"returns":"bool"},"mysqli_disable_reads_from_master":{"desc":"Disable reads from master","params":[{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_disable_rpl_parse":{"desc":"Disable RPL parse","params":[{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_dump_debug_info":{"desc":"Dump debugging information into the log","params":[{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_embedded_server_start":{"desc":"Initialize and start embedded server","params":[{"required":"yes","param":"bool $start"},{"required":"yes","param":"array $arguments"},{"required":"yes","param":"array $groups"}],"returns":"bool"},"mysqli_enable_reads_from_master":{"desc":"Enable reads from master","params":[{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_enable_rpl_parse":{"desc":"Enable RPL parse","params":[{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_field_seek":{"desc":"Set result pointer to a specified field offset","params":[{"required":"yes","param":"int $fieldnr"},{"required":"yes","param":"mysqli_result $result"}],"returns":"bool"},"mysqli_kill":{"desc":"Asks the server to kill a MySQL thread","params":[{"required":"yes","param":"int $processid"},{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_master_query":{"desc":"Enforce execution of a query on the master in a master/slave setup","params":[{"required":"yes","param":"mysqli $link"},{"required":"yes","param":"string $query"}],"returns":"bool"},"mysqli_more_results":{"desc":"Check if there are any more query results from a multi query","params":[{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_multi_query":{"desc":"Performs a query on the database","params":[{"required":"yes","param":"string $query"},{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_next_result":{"desc":"Prepare next result from multi_query","params":[{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_options":{"desc":"Set options","params":[{"required":"yes","param":"int $option"},{"required":"yes","param":"mixed $value"},{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_ping":{"desc":"Pings a server connection, or tries to reconnect if the connection has gone down","params":[{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_real_connect":{"desc":"Opens a connection to a mysql server","params":[{"required":"no","param":"string $host = &#039;&#039;"},{"required":"no","param":"string $username = &#039;&#039;"},{"required":"no","param":"string $passwd = &#039;&#039;"},{"required":"no","param":"string $dbname = &#039;&#039;"},{"required":"no","param":"int $port = &#039;&#039;"},{"required":"no","param":"string $socket = &#039;&#039;"},{"required":"no","param":"int $flags = &#039;&#039;"},{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_real_query":{"desc":"Execute an SQL query","params":[{"required":"yes","param":"string $query"},{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_report":{"desc":"Enables or disables internal report functions","params":[{"required":"yes","param":"int $flags"}],"returns":"bool"},"mysqli_rollback":{"desc":"Rolls back current transaction","params":[{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_rpl_probe":{"desc":"RPL probe","params":[{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_select_db":{"desc":"Selects the default database for database queries","params":[{"required":"yes","param":"string $dbname"},{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_send_query":{"desc":"Send the query and return","params":[{"required":"yes","param":"string $query"},{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_set_charset":{"desc":"Sets the default client character set","params":[{"required":"yes","param":"string $charset"},{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_set_local_infile_handler":{"desc":"Set callback function for LOAD DATA LOCAL INFILE command","params":[{"required":"yes","param":"mysqli $link"},{"required":"yes","param":"callback $read_func"}],"returns":"bool"},"mysqli_slave_query":{"desc":"Force execution of a query on a slave in a master/slave setup","params":[{"required":"yes","param":"mysqli $link"},{"required":"yes","param":"string $query"}],"returns":"bool"},"mysqli_ssl_set":{"desc":"Used for establishing secure connections using SSL","params":[{"required":"yes","param":"string $key"},{"required":"yes","param":"string $cert"},{"required":"yes","param":"string $ca"},{"required":"yes","param":"string $capath"},{"required":"yes","param":"string $cipher"},{"required":"yes","param":"mysqli $link"}],"returns":"bool"},"mysqli_stmt_attr_set":{"desc":"Used to modify the behavior of a prepared statement","params":[{"required":"yes","param":"int $attr"},{"required":"yes","param":"int $mode"},{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"bool"},"mysqli_stmt_bind_param":{"desc":"Binds variables to a prepared statement as parameters","params":[{"required":"yes","param":"string $types"},{"required":"yes","param":"mixed $var1"},{"required":"no","param":"mixed $... = &#039;&#039;"},{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"bool"},"mysqli_stmt_bind_result":{"desc":"Binds variables to a prepared statement for result storage","params":[{"required":"yes","param":"mixed $var1"},{"required":"no","param":"mixed $... = &#039;&#039;"},{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"bool"},"mysqli_stmt_close":{"desc":"Closes a prepared statement","params":[{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"bool"},"mysqli_stmt_execute":{"desc":"Executes a prepared Query","params":[{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"bool"},"mysqli_stmt_fetch":{"desc":"Fetch results from a prepared statement into the bound variables","params":[{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"bool"},"mysqli_stmt_get_result":{"desc":"Gets a result set from a prepared statement","params":[{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"bool"},"mysqli_stmt_prepare":{"desc":"Prepare an SQL statement for execution","params":[{"required":"yes","param":"string $query"},{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"bool"},"mysqli_stmt_reset":{"desc":"Resets a prepared statement","params":[{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"bool"},"mysqli_stmt_send_long_data":{"desc":"Send data in blocks","params":[{"required":"yes","param":"int $param_nr"},{"required":"yes","param":"string $data"},{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"bool"},"mysqli_stmt_store_result":{"desc":"Transfers a result set from a prepared statement","params":[{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"bool"},"mysqli_thread_safe":{"desc":"Returns whether thread safety is given or not","params":[],"returns":"bool"},"mysqlnd_ms_set_user_pick_server":{"desc":"Sets a callback for user-defined read/write splitting","params":[{"required":"yes","param":"string $function"}],"returns":"bool"},"mysqlnd_qc_change_handler":{"desc":"Change current storage handler","params":[{"required":"yes","param":"mixed $handler"}],"returns":"bool"},"mysqlnd_qc_clear_cache":{"desc":"Flush all cache contents","params":[],"returns":"bool"},"mysqlnd_qc_set_user_handlers":{"desc":"Sets the callback functions for a user-defined procedural storage handler","params":[{"required":"yes","param":"string $get_hash"},{"required":"yes","param":"string $find_query_in_cache"},{"required":"yes","param":"string $return_to_cache"},{"required":"yes","param":"string $add_query_to_cache_if_not_exists"},{"required":"yes","param":"string $query_is_select"},{"required":"yes","param":"string $update_query_run_time_stats"},{"required":"yes","param":"string $get_stats"},{"required":"yes","param":"string $clear_cache"}],"returns":"bool"},"mysql_close":{"desc":"Close MySQL connection","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"mysql_create_db":{"desc":"Create a MySQL database","params":[{"required":"yes","param":"string $database_name"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"mysql_data_seek":{"desc":"Move internal result pointer","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $row_number"}],"returns":"bool"},"mysql_drop_db":{"desc":"Drop (delete) a MySQL database","params":[{"required":"yes","param":"string $database_name"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"mysql_field_seek":{"desc":"Set result pointer to a specified field offset","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_offset"}],"returns":"bool"},"mysql_free_result":{"desc":"Free result memory","params":[{"required":"yes","param":"resource $result"}],"returns":"bool"},"mysql_ping":{"desc":"Ping a server connection or reconnect if there is no connection","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"mysql_select_db":{"desc":"Select a MySQL database","params":[{"required":"yes","param":"string $database_name"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"mysql_set_charset":{"desc":"Sets the client character set","params":[{"required":"yes","param":"string $charset"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"m_deletetrans":{"desc":"Delete specified transaction from MCVE_CONN structure","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $identifier"}],"returns":"bool"},"m_destroyconn":{"desc":"Destroy the connection and MCVE_CONN structure","params":[{"required":"yes","param":"resource $conn"}],"returns":"bool"},"m_maxconntimeout":{"desc":"The maximum amount of time the API will attempt a connection to MCVE","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $secs"}],"returns":"bool"},"m_verifyconnection":{"desc":"Set whether or not to PING upon connect to verify connection","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $tf"}],"returns":"bool"},"m_verifysslcert":{"desc":"Set whether or not to verify the server ssl certificate","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $tf"}],"returns":"bool"},"natcasesort":{"desc":"Sort an array using a case insensitive &quot;natural order&quot; algorithm","params":[{"required":"yes","param":"array $array"}],"returns":"bool"},"natsort":{"desc":"Sort an array using a &quot;natural order&quot; algorithm","params":[{"required":"yes","param":"array $array"}],"returns":"bool"},"ncurses_can_change_color":{"desc":"Checks if terminal color definitions can be changed","params":[],"returns":"bool"},"ncurses_cbreak":{"desc":"Switch of input buffering","params":[],"returns":"bool"},"ncurses_clear":{"desc":"Clear screen","params":[],"returns":"bool"},"ncurses_clrtobot":{"desc":"Clear screen from current position to bottom","params":[],"returns":"bool"},"ncurses_clrtoeol":{"desc":"Clear screen from current position to end of line","params":[],"returns":"bool"},"ncurses_def_prog_mode":{"desc":"Saves terminals (program) mode","params":[],"returns":"bool"},"ncurses_def_shell_mode":{"desc":"Saves terminals (shell) mode","params":[],"returns":"bool"},"ncurses_delch":{"desc":"Delete character at current position, move rest of line left","params":[],"returns":"bool"},"ncurses_deleteln":{"desc":"Delete line at current position, move rest of screen up","params":[],"returns":"bool"},"ncurses_delwin":{"desc":"Delete a ncurses window","params":[{"required":"yes","param":"resource $window"}],"returns":"bool"},"ncurses_del_panel":{"desc":"Remove panel from the stack and delete it (but not the associated window)","params":[{"required":"yes","param":"resource $panel"}],"returns":"bool"},"ncurses_doupdate":{"desc":"Write all prepared refreshes to terminal","params":[],"returns":"bool"},"ncurses_echo":{"desc":"Activate keyboard input echo","params":[],"returns":"bool"},"ncurses_erase":{"desc":"Erase terminal screen","params":[],"returns":"bool"},"ncurses_flash":{"desc":"Flash terminal screen (visual bell)","params":[],"returns":"bool"},"ncurses_flushinp":{"desc":"Flush keyboard input buffer","params":[],"returns":"bool"},"ncurses_getmouse":{"desc":"Reads mouse event","params":[{"required":"yes","param":"array $mevent"}],"returns":"bool"},"ncurses_has_colors":{"desc":"Checks if terminal has color capabilities","params":[],"returns":"bool"},"ncurses_has_ic":{"desc":"Check for insert- and delete-capabilities","params":[],"returns":"bool"},"ncurses_has_il":{"desc":"Check for line insert- and delete-capabilities","params":[],"returns":"bool"},"ncurses_isendwin":{"desc":"Ncurses is in endwin mode, normal screen output may be performed","params":[],"returns":"bool"},"ncurses_mouse_trafo":{"desc":"Transforms coordinates","params":[{"required":"yes","param":"int $y"},{"required":"yes","param":"int $x"},{"required":"yes","param":"bool $toscreen"}],"returns":"bool"},"ncurses_nl":{"desc":"Translate newline and carriage return / line feed","params":[],"returns":"bool"},"ncurses_nocbreak":{"desc":"Switch terminal to cooked mode","params":[],"returns":"bool"},"ncurses_noecho":{"desc":"Switch off keyboard input echo","params":[],"returns":"bool"},"ncurses_nonl":{"desc":"Do not translate newline and carriage return / line feed","params":[],"returns":"bool"},"ncurses_noraw":{"desc":"Switch terminal out of raw mode","params":[],"returns":"bool"},"ncurses_raw":{"desc":"Switch terminal into raw mode","params":[],"returns":"bool"},"ncurses_resetty":{"desc":"Restores saved terminal state","params":[],"returns":"bool"},"ncurses_savetty":{"desc":"Saves terminal state","params":[],"returns":"bool"},"ncurses_slk_clear":{"desc":"Clears soft labels from screen","params":[],"returns":"bool"},"ncurses_slk_init":{"desc":"Initializes soft label key functions","params":[{"required":"yes","param":"int $format"}],"returns":"bool"},"ncurses_slk_noutrefresh":{"desc":"Copies soft label keys to virtual screen","params":[],"returns":"bool"},"ncurses_slk_set":{"desc":"Sets function key labels","params":[{"required":"yes","param":"int $labelnr"},{"required":"yes","param":"string $label"},{"required":"yes","param":"int $format"}],"returns":"bool"},"ncurses_termattrs":{"desc":"Returns a logical OR of all attribute flags supported by terminal","params":[],"returns":"bool"},"ncurses_ungetmouse":{"desc":"Pushes mouse event to queue","params":[{"required":"yes","param":"array $mevent"}],"returns":"bool"},"ncurses_use_default_colors":{"desc":"Assign terminal default colors to color id -1","params":[],"returns":"bool"},"ncurses_wmouse_trafo":{"desc":"Transforms window/stdscr coordinates","params":[{"required":"yes","param":"resource $window"},{"required":"yes","param":"int $y"},{"required":"yes","param":"int $x"},{"required":"yes","param":"bool $toscreen"}],"returns":"bool"},"normalizer_is_normalized":{"desc":"Checks if the provided string is already in the specified normalization form.","params":[{"required":"yes","param":"string $input"},{"required":"no","param":"string $form = Normalizer::FORM_C"}],"returns":"bool"},"notes_copy_db":{"desc":"Copy a Lotus Notes database","params":[{"required":"yes","param":"string $from_database_name"},{"required":"yes","param":"string $to_database_name"}],"returns":"bool"},"notes_create_db":{"desc":"Create a Lotus Notes database","params":[{"required":"yes","param":"string $database_name"}],"returns":"bool"},"notes_create_note":{"desc":"Create a note using form form_name","params":[{"required":"yes","param":"string $database_name"},{"required":"yes","param":"string $form_name"}],"returns":"bool"},"notes_drop_db":{"desc":"Drop a Lotus Notes database","params":[{"required":"yes","param":"string $database_name"}],"returns":"bool"},"notes_list_msgs":{"desc":"Returns the notes from a selected database_name","params":[{"required":"yes","param":"string $db"}],"returns":"bool"},"notes_mark_read":{"desc":"Mark a note_id as read for the User user_name","params":[{"required":"yes","param":"string $database_name"},{"required":"yes","param":"string $user_name"},{"required":"yes","param":"string $note_id"}],"returns":"bool"},"notes_mark_unread":{"desc":"Mark a note_id as unread for the User user_name","params":[{"required":"yes","param":"string $database_name"},{"required":"yes","param":"string $user_name"},{"required":"yes","param":"string $note_id"}],"returns":"bool"},"notes_nav_create":{"desc":"Create a navigator name, in database_name","params":[{"required":"yes","param":"string $database_name"},{"required":"yes","param":"string $name"}],"returns":"bool"},"nsapi_virtual":{"desc":"Perform an NSAPI sub-request","params":[{"required":"yes","param":"string $uri"}],"returns":"bool"},"numfmt_set_attribute":{"desc":"Set an attribute","params":[{"required":"yes","param":"int $attr"},{"required":"yes","param":"int $value"},{"required":"yes","param":"NumberFormatter $fmt"}],"returns":"bool"},"numfmt_set_pattern":{"desc":"Set formatter pattern","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"NumberFormatter $fmt"}],"returns":"bool"},"numfmt_set_symbol":{"desc":"Set a symbol value","params":[{"required":"yes","param":"int $attr"},{"required":"yes","param":"string $value"},{"required":"yes","param":"NumberFormatter $fmt"}],"returns":"bool"},"numfmt_set_text_attribute":{"desc":"Set a text attribute","params":[{"required":"yes","param":"int $attr"},{"required":"yes","param":"string $value"},{"required":"yes","param":"NumberFormatter $fmt"}],"returns":"bool"},"ob_end_clean":{"desc":"Clean (erase) the output buffer and turn off output buffering","params":[],"returns":"bool"},"ob_end_flush":{"desc":"Flush (send) the output buffer and turn off output buffering","params":[],"returns":"bool"},"ob_start":{"desc":"Turn on output buffering","params":[{"required":"no","param":"callback $output_callback = &#039;&#039;"},{"required":"no","param":"int $chunk_size = &#039;&#039;"},{"required":"no","param":"bool $erase = &#039;&#039;"}],"returns":"bool"},"oci_bind_array_by_name":{"desc":"Binds a PHP array to an Oracle PL/SQL array parameter","params":[{"required":"yes","param":"resource $statement"},{"required":"yes","param":"string $name"},{"required":"yes","param":"array $var_array"},{"required":"yes","param":"int $max_table_length"},{"required":"no","param":"int $max_item_length = -1"},{"required":"no","param":"int $type = SQLT_AFC"}],"returns":"bool"},"oci_bind_by_name":{"desc":"Binds a PHP variable to an Oracle placeholder","params":[{"required":"yes","param":"resource $statement"},{"required":"yes","param":"string $bv_name"},{"required":"yes","param":"mixed $variable"},{"required":"no","param":"int $maxlength = -1"},{"required":"no","param":"int $type = SQLT_CHR"}],"returns":"bool"},"oci_cancel":{"desc":"Cancels reading from cursor","params":[{"required":"yes","param":"resource $statement"}],"returns":"bool"},"oci_close":{"desc":"Closes an Oracle connection","params":[{"required":"yes","param":"resource $connection"}],"returns":"bool"},"oci_commit":{"desc":"Commits the outstanding database transaction","params":[{"required":"yes","param":"resource $connection"}],"returns":"bool"},"oci_define_by_name":{"desc":"Associates a PHP variable with a column for query fetches","params":[{"required":"yes","param":"resource $statement"},{"required":"yes","param":"string $column_name"},{"required":"yes","param":"mixed $variable"},{"required":"no","param":"int $type = SQLT_CHR"}],"returns":"bool"},"oci_execute":{"desc":"Executes a statement","params":[{"required":"yes","param":"resource $statement"},{"required":"no","param":"int $mode = OCI_COMMIT_ON_SUCCESS"}],"returns":"bool"},"oci_fetch":{"desc":"Fetches the next row from a query into internal buffers","params":[{"required":"yes","param":"resource $statement"}],"returns":"bool"},"oci_field_is_null":{"desc":"Checks if the field is NULL","params":[{"required":"yes","param":"resource $statement"},{"required":"yes","param":"mixed $field"}],"returns":"bool"},"oci_free_statement":{"desc":"Frees all resources associated with statement or cursor","params":[{"required":"yes","param":"resource $statement"}],"returns":"bool"},"oci_lob_copy":{"desc":"Copies large object","params":[{"required":"yes","param":"OCI-Lob $lob_to"},{"required":"yes","param":"OCI-Lob $lob_from"},{"required":"no","param":"int $length = &#039;&#039;"}],"returns":"bool"},"oci_lob_is_equal":{"desc":"Compares two LOB/FILE locators for equality","params":[{"required":"yes","param":"OCI-Lob $lob1"},{"required":"yes","param":"OCI-Lob $lob2"}],"returns":"bool"},"oci_rollback":{"desc":"Rolls back the outstanding database transaction","params":[{"required":"yes","param":"resource $connection"}],"returns":"bool"},"oci_set_action":{"desc":"Sets the action name","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $action_name"}],"returns":"bool"},"oci_set_client_identifier":{"desc":"Sets the client identifier","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $client_identifier"}],"returns":"bool"},"oci_set_client_info":{"desc":"Sets the client information","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $client_info"}],"returns":"bool"},"oci_set_edition":{"desc":"Sets the database edition","params":[{"required":"yes","param":"string $edition"}],"returns":"bool"},"oci_set_module_name":{"desc":"Sets the module name","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $module_name"}],"returns":"bool"},"oci_set_prefetch":{"desc":"Sets number of rows to be prefetched by queries","params":[{"required":"yes","param":"resource $statement"},{"required":"yes","param":"int $rows"}],"returns":"bool"},"odbc_binmode":{"desc":"Handling of binary column data","params":[{"required":"yes","param":"resource $result_id"},{"required":"yes","param":"int $mode"}],"returns":"bool"},"odbc_commit":{"desc":"Commit an ODBC transaction","params":[{"required":"yes","param":"resource $connection_id"}],"returns":"bool"},"odbc_execute":{"desc":"Execute a prepared statement","params":[{"required":"yes","param":"resource $result_id"},{"required":"no","param":"array $parameters_array = &#039;&#039;"}],"returns":"bool"},"odbc_fetch_row":{"desc":"Fetch a row","params":[{"required":"yes","param":"resource $result_id"},{"required":"no","param":"int $row_number = &#039;&#039;"}],"returns":"bool"},"odbc_free_result":{"desc":"Free resources associated with a result","params":[{"required":"yes","param":"resource $result_id"}],"returns":"bool"},"odbc_longreadlen":{"desc":"Handling of LONG columns","params":[{"required":"yes","param":"resource $result_id"},{"required":"yes","param":"int $length"}],"returns":"bool"},"odbc_next_result":{"desc":"Checks if multiple results are available","params":[{"required":"yes","param":"resource $result_id"}],"returns":"bool"},"odbc_rollback":{"desc":"Rollback a transaction","params":[{"required":"yes","param":"resource $connection_id"}],"returns":"bool"},"odbc_setoption":{"desc":"Adjust ODBC settings","params":[{"required":"yes","param":"resource $id"},{"required":"yes","param":"int $function"},{"required":"yes","param":"int $option"},{"required":"yes","param":"int $param"}],"returns":"bool"},"openal_buffer_data":{"desc":"Load a buffer with data","params":[{"required":"yes","param":"resource $buffer"},{"required":"yes","param":"int $format"},{"required":"yes","param":"string $data"},{"required":"yes","param":"int $freq"}],"returns":"bool"},"openal_buffer_destroy":{"desc":"Destroys an OpenAL buffer","params":[{"required":"yes","param":"resource $buffer"}],"returns":"bool"},"openal_buffer_loadwav":{"desc":"Load a .wav file into a buffer","params":[{"required":"yes","param":"resource $buffer"},{"required":"yes","param":"string $wavfile"}],"returns":"bool"},"openal_context_current":{"desc":"Make the specified context current","params":[{"required":"yes","param":"resource $context"}],"returns":"bool"},"openal_context_destroy":{"desc":"Destroys a context","params":[{"required":"yes","param":"resource $context"}],"returns":"bool"},"openal_context_process":{"desc":"Process the specified context","params":[{"required":"yes","param":"resource $context"}],"returns":"bool"},"openal_context_suspend":{"desc":"Suspend the specified context","params":[{"required":"yes","param":"resource $context"}],"returns":"bool"},"openal_device_close":{"desc":"Close an OpenAL device","params":[{"required":"yes","param":"resource $device"}],"returns":"bool"},"openal_listener_set":{"desc":"Set a listener property","params":[{"required":"yes","param":"int $property"},{"required":"yes","param":"mixed $setting"}],"returns":"bool"},"openal_source_destroy":{"desc":"Destroy a source resource","params":[{"required":"yes","param":"resource $source"}],"returns":"bool"},"openal_source_pause":{"desc":"Pause the source","params":[{"required":"yes","param":"resource $source"}],"returns":"bool"},"openal_source_play":{"desc":"Start playing the source","params":[{"required":"yes","param":"resource $source"}],"returns":"bool"},"openal_source_rewind":{"desc":"Rewind the source","params":[{"required":"yes","param":"resource $source"}],"returns":"bool"},"openal_source_set":{"desc":"Set source property","params":[{"required":"yes","param":"resource $source"},{"required":"yes","param":"int $property"},{"required":"yes","param":"mixed $setting"}],"returns":"bool"},"openal_source_stop":{"desc":"Stop playing the source","params":[{"required":"yes","param":"resource $source"}],"returns":"bool"},"openlog":{"desc":"Open connection to system logger","params":[{"required":"yes","param":"string $ident"},{"required":"yes","param":"int $option"},{"required":"yes","param":"int $facility"}],"returns":"bool"},"openssl_csr_export":{"desc":"Exports a CSR as a string","params":[{"required":"yes","param":"resource $csr"},{"required":"yes","param":"string $out"},{"required":"no","param":"bool $notext = true"}],"returns":"bool"},"openssl_csr_export_to_file":{"desc":"Exports a CSR to a file","params":[{"required":"yes","param":"resource $csr"},{"required":"yes","param":"string $outfilename"},{"required":"no","param":"bool $notext = true"}],"returns":"bool"},"openssl_open":{"desc":"Open sealed data","params":[{"required":"yes","param":"string $sealed_data"},{"required":"yes","param":"string $open_data"},{"required":"yes","param":"string $env_key"},{"required":"yes","param":"mixed $priv_key_id"},{"required":"no","param":"string $method = &#039;&#039;"}],"returns":"bool"},"openssl_pkcs7_decrypt":{"desc":"Decrypts an S/MIME encrypted message","params":[{"required":"yes","param":"string $infilename"},{"required":"yes","param":"string $outfilename"},{"required":"yes","param":"mixed $recipcert"},{"required":"no","param":"mixed $recipkey = &#039;&#039;"}],"returns":"bool"},"openssl_pkcs7_encrypt":{"desc":"Encrypt an S/MIME message","params":[{"required":"yes","param":"string $infile"},{"required":"yes","param":"string $outfile"},{"required":"yes","param":"mixed $recipcerts"},{"required":"yes","param":"array $headers"},{"required":"no","param":"int $flags = &#039;&#039;"},{"required":"no","param":"int $cipherid = OPENSSL_CIPHER_RC2_40"}],"returns":"bool"},"openssl_pkcs7_sign":{"desc":"Sign an S/MIME message","params":[{"required":"yes","param":"string $infilename"},{"required":"yes","param":"string $outfilename"},{"required":"yes","param":"mixed $signcert"},{"required":"yes","param":"mixed $privkey"},{"required":"yes","param":"array $headers"},{"required":"no","param":"int $flags = PKCS7_DETACHED"},{"required":"no","param":"string $extracerts = &#039;&#039;"}],"returns":"bool"},"openssl_pkcs12_export":{"desc":"Exports a PKCS#12 Compatible Certificate Store File to variable.","params":[{"required":"yes","param":"mixed $x509"},{"required":"yes","param":"string $out"},{"required":"yes","param":"mixed $priv_key"},{"required":"yes","param":"string $pass"},{"required":"no","param":"array $args = &#039;&#039;"}],"returns":"bool"},"openssl_pkcs12_export_to_file":{"desc":"Exports a PKCS#12 Compatible Certificate Store File","params":[{"required":"yes","param":"mixed $x509"},{"required":"yes","param":"string $filename"},{"required":"yes","param":"mixed $priv_key"},{"required":"yes","param":"string $pass"},{"required":"no","param":"array $args = &#039;&#039;"}],"returns":"bool"},"openssl_pkcs12_read":{"desc":"Parse a PKCS#12 Certificate Store into an array","params":[{"required":"yes","param":"string $pkcs12"},{"required":"yes","param":"array $certs"},{"required":"yes","param":"string $pass"}],"returns":"bool"},"openssl_pkey_export":{"desc":"Gets an exportable representation of a key into a string","params":[{"required":"yes","param":"mixed $key"},{"required":"yes","param":"string $out"},{"required":"no","param":"string $passphrase = &#039;&#039;"},{"required":"no","param":"array $configargs = &#039;&#039;"}],"returns":"bool"},"openssl_pkey_export_to_file":{"desc":"Gets an exportable representation of a key into a file","params":[{"required":"yes","param":"mixed $key"},{"required":"yes","param":"string $outfilename"},{"required":"no","param":"string $passphrase = &#039;&#039;"},{"required":"no","param":"array $configargs = &#039;&#039;"}],"returns":"bool"},"openssl_private_decrypt":{"desc":"Decrypts data with private key","params":[{"required":"yes","param":"string $data"},{"required":"yes","param":"string $decrypted"},{"required":"yes","param":"mixed $key"},{"required":"no","param":"int $padding = OPENSSL_PKCS1_PADDING"}],"returns":"bool"},"openssl_private_encrypt":{"desc":"Encrypts data with private key","params":[{"required":"yes","param":"string $data"},{"required":"yes","param":"string $crypted"},{"required":"yes","param":"mixed $key"},{"required":"no","param":"int $padding = OPENSSL_PKCS1_PADDING"}],"returns":"bool"},"openssl_public_decrypt":{"desc":"Decrypts data with public key","params":[{"required":"yes","param":"string $data"},{"required":"yes","param":"string $decrypted"},{"required":"yes","param":"mixed $key"},{"required":"no","param":"int $padding = OPENSSL_PKCS1_PADDING"}],"returns":"bool"},"openssl_public_encrypt":{"desc":"Encrypts data with public key","params":[{"required":"yes","param":"string $data"},{"required":"yes","param":"string $crypted"},{"required":"yes","param":"mixed $key"},{"required":"no","param":"int $padding = OPENSSL_PKCS1_PADDING"}],"returns":"bool"},"openssl_sign":{"desc":"Generate signature","params":[{"required":"yes","param":"string $data"},{"required":"yes","param":"string $signature"},{"required":"yes","param":"mixed $priv_key_id"},{"required":"no","param":"int $signature_alg = OPENSSL_ALGO_SHA1"}],"returns":"bool"},"openssl_x509_check_private_key":{"desc":"Checks if a private key corresponds to a certificate","params":[{"required":"yes","param":"mixed $cert"},{"required":"yes","param":"mixed $key"}],"returns":"bool"},"openssl_x509_export":{"desc":"Exports a certificate as a string","params":[{"required":"yes","param":"mixed $x509"},{"required":"yes","param":"string $output"},{"required":"no","param":"bool $notext = &#039;&#039;"}],"returns":"bool"},"openssl_x509_export_to_file":{"desc":"Exports a certificate to file","params":[{"required":"yes","param":"mixed $x509"},{"required":"yes","param":"string $outfilename"},{"required":"no","param":"bool $notext = &#039;&#039;"}],"returns":"bool"},"output_add_rewrite_var":{"desc":"Add URL rewriter values","params":[{"required":"yes","param":"string $name"},{"required":"yes","param":"string $value"}],"returns":"bool"},"output_reset_rewrite_vars":{"desc":"Reset URL rewriter values","params":[],"returns":"bool"},"override_function":{"desc":"Overrides built-in functions","params":[{"required":"yes","param":"string $function_name"},{"required":"yes","param":"string $function_args"},{"required":"yes","param":"string $function_code"}],"returns":"bool"},"ovrimos_commit":{"desc":"Commits the transaction","params":[{"required":"yes","param":"int $connection_id"}],"returns":"bool"},"ovrimos_execute":{"desc":"Executes a prepared SQL statement","params":[{"required":"yes","param":"int $result_id"},{"required":"no","param":"array $parameters_array = &#039;&#039;"}],"returns":"bool"},"ovrimos_fetch_into":{"desc":"Fetches a row from the result set","params":[{"required":"yes","param":"int $result_id"},{"required":"yes","param":"array $result_array"},{"required":"no","param":"string $how = &#039;&#039;"},{"required":"no","param":"int $rownumber = &#039;&#039;"}],"returns":"bool"},"ovrimos_fetch_row":{"desc":"Fetches a row from the result set","params":[{"required":"yes","param":"int $result_id"},{"required":"no","param":"int $how = &#039;&#039;"},{"required":"no","param":"int $row_number = &#039;&#039;"}],"returns":"bool"},"ovrimos_free_result":{"desc":"Frees the specified result_id","params":[{"required":"yes","param":"int $result_id"}],"returns":"bool"},"ovrimos_longreadlen":{"desc":"Specifies how many bytes are to be retrieved from long datatypes","params":[{"required":"yes","param":"int $result_id"},{"required":"yes","param":"int $length"}],"returns":"bool"},"ovrimos_rollback":{"desc":"Rolls back the transaction","params":[{"required":"yes","param":"int $connection_id"}],"returns":"bool"},"pcntl_setpriority":{"desc":"Change the priority of any process","params":[{"required":"yes","param":"int $priority"},{"required":"no","param":"int $pid = getmypid()"},{"required":"no","param":"int $process_identifier = PRIO_PROCESS"}],"returns":"bool"},"pcntl_signal":{"desc":"Installs a signal handler","params":[{"required":"yes","param":"int $signo"},{"required":"yes","param":"callback $handler"},{"required":"no","param":"bool $restart_syscalls = true"}],"returns":"bool"},"pcntl_signal_dispatch":{"desc":"Calls signal handlers for pending signals","params":[],"returns":"bool"},"pcntl_sigprocmask":{"desc":"Sets and retrieves blocked signals","params":[{"required":"yes","param":"int $how"},{"required":"yes","param":"array $set"},{"required":"no","param":"array $oldset = &#039;&#039;"}],"returns":"bool"},"pcntl_wifexited":{"desc":"Checks if status code represents a normal exit","params":[{"required":"yes","param":"int $status"}],"returns":"bool"},"pcntl_wifsignaled":{"desc":"Checks whether the status code represents a termination due to a signal","params":[{"required":"yes","param":"int $status"}],"returns":"bool"},"pcntl_wifstopped":{"desc":"Checks whether the child process is currently stopped","params":[{"required":"yes","param":"int $status"}],"returns":"bool"},"PDF_activate_item":{"desc":"Activate structure element or other content item","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $id"}],"returns":"bool"},"PDF_add_launchlink":{"desc":"Add launch annotation for current page [deprecated]","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"float $llx"},{"required":"yes","param":"float $lly"},{"required":"yes","param":"float $urx"},{"required":"yes","param":"float $ury"},{"required":"yes","param":"string $filename"}],"returns":"bool"},"PDF_add_locallink":{"desc":"Add link annotation for current page [deprecated]","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"float $lowerleftx"},{"required":"yes","param":"float $lowerlefty"},{"required":"yes","param":"float $upperrightx"},{"required":"yes","param":"float $upperrighty"},{"required":"yes","param":"int $page"},{"required":"yes","param":"string $dest"}],"returns":"bool"},"PDF_add_nameddest":{"desc":"Create named destination","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $name"},{"required":"yes","param":"string $optlist"}],"returns":"bool"},"PDF_add_note":{"desc":"Set annotation for current page [deprecated]","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"float $llx"},{"required":"yes","param":"float $lly"},{"required":"yes","param":"float $urx"},{"required":"yes","param":"float $ury"},{"required":"yes","param":"string $contents"},{"required":"yes","param":"string $title"},{"required":"yes","param":"string $icon"},{"required":"yes","param":"int $open"}],"returns":"bool"},"PDF_add_pdflink":{"desc":"Add file link annotation for current page [deprecated]","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"float $bottom_left_x"},{"required":"yes","param":"float $bottom_left_y"},{"required":"yes","param":"float $up_right_x"},{"required":"yes","param":"float $up_right_y"},{"required":"yes","param":"string $filename"},{"required":"yes","param":"int $page"},{"required":"yes","param":"string $dest"}],"returns":"bool"},"PDF_add_thumbnail":{"desc":"Add thumbnail for current page","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $image"}],"returns":"bool"},"PDF_add_weblink":{"desc":"Add weblink for current page [deprecated]","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"float $lowerleftx"},{"required":"yes","param":"float $lowerlefty"},{"required":"yes","param":"float $upperrightx"},{"required":"yes","param":"float $upperrighty"},{"required":"yes","param":"string $url"}],"returns":"bool"},"PDF_arc":{"desc":"Draw a counterclockwise circular arc segment","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"float $r"},{"required":"yes","param":"float $alpha"},{"required":"yes","param":"float $beta"}],"returns":"bool"},"PDF_arcn":{"desc":"Draw a clockwise circular arc segment","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"float $r"},{"required":"yes","param":"float $alpha"},{"required":"yes","param":"float $beta"}],"returns":"bool"},"PDF_attach_file":{"desc":"Add file attachment for current page [deprecated]","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"float $llx"},{"required":"yes","param":"float $lly"},{"required":"yes","param":"float $urx"},{"required":"yes","param":"float $ury"},{"required":"yes","param":"string $filename"},{"required":"yes","param":"string $description"},{"required":"yes","param":"string $author"},{"required":"yes","param":"string $mimetype"},{"required":"yes","param":"string $icon"}],"returns":"bool"},"PDF_begin_font":{"desc":"Start a Type 3 font definition","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $filename"},{"required":"yes","param":"float $a"},{"required":"yes","param":"float $b"},{"required":"yes","param":"float $c"},{"required":"yes","param":"float $d"},{"required":"yes","param":"float $e"},{"required":"yes","param":"float $f"},{"required":"yes","param":"string $optlist"}],"returns":"bool"},"PDF_begin_glyph":{"desc":"Start glyph definition for Type 3 font","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $glyphname"},{"required":"yes","param":"float $wx"},{"required":"yes","param":"float $llx"},{"required":"yes","param":"float $lly"},{"required":"yes","param":"float $urx"},{"required":"yes","param":"float $ury"}],"returns":"bool"},"PDF_begin_layer":{"desc":"Start layer","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $layer"}],"returns":"bool"},"PDF_begin_page":{"desc":"Start new page [deprecated]","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"float $width"},{"required":"yes","param":"float $height"}],"returns":"bool"},"PDF_begin_page_ext":{"desc":"Start new page","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"float $width"},{"required":"yes","param":"float $height"},{"required":"yes","param":"string $optlist"}],"returns":"bool"},"PDF_circle":{"desc":"Draw a circle","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"float $r"}],"returns":"bool"},"PDF_clip":{"desc":"Clip to current path","params":[{"required":"yes","param":"resource $p"}],"returns":"bool"},"PDF_close":{"desc":"Close pdf resource [deprecated]","params":[{"required":"yes","param":"resource $p"}],"returns":"bool"},"PDF_closepath":{"desc":"Close current path","params":[{"required":"yes","param":"resource $p"}],"returns":"bool"},"PDF_closepath_fill_stroke":{"desc":"Close, fill and stroke current path","params":[{"required":"yes","param":"resource $p"}],"returns":"bool"},"PDF_closepath_stroke":{"desc":"Close and stroke path","params":[{"required":"yes","param":"resource $p"}],"returns":"bool"},"PDF_close_image":{"desc":"Close image","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"int $image"}],"returns":"bool"},"PDF_close_pdi":{"desc":"Close the input PDF document [deprecated]","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"int $doc"}],"returns":"bool"},"PDF_close_pdi_page":{"desc":"Close the page handle","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"int $page"}],"returns":"bool"},"PDF_concat":{"desc":"Concatenate a matrix to the CTM","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $a"},{"required":"yes","param":"float $b"},{"required":"yes","param":"float $c"},{"required":"yes","param":"float $d"},{"required":"yes","param":"float $e"},{"required":"yes","param":"float $f"}],"returns":"bool"},"PDF_continue_text":{"desc":"Output text in next line","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"string $text"}],"returns":"bool"},"PDF_create_annotation":{"desc":"Create rectangular annotation","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"float $llx"},{"required":"yes","param":"float $lly"},{"required":"yes","param":"float $urx"},{"required":"yes","param":"float $ury"},{"required":"yes","param":"string $type"},{"required":"yes","param":"string $optlist"}],"returns":"bool"},"PDF_create_field":{"desc":"Create form field","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"float $llx"},{"required":"yes","param":"float $lly"},{"required":"yes","param":"float $urx"},{"required":"yes","param":"float $ury"},{"required":"yes","param":"string $name"},{"required":"yes","param":"string $type"},{"required":"yes","param":"string $optlist"}],"returns":"bool"},"PDF_create_fieldgroup":{"desc":"Create form field group","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $name"},{"required":"yes","param":"string $optlist"}],"returns":"bool"},"PDF_create_pvf":{"desc":"Create PDFlib virtual file","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $filename"},{"required":"yes","param":"string $data"},{"required":"yes","param":"string $optlist"}],"returns":"bool"},"PDF_curveto":{"desc":"Draw Bezier curve","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $x1"},{"required":"yes","param":"float $y1"},{"required":"yes","param":"float $x2"},{"required":"yes","param":"float $y2"},{"required":"yes","param":"float $x3"},{"required":"yes","param":"float $y3"}],"returns":"bool"},"PDF_delete":{"desc":"Delete PDFlib object","params":[{"required":"yes","param":"resource $pdfdoc"}],"returns":"bool"},"PDF_delete_table":{"desc":"Delete table object","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $table"},{"required":"yes","param":"string $optlist"}],"returns":"bool"},"PDF_delete_textflow":{"desc":"Delete textflow object","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $textflow"}],"returns":"bool"},"PDF_encoding_set_char":{"desc":"Add glyph name and/or Unicode value","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $encoding"},{"required":"yes","param":"int $slot"},{"required":"yes","param":"string $glyphname"},{"required":"yes","param":"int $uv"}],"returns":"bool"},"PDF_endpath":{"desc":"End current path","params":[{"required":"yes","param":"resource $p"}],"returns":"bool"},"PDF_end_document":{"desc":"Close PDF file","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $optlist"}],"returns":"bool"},"PDF_end_font":{"desc":"Terminate Type 3 font definition","params":[{"required":"yes","param":"resource $pdfdoc"}],"returns":"bool"},"PDF_end_glyph":{"desc":"Terminate glyph definition for Type 3 font","params":[{"required":"yes","param":"resource $pdfdoc"}],"returns":"bool"},"PDF_end_item":{"desc":"Close structure element or other content item","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $id"}],"returns":"bool"},"PDF_end_layer":{"desc":"Deactivate all active layers","params":[{"required":"yes","param":"resource $pdfdoc"}],"returns":"bool"},"PDF_end_page":{"desc":"Finish page","params":[{"required":"yes","param":"resource $p"}],"returns":"bool"},"PDF_end_page_ext":{"desc":"Finish page","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $optlist"}],"returns":"bool"},"PDF_end_pattern":{"desc":"Finish pattern","params":[{"required":"yes","param":"resource $p"}],"returns":"bool"},"PDF_end_template":{"desc":"Finish template","params":[{"required":"yes","param":"resource $p"}],"returns":"bool"},"PDF_fill":{"desc":"Fill current path","params":[{"required":"yes","param":"resource $p"}],"returns":"bool"},"PDF_fill_stroke":{"desc":"Fill and stroke path","params":[{"required":"yes","param":"resource $p"}],"returns":"bool"},"PDF_fit_image":{"desc":"Place image or template","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $image"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"string $optlist"}],"returns":"bool"},"PDF_fit_pdi_page":{"desc":"Place imported PDF page","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $page"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"string $optlist"}],"returns":"bool"},"PDF_fit_textline":{"desc":"Place single line of text","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $text"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"string $optlist"}],"returns":"bool"},"PDF_initgraphics":{"desc":"Reset graphic state","params":[{"required":"yes","param":"resource $p"}],"returns":"bool"},"PDF_lineto":{"desc":"Draw a line","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"}],"returns":"bool"},"PDF_moveto":{"desc":"Set current point","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"}],"returns":"bool"},"PDF_open_file":{"desc":"Create PDF file [deprecated]","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"string $filename"}],"returns":"bool"},"PDF_place_image":{"desc":"Place image on the page [deprecated]","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $image"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"float $scale"}],"returns":"bool"},"PDF_place_pdi_page":{"desc":"Place PDF page [deprecated]","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $page"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"float $sx"},{"required":"yes","param":"float $sy"}],"returns":"bool"},"PDF_rect":{"desc":"Draw rectangle","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"float $width"},{"required":"yes","param":"float $height"}],"returns":"bool"},"PDF_restore":{"desc":"Restore graphics state","params":[{"required":"yes","param":"resource $p"}],"returns":"bool"},"PDF_resume_page":{"desc":"Resume page","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $optlist"}],"returns":"bool"},"PDF_rotate":{"desc":"Rotate coordinate system","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $phi"}],"returns":"bool"},"PDF_save":{"desc":"Save graphics state","params":[{"required":"yes","param":"resource $p"}],"returns":"bool"},"PDF_scale":{"desc":"Scale coordinate system","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $sx"},{"required":"yes","param":"float $sy"}],"returns":"bool"},"PDF_setcolor":{"desc":"Set fill and stroke color","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"string $fstype"},{"required":"yes","param":"string $colorspace"},{"required":"yes","param":"float $c1"},{"required":"yes","param":"float $c2"},{"required":"yes","param":"float $c3"},{"required":"yes","param":"float $c4"}],"returns":"bool"},"PDF_setdash":{"desc":"Set simple dash pattern","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"float $b"},{"required":"yes","param":"float $w"}],"returns":"bool"},"PDF_setdashpattern":{"desc":"Set dash pattern","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $optlist"}],"returns":"bool"},"PDF_setflat":{"desc":"Set flatness","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"float $flatness"}],"returns":"bool"},"PDF_setfont":{"desc":"Set font","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $font"},{"required":"yes","param":"float $fontsize"}],"returns":"bool"},"PDF_setgray":{"desc":"Set color to gray [deprecated]","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $g"}],"returns":"bool"},"PDF_setgray_fill":{"desc":"Set fill color to gray [deprecated]","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $g"}],"returns":"bool"},"PDF_setgray_stroke":{"desc":"Set stroke color to gray [deprecated]","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $g"}],"returns":"bool"},"PDF_setlinecap":{"desc":"Set linecap parameter","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"int $linecap"}],"returns":"bool"},"PDF_setlinejoin":{"desc":"Set linejoin parameter","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"int $value"}],"returns":"bool"},"PDF_setlinewidth":{"desc":"Set line width","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $width"}],"returns":"bool"},"PDF_setmatrix":{"desc":"Set current transformation matrix","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $a"},{"required":"yes","param":"float $b"},{"required":"yes","param":"float $c"},{"required":"yes","param":"float $d"},{"required":"yes","param":"float $e"},{"required":"yes","param":"float $f"}],"returns":"bool"},"PDF_setmiterlimit":{"desc":"Set miter limit","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"float $miter"}],"returns":"bool"},"PDF_setrgbcolor":{"desc":"Set fill and stroke rgb color values [deprecated]","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $red"},{"required":"yes","param":"float $green"},{"required":"yes","param":"float $blue"}],"returns":"bool"},"PDF_setrgbcolor_fill":{"desc":"Set fill rgb color values [deprecated]","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $red"},{"required":"yes","param":"float $green"},{"required":"yes","param":"float $blue"}],"returns":"bool"},"PDF_setrgbcolor_stroke":{"desc":"Set stroke rgb color values [deprecated]","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $red"},{"required":"yes","param":"float $green"},{"required":"yes","param":"float $blue"}],"returns":"bool"},"PDF_set_border_color":{"desc":"Set border color of annotations [deprecated]","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $red"},{"required":"yes","param":"float $green"},{"required":"yes","param":"float $blue"}],"returns":"bool"},"PDF_set_border_dash":{"desc":"Set border dash style of annotations [deprecated]","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"float $black"},{"required":"yes","param":"float $white"}],"returns":"bool"},"PDF_set_border_style":{"desc":"Set border style of annotations [deprecated]","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $style"},{"required":"yes","param":"float $width"}],"returns":"bool"},"PDF_set_gstate":{"desc":"Activate graphics state object","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $gstate"}],"returns":"bool"},"PDF_set_info":{"desc":"Fill document info field","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"string $key"},{"required":"yes","param":"string $value"}],"returns":"bool"},"PDF_set_layer_dependency":{"desc":"Define relationships among layers","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $type"},{"required":"yes","param":"string $optlist"}],"returns":"bool"},"PDF_set_parameter":{"desc":"Set string parameter","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"string $key"},{"required":"yes","param":"string $value"}],"returns":"bool"},"PDF_set_text_pos":{"desc":"Set text position","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"}],"returns":"bool"},"PDF_set_value":{"desc":"Set numerical parameter","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"string $key"},{"required":"yes","param":"float $value"}],"returns":"bool"},"PDF_shfill":{"desc":"Fill area with shading","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $shading"}],"returns":"bool"},"PDF_show":{"desc":"Output text at current position","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $text"}],"returns":"bool"},"PDF_show_xy":{"desc":"Output text at given position","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"string $text"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"}],"returns":"bool"},"PDF_skew":{"desc":"Skew the coordinate system","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $alpha"},{"required":"yes","param":"float $beta"}],"returns":"bool"},"PDF_stroke":{"desc":"Stroke path","params":[{"required":"yes","param":"resource $p"}],"returns":"bool"},"PDF_suspend_page":{"desc":"Suspend page","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $optlist"}],"returns":"bool"},"PDF_translate":{"desc":"Set origin of coordinate system","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"float $tx"},{"required":"yes","param":"float $ty"}],"returns":"bool"},"pg_cancel_query":{"desc":"Cancel an asynchronous query","params":[{"required":"yes","param":"resource $connection"}],"returns":"bool"},"pg_close":{"desc":"Closes a PostgreSQL connection","params":[{"required":"no","param":"resource $connection = &#039;&#039;"}],"returns":"bool"},"pg_connection_busy":{"desc":"Get connection is busy or not","params":[{"required":"yes","param":"resource $connection"}],"returns":"bool"},"pg_connection_reset":{"desc":"Reset connection (reconnect)","params":[{"required":"yes","param":"resource $connection"}],"returns":"bool"},"pg_copy_from":{"desc":"Insert records into a table from an array","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $table_name"},{"required":"yes","param":"array $rows"},{"required":"no","param":"string $delimiter = &#039;&#039;"},{"required":"no","param":"string $null_as = &#039;&#039;"}],"returns":"bool"},"pg_end_copy":{"desc":"Sync with PostgreSQL backend","params":[{"required":"no","param":"resource $connection = &#039;&#039;"}],"returns":"bool"},"pg_lo_close":{"desc":"Close a large object","params":[{"required":"yes","param":"resource $large_object"}],"returns":"bool"},"pg_lo_export":{"desc":"Export a large object to file","params":[{"required":"no","param":"resource $connection = &#039;&#039;"},{"required":"yes","param":"int $oid"},{"required":"yes","param":"string $pathname"}],"returns":"bool"},"pg_lo_seek":{"desc":"Seeks position within a large object","params":[{"required":"yes","param":"resource $large_object"},{"required":"yes","param":"int $offset"},{"required":"no","param":"int $whence = PGSQL_SEEK_CUR"}],"returns":"bool"},"pg_lo_unlink":{"desc":"Delete a large object","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"int $oid"}],"returns":"bool"},"pg_ping":{"desc":"Ping database connection","params":[{"required":"no","param":"resource $connection = &#039;&#039;"}],"returns":"bool"},"pg_put_line":{"desc":"Send a NULL-terminated string to PostgreSQL backend","params":[{"required":"no","param":"resource $connection = &#039;&#039;"},{"required":"yes","param":"string $data"}],"returns":"bool"},"pg_result_seek":{"desc":"Set internal row offset in result resource","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $offset"}],"returns":"bool"},"pg_send_execute":{"desc":"Sends a request to execute a prepared statement with given parameters, without waiting for the result(s).","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $stmtname"},{"required":"yes","param":"array $params"}],"returns":"bool"},"pg_send_prepare":{"desc":"Sends a request to create a prepared statement with the given parameters, without waiting for completion.","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $stmtname"},{"required":"yes","param":"string $query"}],"returns":"bool"},"pg_send_query":{"desc":"Sends asynchronous query","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $query"}],"returns":"bool"},"pg_send_query_params":{"desc":"Submits a command and separate parameters to the server without waiting for the result(s).","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $query"},{"required":"yes","param":"array $params"}],"returns":"bool"},"pg_trace":{"desc":"Enable tracing a PostgreSQL connection","params":[{"required":"yes","param":"string $pathname"},{"required":"no","param":"string $mode = &quot;w&quot;"},{"required":"no","param":"resource $connection = &#039;&#039;"}],"returns":"bool"},"pg_untrace":{"desc":"Disable tracing of a PostgreSQL connection","params":[{"required":"no","param":"resource $connection = &#039;&#039;"}],"returns":"bool"},"phpcredits":{"desc":"Prints out the credits for PHP","params":[{"required":"no","param":"int $flag = CREDITS_ALL"}],"returns":"bool"},"phpinfo":{"desc":"Outputs information about PHP&#039;s configuration","params":[{"required":"no","param":"int $what = INFO_ALL"}],"returns":"bool"},"php_check_syntax":{"desc":"Check the PHP syntax of (and execute) the specified file","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"string $error_message = &#039;&#039;"}],"returns":"bool"},"png2wbmp":{"desc":"Convert PNG image file to WBMP image file","params":[{"required":"yes","param":"string $pngname"},{"required":"yes","param":"string $wbmpname"},{"required":"yes","param":"int $dest_height"},{"required":"yes","param":"int $dest_width"},{"required":"yes","param":"int $threshold"}],"returns":"bool"},"posix_access":{"desc":"Determine accessibility of a file","params":[{"required":"yes","param":"string $file"},{"required":"no","param":"int $mode = POSIX_F_OK"}],"returns":"bool"},"posix_initgroups":{"desc":"Calculate the group access list","params":[{"required":"yes","param":"string $name"},{"required":"yes","param":"int $base_group_id"}],"returns":"bool"},"posix_isatty":{"desc":"Determine if a file descriptor is an interactive terminal","params":[{"required":"yes","param":"int $fd"}],"returns":"bool"},"posix_kill":{"desc":"Send a signal to a process","params":[{"required":"yes","param":"int $pid"},{"required":"yes","param":"int $sig"}],"returns":"bool"},"posix_mkfifo":{"desc":"Create a fifo special file (a named pipe)","params":[{"required":"yes","param":"string $pathname"},{"required":"yes","param":"int $mode"}],"returns":"bool"},"posix_mknod":{"desc":"Create a special or ordinary file (POSIX.1)","params":[{"required":"yes","param":"string $pathname"},{"required":"yes","param":"int $mode"},{"required":"no","param":"int $major = &#039;&#039;"},{"required":"no","param":"int $minor = &#039;&#039;"}],"returns":"bool"},"posix_setegid":{"desc":"Set the effective GID of the current process","params":[{"required":"yes","param":"int $gid"}],"returns":"bool"},"posix_seteuid":{"desc":"Set the effective UID of the current process","params":[{"required":"yes","param":"int $uid"}],"returns":"bool"},"posix_setgid":{"desc":"Set the GID of the current process","params":[{"required":"yes","param":"int $gid"}],"returns":"bool"},"posix_setpgid":{"desc":"Set process group id for job control","params":[{"required":"yes","param":"int $pid"},{"required":"yes","param":"int $pgid"}],"returns":"bool"},"posix_setuid":{"desc":"Set the UID of the current process","params":[{"required":"yes","param":"int $uid"}],"returns":"bool"},"printer_delete_dc":{"desc":"Delete a device context","params":[{"required":"yes","param":"resource $printer_handle"}],"returns":"bool"},"printer_draw_bmp":{"desc":"Draw a bmp","params":[{"required":"yes","param":"resource $printer_handle"},{"required":"yes","param":"string $filename"},{"required":"yes","param":"int $x"},{"required":"yes","param":"int $y"},{"required":"no","param":"int $width = &#039;&#039;"},{"required":"yes","param":"int $height"}],"returns":"bool"},"printer_end_doc":{"desc":"Close document","params":[{"required":"yes","param":"resource $printer_handle"}],"returns":"bool"},"printer_end_page":{"desc":"Close active page","params":[{"required":"yes","param":"resource $printer_handle"}],"returns":"bool"},"printer_set_option":{"desc":"Configure the printer connection","params":[{"required":"yes","param":"resource $printer_handle"},{"required":"yes","param":"int $option"},{"required":"yes","param":"mixed $value"}],"returns":"bool"},"printer_start_doc":{"desc":"Start a new document","params":[{"required":"yes","param":"resource $printer_handle"},{"required":"no","param":"string $document = &#039;&#039;"}],"returns":"bool"},"printer_start_page":{"desc":"Start a new page","params":[{"required":"yes","param":"resource $printer_handle"}],"returns":"bool"},"printer_write":{"desc":"Write data to the printer","params":[{"required":"yes","param":"resource $printer_handle"},{"required":"yes","param":"string $content"}],"returns":"bool"},"proc_nice":{"desc":"Change the priority of the current process","params":[{"required":"yes","param":"int $increment"}],"returns":"bool"},"proc_terminate":{"desc":"Kills a process opened by proc_open","params":[{"required":"yes","param":"resource $process"},{"required":"no","param":"int $signal = 15"}],"returns":"bool"},"property_exists":{"desc":"Checks if the object or class has a property","params":[{"required":"yes","param":"mixed $class"},{"required":"yes","param":"string $property"}],"returns":"bool"},"pspell_add_to_personal":{"desc":"Add the word to a personal wordlist","params":[{"required":"yes","param":"int $dictionary_link"},{"required":"yes","param":"string $word"}],"returns":"bool"},"pspell_add_to_session":{"desc":"Add the word to the wordlist in the current session","params":[{"required":"yes","param":"int $dictionary_link"},{"required":"yes","param":"string $word"}],"returns":"bool"},"pspell_check":{"desc":"Check a word","params":[{"required":"yes","param":"int $dictionary_link"},{"required":"yes","param":"string $word"}],"returns":"bool"},"pspell_clear_session":{"desc":"Clear the current session","params":[{"required":"yes","param":"int $dictionary_link"}],"returns":"bool"},"pspell_config_data_dir":{"desc":"location of language data files","params":[{"required":"yes","param":"int $conf"},{"required":"yes","param":"string $directory"}],"returns":"bool"},"pspell_config_dict_dir":{"desc":"Location of the main word list","params":[{"required":"yes","param":"int $conf"},{"required":"yes","param":"string $directory"}],"returns":"bool"},"pspell_config_ignore":{"desc":"Ignore words less than N characters long","params":[{"required":"yes","param":"int $dictionary_link"},{"required":"yes","param":"int $n"}],"returns":"bool"},"pspell_config_mode":{"desc":"Change the mode number of suggestions returned","params":[{"required":"yes","param":"int $dictionary_link"},{"required":"yes","param":"int $mode"}],"returns":"bool"},"pspell_config_personal":{"desc":"Set a file that contains personal wordlist","params":[{"required":"yes","param":"int $dictionary_link"},{"required":"yes","param":"string $file"}],"returns":"bool"},"pspell_config_repl":{"desc":"Set a file that contains replacement pairs","params":[{"required":"yes","param":"int $dictionary_link"},{"required":"yes","param":"string $file"}],"returns":"bool"},"pspell_config_runtogether":{"desc":"Consider run-together words as valid compounds","params":[{"required":"yes","param":"int $dictionary_link"},{"required":"yes","param":"bool $flag"}],"returns":"bool"},"pspell_config_save_repl":{"desc":"Determine whether to save a replacement pairs list along with the wordlist","params":[{"required":"yes","param":"int $dictionary_link"},{"required":"yes","param":"bool $flag"}],"returns":"bool"},"pspell_save_wordlist":{"desc":"Save the personal wordlist to a file","params":[{"required":"yes","param":"int $dictionary_link"}],"returns":"bool"},"pspell_store_replacement":{"desc":"Store a replacement pair for a word","params":[{"required":"yes","param":"int $dictionary_link"},{"required":"yes","param":"string $misspelled"},{"required":"yes","param":"string $correct"}],"returns":"bool"},"ps_add_launchlink":{"desc":"Adds link which launches file","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $llx"},{"required":"yes","param":"float $lly"},{"required":"yes","param":"float $urx"},{"required":"yes","param":"float $ury"},{"required":"yes","param":"string $filename"}],"returns":"bool"},"ps_add_locallink":{"desc":"Adds link to a page in the same document","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $llx"},{"required":"yes","param":"float $lly"},{"required":"yes","param":"float $urx"},{"required":"yes","param":"float $ury"},{"required":"yes","param":"int $page"},{"required":"yes","param":"string $dest"}],"returns":"bool"},"ps_add_note":{"desc":"Adds note to current page","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $llx"},{"required":"yes","param":"float $lly"},{"required":"yes","param":"float $urx"},{"required":"yes","param":"float $ury"},{"required":"yes","param":"string $contents"},{"required":"yes","param":"string $title"},{"required":"yes","param":"string $icon"},{"required":"yes","param":"int $open"}],"returns":"bool"},"ps_add_pdflink":{"desc":"Adds link to a page in a second pdf document","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $llx"},{"required":"yes","param":"float $lly"},{"required":"yes","param":"float $urx"},{"required":"yes","param":"float $ury"},{"required":"yes","param":"string $filename"},{"required":"yes","param":"int $page"},{"required":"yes","param":"string $dest"}],"returns":"bool"},"ps_add_weblink":{"desc":"Adds link to a web location","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $llx"},{"required":"yes","param":"float $lly"},{"required":"yes","param":"float $urx"},{"required":"yes","param":"float $ury"},{"required":"yes","param":"string $url"}],"returns":"bool"},"ps_arc":{"desc":"Draws an arc counterclockwise","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"float $radius"},{"required":"yes","param":"float $alpha"},{"required":"yes","param":"float $beta"}],"returns":"bool"},"ps_arcn":{"desc":"Draws an arc clockwise","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"float $radius"},{"required":"yes","param":"float $alpha"},{"required":"yes","param":"float $beta"}],"returns":"bool"},"ps_begin_page":{"desc":"Start a new page","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $width"},{"required":"yes","param":"float $height"}],"returns":"bool"},"ps_circle":{"desc":"Draws a circle","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"float $radius"}],"returns":"bool"},"ps_clip":{"desc":"Clips drawing to current path","params":[{"required":"yes","param":"resource $psdoc"}],"returns":"bool"},"ps_close":{"desc":"Closes a PostScript document","params":[{"required":"yes","param":"resource $psdoc"}],"returns":"bool"},"ps_closepath":{"desc":"Closes path","params":[{"required":"yes","param":"resource $psdoc"}],"returns":"bool"},"ps_closepath_stroke":{"desc":"Closes and strokes path","params":[{"required":"yes","param":"resource $psdoc"}],"returns":"bool"},"ps_continue_text":{"desc":"Continue text in next line","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $text"}],"returns":"bool"},"ps_curveto":{"desc":"Draws a curve","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $x1"},{"required":"yes","param":"float $y1"},{"required":"yes","param":"float $x2"},{"required":"yes","param":"float $y2"},{"required":"yes","param":"float $x3"},{"required":"yes","param":"float $y3"}],"returns":"bool"},"ps_delete":{"desc":"Deletes all resources of a PostScript document","params":[{"required":"yes","param":"resource $psdoc"}],"returns":"bool"},"ps_end_page":{"desc":"End a page","params":[{"required":"yes","param":"resource $psdoc"}],"returns":"bool"},"ps_end_pattern":{"desc":"End a pattern","params":[{"required":"yes","param":"resource $psdoc"}],"returns":"bool"},"ps_end_template":{"desc":"End a template","params":[{"required":"yes","param":"resource $psdoc"}],"returns":"bool"},"ps_fill":{"desc":"Fills the current path","params":[{"required":"yes","param":"resource $psdoc"}],"returns":"bool"},"ps_fill_stroke":{"desc":"Fills and strokes the current path","params":[{"required":"yes","param":"resource $psdoc"}],"returns":"bool"},"ps_include_file":{"desc":"Reads an external file with raw PostScript code","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $file"}],"returns":"bool"},"ps_lineto":{"desc":"Draws a line","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"}],"returns":"bool"},"ps_moveto":{"desc":"Sets current point","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"}],"returns":"bool"},"ps_open_file":{"desc":"Opens a file for output","params":[{"required":"yes","param":"resource $psdoc"},{"required":"no","param":"string $filename = &#039;&#039;"}],"returns":"bool"},"ps_place_image":{"desc":"Places image on the page","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"int $imageid"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"float $scale"}],"returns":"bool"},"ps_rect":{"desc":"Draws a rectangle","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"float $width"},{"required":"yes","param":"float $height"}],"returns":"bool"},"ps_restore":{"desc":"Restore previously save context","params":[{"required":"yes","param":"resource $psdoc"}],"returns":"bool"},"ps_rotate":{"desc":"Sets rotation factor","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $rot"}],"returns":"bool"},"ps_save":{"desc":"Save current context","params":[{"required":"yes","param":"resource $psdoc"}],"returns":"bool"},"ps_scale":{"desc":"Sets scaling factor","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"}],"returns":"bool"},"ps_setcolor":{"desc":"Sets current color","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $type"},{"required":"yes","param":"string $colorspace"},{"required":"yes","param":"float $c1"},{"required":"yes","param":"float $c2"},{"required":"yes","param":"float $c3"},{"required":"yes","param":"float $c4"}],"returns":"bool"},"ps_setdash":{"desc":"Sets appearance of a dashed line","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $on"},{"required":"yes","param":"float $off"}],"returns":"bool"},"ps_setflat":{"desc":"Sets flatness","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $value"}],"returns":"bool"},"ps_setfont":{"desc":"Sets font to use for following output","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"int $fontid"},{"required":"yes","param":"float $size"}],"returns":"bool"},"ps_setgray":{"desc":"Sets gray value","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $gray"}],"returns":"bool"},"ps_setlinecap":{"desc":"Sets appearance of line ends","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"int $type"}],"returns":"bool"},"ps_setlinejoin":{"desc":"Sets how contected lines are joined","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"int $type"}],"returns":"bool"},"ps_setlinewidth":{"desc":"Sets width of a line","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $width"}],"returns":"bool"},"ps_setmiterlimit":{"desc":"Sets the miter limit","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $value"}],"returns":"bool"},"ps_setoverprintmode":{"desc":"Sets overprint mode","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"int $mode"}],"returns":"bool"},"ps_setpolydash":{"desc":"Sets appearance of a dashed line","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $arr"}],"returns":"bool"},"ps_set_border_color":{"desc":"Sets color of border for annotations","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $red"},{"required":"yes","param":"float $green"},{"required":"yes","param":"float $blue"}],"returns":"bool"},"ps_set_border_dash":{"desc":"Sets length of dashes for border of annotations","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $black"},{"required":"yes","param":"float $white"}],"returns":"bool"},"ps_set_border_style":{"desc":"Sets border style of annotations","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $style"},{"required":"yes","param":"float $width"}],"returns":"bool"},"ps_set_info":{"desc":"Sets information fields of document","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"string $key"},{"required":"yes","param":"string $val"}],"returns":"bool"},"ps_set_parameter":{"desc":"Sets certain parameters","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $name"},{"required":"yes","param":"string $value"}],"returns":"bool"},"ps_set_text_pos":{"desc":"Sets position for text output","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"}],"returns":"bool"},"ps_set_value":{"desc":"Sets certain values","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $name"},{"required":"yes","param":"float $value"}],"returns":"bool"},"ps_shfill":{"desc":"Fills an area with a shading","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"int $shadingid"}],"returns":"bool"},"ps_show":{"desc":"Output text","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $text"}],"returns":"bool"},"ps_show2":{"desc":"Output a text at current position","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $text"},{"required":"yes","param":"int $len"}],"returns":"bool"},"ps_show_xy":{"desc":"Output text at given position","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $text"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"}],"returns":"bool"},"ps_show_xy2":{"desc":"Output text at position","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $text"},{"required":"yes","param":"int $len"},{"required":"yes","param":"float $xcoor"},{"required":"yes","param":"float $ycoor"}],"returns":"bool"},"ps_stroke":{"desc":"Draws the current path","params":[{"required":"yes","param":"resource $psdoc"}],"returns":"bool"},"ps_symbol":{"desc":"Output a glyph","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"int $ord"}],"returns":"bool"},"ps_translate":{"desc":"Sets translation","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"}],"returns":"bool"},"putenv":{"desc":"Sets the value of an environment variable","params":[{"required":"yes","param":"string $setting"}],"returns":"bool"},"px_close":{"desc":"Closes a paradox database","params":[{"required":"yes","param":"resource $pxdoc"}],"returns":"bool"},"px_create_fp":{"desc":"Create a new paradox database","params":[{"required":"yes","param":"resource $pxdoc"},{"required":"yes","param":"resource $file"},{"required":"yes","param":"array $fielddesc"}],"returns":"bool"},"px_delete":{"desc":"Deletes resource of paradox database","params":[{"required":"yes","param":"resource $pxdoc"}],"returns":"bool"},"px_delete_record":{"desc":"Deletes record from paradox database","params":[{"required":"yes","param":"resource $pxdoc"},{"required":"yes","param":"int $num"}],"returns":"bool"},"px_open_fp":{"desc":"Open paradox database","params":[{"required":"yes","param":"resource $pxdoc"},{"required":"yes","param":"resource $file"}],"returns":"bool"},"px_put_record":{"desc":"Stores record into paradox database","params":[{"required":"yes","param":"resource $pxdoc"},{"required":"yes","param":"array $record"},{"required":"no","param":"int $recpos = -1"}],"returns":"bool"},"px_set_blob_file":{"desc":"Sets the file where blobs are read from","params":[{"required":"yes","param":"resource $pxdoc"},{"required":"yes","param":"string $filename"}],"returns":"bool"},"px_set_parameter":{"desc":"Sets a parameter","params":[{"required":"yes","param":"resource $pxdoc"},{"required":"yes","param":"string $name"},{"required":"yes","param":"string $value"}],"returns":"bool"},"px_set_targetencoding":{"desc":"Sets the encoding for character fields (deprecated)","params":[{"required":"yes","param":"resource $pxdoc"},{"required":"yes","param":"string $encoding"}],"returns":"bool"},"px_set_value":{"desc":"Sets a value","params":[{"required":"yes","param":"resource $pxdoc"},{"required":"yes","param":"string $name"},{"required":"yes","param":"float $value"}],"returns":"bool"},"px_update_record":{"desc":"Updates record in paradox database","params":[{"required":"yes","param":"resource $pxdoc"},{"required":"yes","param":"array $data"},{"required":"yes","param":"int $num"}],"returns":"bool"},"radius_add_server":{"desc":"Adds a server","params":[{"required":"yes","param":"resource $radius_handle"},{"required":"yes","param":"string $hostname"},{"required":"yes","param":"int $port"},{"required":"yes","param":"string $secret"},{"required":"yes","param":"int $timeout"},{"required":"yes","param":"int $max_tries"}],"returns":"bool"},"radius_close":{"desc":"Frees all ressources","params":[{"required":"yes","param":"resource $radius_handle"}],"returns":"bool"},"radius_config":{"desc":"Causes the library to read the given configuration file","params":[{"required":"yes","param":"resource $radius_handle"},{"required":"yes","param":"string $file"}],"returns":"bool"},"radius_create_request":{"desc":"Create accounting or authentication request","params":[{"required":"yes","param":"resource $radius_handle"},{"required":"yes","param":"int $type"}],"returns":"bool"},"radius_put_addr":{"desc":"Attaches an IP-Address attribute","params":[{"required":"yes","param":"resource $radius_handle"},{"required":"yes","param":"int $type"},{"required":"yes","param":"string $addr"}],"returns":"bool"},"radius_put_attr":{"desc":"Attaches a binary attribute","params":[{"required":"yes","param":"resource $radius_handle"},{"required":"yes","param":"int $type"},{"required":"yes","param":"string $value"}],"returns":"bool"},"radius_put_int":{"desc":"Attaches an integer attribute","params":[{"required":"yes","param":"resource $radius_handle"},{"required":"yes","param":"int $type"},{"required":"yes","param":"int $value"}],"returns":"bool"},"radius_put_string":{"desc":"Attaches a string attribute","params":[{"required":"yes","param":"resource $radius_handle"},{"required":"yes","param":"int $type"},{"required":"yes","param":"string $value"}],"returns":"bool"},"radius_put_vendor_addr":{"desc":"Attaches a vendor specific IP-Address attribute","params":[{"required":"yes","param":"resource $radius_handle"},{"required":"yes","param":"int $vendor"},{"required":"yes","param":"int $type"},{"required":"yes","param":"string $addr"}],"returns":"bool"},"radius_put_vendor_attr":{"desc":"Attaches a vendor specific binary attribute","params":[{"required":"yes","param":"resource $radius_handle"},{"required":"yes","param":"int $vendor"},{"required":"yes","param":"int $type"},{"required":"yes","param":"string $value"}],"returns":"bool"},"radius_put_vendor_int":{"desc":"Attaches a vendor specific integer attribute","params":[{"required":"yes","param":"resource $radius_handle"},{"required":"yes","param":"int $vendor"},{"required":"yes","param":"int $type"},{"required":"yes","param":"int $value"}],"returns":"bool"},"radius_put_vendor_string":{"desc":"Attaches a vendor specific string attribute","params":[{"required":"yes","param":"resource $radius_handle"},{"required":"yes","param":"int $vendor"},{"required":"yes","param":"int $type"},{"required":"yes","param":"string $value"}],"returns":"bool"},"rar_broken_is":{"desc":"Test whether an archive is broken (incomplete)","params":[{"required":"yes","param":"RarArchive $rarfile"}],"returns":"bool"},"rar_close":{"desc":"Close RAR archive and free all resources","params":[{"required":"yes","param":"RarArchive $rarfile"}],"returns":"bool"},"rar_solid_is":{"desc":"Check whether the RAR archive is solid","params":[{"required":"yes","param":"RarArchive $rarfile"}],"returns":"bool"},"readline_add_history":{"desc":"Adds a line to the history","params":[{"required":"yes","param":"string $line"}],"returns":"bool"},"readline_callback_handler_install":{"desc":"Initializes the readline callback interface and terminal, prints the prompt and returns immediately","params":[{"required":"yes","param":"string $prompt"},{"required":"yes","param":"callback $callback"}],"returns":"bool"},"readline_callback_handler_remove":{"desc":"Removes a previously installed callback handler and restores terminal settings","params":[],"returns":"bool"},"readline_clear_history":{"desc":"Clears the history","params":[],"returns":"bool"},"readline_completion_function":{"desc":"Registers a completion function","params":[{"required":"yes","param":"callback $function"}],"returns":"bool"},"readline_read_history":{"desc":"Reads the history","params":[{"required":"no","param":"string $filename = &#039;&#039;"}],"returns":"bool"},"readline_write_history":{"desc":"Writes the history","params":[{"required":"no","param":"string $filename = &#039;&#039;"}],"returns":"bool"},"recode_file":{"desc":"Recode from file to file according to recode request","params":[{"required":"yes","param":"string $request"},{"required":"yes","param":"resource $input"},{"required":"yes","param":"resource $output"}],"returns":"bool"},"register_tick_function":{"desc":"Register a function for execution on each tick","params":[{"required":"yes","param":"callback $function"},{"required":"no","param":"mixed $arg = &#039;&#039;"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"bool"},"rename":{"desc":"Renames a file or directory","params":[{"required":"yes","param":"string $oldname"},{"required":"yes","param":"string $newname"},{"required":"no","param":"resource $context = &#039;&#039;"}],"returns":"bool"},"rename_function":{"desc":"Renames orig_name to new_name in the global function table","params":[{"required":"yes","param":"string $original_name"},{"required":"yes","param":"string $new_name"}],"returns":"bool"},"restore_error_handler":{"desc":"Restores the previous error handler function","params":[],"returns":"bool"},"restore_exception_handler":{"desc":"Restores the previously defined exception handler function","params":[],"returns":"bool"},"rewind":{"desc":"Rewind the position of a file pointer","params":[{"required":"yes","param":"resource $handle"}],"returns":"bool"},"rmdir":{"desc":"Removes directory","params":[{"required":"yes","param":"string $dirname"},{"required":"no","param":"resource $context = &#039;&#039;"}],"returns":"bool"},"rpm_close":{"desc":"Closes an RPM file","params":[{"required":"yes","param":"resource $rpmr"}],"returns":"bool"},"rpm_is_valid":{"desc":"Tests a filename for validity as an RPM file","params":[{"required":"yes","param":"string $filename"}],"returns":"bool"},"rrd_create":{"desc":"Creates rrd database file","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"array $options"}],"returns":"bool"},"rrd_restore":{"desc":"Restores the RRD file from XML dump.","params":[{"required":"yes","param":"string $xml_file"},{"required":"yes","param":"string $rrd_file"},{"required":"no","param":"array $options = &#039;&#039;"}],"returns":"bool"},"rrd_tune":{"desc":"Tunes some RRD database file header options.","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"array $options"}],"returns":"bool"},"rrd_update":{"desc":"Updates the RRD database.","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"array $options"}],"returns":"bool"},"rsort":{"desc":"Sort an array in reverse order","params":[{"required":"yes","param":"array $array"},{"required":"no","param":"int $sort_flags = SORT_REGULAR"}],"returns":"bool"},"runkit_class_adopt":{"desc":"Convert a base class to an inherited class, add ancestral methods when appropriate","params":[{"required":"yes","param":"string $classname"},{"required":"yes","param":"string $parentname"}],"returns":"bool"},"runkit_class_emancipate":{"desc":"Convert an inherited class to a base class, removes any method whose scope is ancestral","params":[{"required":"yes","param":"string $classname"}],"returns":"bool"},"runkit_constant_add":{"desc":"Similar to define(), but allows defining in class definitions as well","params":[{"required":"yes","param":"string $constname"},{"required":"yes","param":"mixed $value"}],"returns":"bool"},"runkit_constant_redefine":{"desc":"Redefine an already defined constant","params":[{"required":"yes","param":"string $constname"},{"required":"yes","param":"mixed $newvalue"}],"returns":"bool"},"runkit_constant_remove":{"desc":"Remove/Delete an already defined constant","params":[{"required":"yes","param":"string $constname"}],"returns":"bool"},"runkit_function_add":{"desc":"Add a new function, similar to create_function","params":[{"required":"yes","param":"string $funcname"},{"required":"yes","param":"string $arglist"},{"required":"yes","param":"string $code"}],"returns":"bool"},"runkit_function_copy":{"desc":"Copy a function to a new function name","params":[{"required":"yes","param":"string $funcname"},{"required":"yes","param":"string $targetname"}],"returns":"bool"},"runkit_function_redefine":{"desc":"Replace a function definition with a new implementation","params":[{"required":"yes","param":"string $funcname"},{"required":"yes","param":"string $arglist"},{"required":"yes","param":"string $code"}],"returns":"bool"},"runkit_function_remove":{"desc":"Remove a function definition","params":[{"required":"yes","param":"string $funcname"}],"returns":"bool"},"runkit_function_rename":{"desc":"Change a function&#039;s name","params":[{"required":"yes","param":"string $funcname"},{"required":"yes","param":"string $newname"}],"returns":"bool"},"runkit_import":{"desc":"Process a PHP file importing function and class definitions, overwriting where appropriate","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"int $flags = RUNKIT_IMPORT_CLASS_METHODS"}],"returns":"bool"},"runkit_lint":{"desc":"Check the PHP syntax of the specified php code","params":[{"required":"yes","param":"string $code"}],"returns":"bool"},"runkit_lint_file":{"desc":"Check the PHP syntax of the specified file","params":[{"required":"yes","param":"string $filename"}],"returns":"bool"},"runkit_method_add":{"desc":"Dynamically adds a new method to a given class","params":[{"required":"yes","param":"string $classname"},{"required":"yes","param":"string $methodname"},{"required":"yes","param":"string $args"},{"required":"yes","param":"string $code"},{"required":"no","param":"int $flags = RUNKIT_ACC_PUBLIC"}],"returns":"bool"},"runkit_method_copy":{"desc":"Copies a method from class to another","params":[{"required":"yes","param":"string $dClass"},{"required":"yes","param":"string $dMethod"},{"required":"yes","param":"string $sClass"},{"required":"no","param":"string $sMethod = &#039;&#039;"}],"returns":"bool"},"runkit_method_redefine":{"desc":"Dynamically changes the code of the given method","params":[{"required":"yes","param":"string $classname"},{"required":"yes","param":"string $methodname"},{"required":"yes","param":"string $args"},{"required":"yes","param":"string $code"},{"required":"no","param":"int $flags = RUNKIT_ACC_PUBLIC"}],"returns":"bool"},"runkit_method_remove":{"desc":"Dynamically removes the given method","params":[{"required":"yes","param":"string $classname"},{"required":"yes","param":"string $methodname"}],"returns":"bool"},"runkit_method_rename":{"desc":"Dynamically changes the name of the given method","params":[{"required":"yes","param":"string $classname"},{"required":"yes","param":"string $methodname"},{"required":"yes","param":"string $newname"}],"returns":"bool"},"runkit_return_value_used":{"desc":"Determines if the current functions return value will be used","params":[],"returns":"bool"},"sem_acquire":{"desc":"Acquire a semaphore","params":[{"required":"yes","param":"resource $sem_identifier"}],"returns":"bool"},"sem_release":{"desc":"Release a semaphore","params":[{"required":"yes","param":"resource $sem_identifier"}],"returns":"bool"},"sem_remove":{"desc":"Remove a semaphore","params":[{"required":"yes","param":"resource $sem_identifier"}],"returns":"bool"},"session_decode":{"desc":"Decodes session data from a string","params":[{"required":"yes","param":"string $data"}],"returns":"bool"},"session_destroy":{"desc":"Destroys all data registered to a session","params":[],"returns":"bool"},"session_is_registered":{"desc":"Find out whether a global variable is registered in a session","params":[{"required":"yes","param":"string $name"}],"returns":"bool"},"session_pgsql_add_error":{"desc":"Increments error counts and sets last error message","params":[{"required":"yes","param":"int $error_level"},{"required":"no","param":"string $error_message = &#039;&#039;"}],"returns":"bool"},"session_pgsql_reset":{"desc":"Reset connection to session database servers","params":[],"returns":"bool"},"session_pgsql_set_field":{"desc":"Set custom field value","params":[{"required":"yes","param":"string $value"}],"returns":"bool"},"session_regenerate_id":{"desc":"Update the current session id with a newly generated one","params":[{"required":"no","param":"bool $delete_old_session = false"}],"returns":"bool"},"session_register":{"desc":"Register one or more global variables with the current session","params":[{"required":"yes","param":"mixed $name"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"bool"},"session_set_save_handler":{"desc":"Sets user-level session storage functions","params":[{"required":"yes","param":"callback $open"},{"required":"yes","param":"callback $close"},{"required":"yes","param":"callback $read"},{"required":"yes","param":"callback $write"},{"required":"yes","param":"callback $destroy"},{"required":"yes","param":"callback $gc"}],"returns":"bool"},"session_start":{"desc":"Initialize session data","params":[],"returns":"bool"},"session_unregister":{"desc":"Unregister a global variable from the current session","params":[{"required":"yes","param":"string $name"}],"returns":"bool"},"setcookie":{"desc":"Send a cookie","params":[{"required":"yes","param":"string $name"},{"required":"no","param":"string $value = &#039;&#039;"},{"required":"no","param":"int $expire = &#039;&#039;"},{"required":"no","param":"string $path = &#039;&#039;"},{"required":"no","param":"string $domain = &#039;&#039;"},{"required":"no","param":"bool $secure = false"},{"required":"no","param":"bool $httponly = false"}],"returns":"bool"},"setrawcookie":{"desc":"Send a cookie without urlencoding the cookie value","params":[{"required":"yes","param":"string $name"},{"required":"no","param":"string $value = &#039;&#039;"},{"required":"no","param":"int $expire = &#039;&#039;"},{"required":"no","param":"string $path = &#039;&#039;"},{"required":"no","param":"string $domain = &#039;&#039;"},{"required":"no","param":"bool $secure = false"},{"required":"no","param":"bool $httponly = false"}],"returns":"bool"},"setthreadtitle":{"desc":"Set the thread title","params":[{"required":"yes","param":"string $title"}],"returns":"bool"},"settype":{"desc":"Set the type of a variable","params":[{"required":"yes","param":"mixed $var"},{"required":"yes","param":"string $type"}],"returns":"bool"},"set_magic_quotes_runtime":{"desc":"Sets the current active configuration setting of magic_quotes_runtime","params":[{"required":"yes","param":"bool $new_setting"}],"returns":"bool"},"shmop_delete":{"desc":"Delete shared memory block","params":[{"required":"yes","param":"int $shmid"}],"returns":"bool"},"shm_detach":{"desc":"Disconnects from shared memory segment","params":[{"required":"yes","param":"resource $shm_identifier"}],"returns":"bool"},"shm_has_var":{"desc":"Check whether a specific entry exists","params":[{"required":"yes","param":"resource $shm_identifier"},{"required":"yes","param":"int $variable_key"}],"returns":"bool"},"shm_put_var":{"desc":"Inserts or updates a variable in shared memory","params":[{"required":"yes","param":"resource $shm_identifier"},{"required":"yes","param":"int $variable_key"},{"required":"yes","param":"mixed $variable"}],"returns":"bool"},"shm_remove":{"desc":"Removes shared memory from Unix systems","params":[{"required":"yes","param":"resource $shm_identifier"}],"returns":"bool"},"shm_remove_var":{"desc":"Removes a variable from shared memory","params":[{"required":"yes","param":"resource $shm_identifier"},{"required":"yes","param":"int $variable_key"}],"returns":"bool"},"shuffle":{"desc":"Shuffle an array","params":[{"required":"yes","param":"array $array"}],"returns":"bool"},"snmp2_set":{"desc":"Set the value of an SNMP object","params":[{"required":"yes","param":"string $host"},{"required":"yes","param":"string $community"},{"required":"yes","param":"string $object_id"},{"required":"yes","param":"string $type"},{"required":"yes","param":"string $value"},{"required":"no","param":"string $timeout = 1000000"},{"required":"no","param":"string $retries = 5"}],"returns":"bool"},"snmp3_set":{"desc":"Description","params":[{"required":"yes","param":"string $host"},{"required":"yes","param":"string $sec_name"},{"required":"yes","param":"string $sec_level"},{"required":"yes","param":"string $auth_protocol"},{"required":"yes","param":"string $auth_passphrase"},{"required":"yes","param":"string $priv_protocol"},{"required":"yes","param":"string $priv_passphrase"},{"required":"yes","param":"string $object_id"},{"required":"yes","param":"string $type"},{"required":"yes","param":"string $value"},{"required":"no","param":"string $timeout = 1000000"},{"required":"no","param":"string $retries = 5"}],"returns":"bool"},"snmpset":{"desc":"Set the value of an SNMP object","params":[{"required":"yes","param":"string $host"},{"required":"yes","param":"string $community"},{"required":"yes","param":"string $object_id"},{"required":"yes","param":"string $type"},{"required":"yes","param":"mixed $value"},{"required":"no","param":"int $timeout = 1000000"},{"required":"no","param":"int $retries = 5"}],"returns":"bool"},"snmp_get_quick_print":{"desc":"Fetches the current value of the UCD library&#039;s quick_print setting","params":[],"returns":"bool"},"snmp_read_mib":{"desc":"Reads and parses a MIB file into the active MIB tree","params":[{"required":"yes","param":"string $filename"}],"returns":"bool"},"snmp_set_enum_print":{"desc":"Return all values that are enums with their enum value instead of the raw integer","params":[{"required":"yes","param":"int $enum_print"}],"returns":"bool"},"snmp_set_oid_output_format":{"desc":"Set the OID output format","params":[{"required":"yes","param":"int $oid_format"}],"returns":"bool"},"snmp_set_quick_print":{"desc":"Set the value of quick_print within the UCD SNMP library","params":[{"required":"yes","param":"bool $quick_print"}],"returns":"bool"},"snmp_set_valueretrieval":{"desc":"Specify the method how the SNMP values will be returned","params":[{"required":"yes","param":"int $method"}],"returns":"bool"},"socket_bind":{"desc":"Binds a name to a socket","params":[{"required":"yes","param":"resource $socket"},{"required":"yes","param":"string $address"},{"required":"no","param":"int $port = &#039;&#039;"}],"returns":"bool"},"socket_connect":{"desc":"Initiates a connection on a socket","params":[{"required":"yes","param":"resource $socket"},{"required":"yes","param":"string $address"},{"required":"no","param":"int $port = &#039;&#039;"}],"returns":"bool"},"socket_create_pair":{"desc":"Creates a pair of indistinguishable sockets and stores them in an array","params":[{"required":"yes","param":"int $domain"},{"required":"yes","param":"int $type"},{"required":"yes","param":"int $protocol"},{"required":"yes","param":"array $fd"}],"returns":"bool"},"socket_getpeername":{"desc":"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","params":[{"required":"yes","param":"resource $socket"},{"required":"yes","param":"string $address"},{"required":"no","param":"int $port = &#039;&#039;"}],"returns":"bool"},"socket_getsockname":{"desc":"Queries the local side of the given socket which may either result in host/port or in a Unix filesystem path, dependent on its type","params":[{"required":"yes","param":"resource $socket"},{"required":"yes","param":"string $addr"},{"required":"no","param":"int $port = &#039;&#039;"}],"returns":"bool"},"socket_listen":{"desc":"Listens for a connection on a socket","params":[{"required":"yes","param":"resource $socket"},{"required":"no","param":"int $backlog = &#039;&#039;"}],"returns":"bool"},"socket_set_block":{"desc":"Sets blocking mode on a socket resource","params":[{"required":"yes","param":"resource $socket"}],"returns":"bool"},"socket_set_nonblock":{"desc":"Sets nonblocking mode for file descriptor fd","params":[{"required":"yes","param":"resource $socket"}],"returns":"bool"},"socket_set_option":{"desc":"Sets socket options for the socket","params":[{"required":"yes","param":"resource $socket"},{"required":"yes","param":"int $level"},{"required":"yes","param":"int $optname"},{"required":"yes","param":"mixed $optval"}],"returns":"bool"},"socket_shutdown":{"desc":"Shuts down a socket for receiving, sending, or both","params":[{"required":"yes","param":"resource $socket"},{"required":"no","param":"int $how = 2"}],"returns":"bool"},"sort":{"desc":"Sort an array","params":[{"required":"yes","param":"array $array"},{"required":"no","param":"int $sort_flags = SORT_REGULAR"}],"returns":"bool"},"spl_autoload_register":{"desc":"Register given function as __autoload() implementation","params":[{"required":"no","param":"callback $autoload_function = &#039;&#039;"},{"required":"no","param":"bool $throw = true"},{"required":"no","param":"bool $prepend = false"}],"returns":"bool"},"spl_autoload_unregister":{"desc":"Unregister given function as __autoload() implementation","params":[{"required":"yes","param":"mixed $autoload_function"}],"returns":"bool"},"sqlite_exec":{"desc":"Executes a result-less query against a given database","params":[{"required":"yes","param":"resource $dbhandle"},{"required":"yes","param":"string $query"},{"required":"no","param":"string $error_msg = &#039;&#039;"}],"returns":"bool"},"sqlite_has_more":{"desc":"Finds whether or not more rows are available","params":[{"required":"yes","param":"resource $result"}],"returns":"bool"},"sqlite_has_prev":{"desc":"Returns whether or not a previous row is available","params":[{"required":"yes","param":"resource $result"}],"returns":"bool"},"sqlite_next":{"desc":"Seek to the next row number","params":[{"required":"yes","param":"resource $result"}],"returns":"bool"},"sqlite_prev":{"desc":"Seek to the previous row number of a result set","params":[{"required":"yes","param":"resource $result"}],"returns":"bool"},"sqlite_rewind":{"desc":"Seek to the first row number","params":[{"required":"yes","param":"resource $result"}],"returns":"bool"},"sqlite_seek":{"desc":"Seek to a particular row number of a buffered result set","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $rownum"}],"returns":"bool"},"sqlite_valid":{"desc":"Returns whether more rows are available","params":[{"required":"yes","param":"resource $result"}],"returns":"bool"},"ssh2_auth_hostbased_file":{"desc":"Authenticate using a public hostkey","params":[{"required":"yes","param":"resource $session"},{"required":"yes","param":"string $username"},{"required":"yes","param":"string $hostname"},{"required":"yes","param":"string $pubkeyfile"},{"required":"yes","param":"string $privkeyfile"},{"required":"no","param":"string $passphrase = &#039;&#039;"},{"required":"no","param":"string $local_username = &#039;&#039;"}],"returns":"bool"},"ssh2_auth_password":{"desc":"Authenticate over SSH using a plain password","params":[{"required":"yes","param":"resource $session"},{"required":"yes","param":"string $username"},{"required":"yes","param":"string $password"}],"returns":"bool"},"ssh2_auth_pubkey_file":{"desc":"Authenticate using a public key","params":[{"required":"yes","param":"resource $session"},{"required":"yes","param":"string $username"},{"required":"yes","param":"string $pubkeyfile"},{"required":"yes","param":"string $privkeyfile"},{"required":"no","param":"string $passphrase = &#039;&#039;"}],"returns":"bool"},"ssh2_publickey_add":{"desc":"Add an authorized publickey","params":[{"required":"yes","param":"resource $pkey"},{"required":"yes","param":"string $algoname"},{"required":"yes","param":"string $blob"},{"required":"no","param":"bool $overwrite = false"},{"required":"no","param":"array $attributes = &#039;&#039;"}],"returns":"bool"},"ssh2_publickey_remove":{"desc":"Remove an authorized publickey","params":[{"required":"yes","param":"resource $pkey"},{"required":"yes","param":"string $algoname"},{"required":"yes","param":"string $blob"}],"returns":"bool"},"ssh2_scp_recv":{"desc":"Request a file via SCP","params":[{"required":"yes","param":"resource $session"},{"required":"yes","param":"string $remote_file"},{"required":"yes","param":"string $local_file"}],"returns":"bool"},"ssh2_scp_send":{"desc":"Send a file via SCP","params":[{"required":"yes","param":"resource $session"},{"required":"yes","param":"string $local_file"},{"required":"yes","param":"string $remote_file"},{"required":"no","param":"int $create_mode = 0644"}],"returns":"bool"},"ssh2_sftp_mkdir":{"desc":"Create a directory","params":[{"required":"yes","param":"resource $sftp"},{"required":"yes","param":"string $dirname"},{"required":"no","param":"int $mode = 0777"},{"required":"no","param":"bool $recursive = false"}],"returns":"bool"},"ssh2_sftp_rename":{"desc":"Rename a remote file","params":[{"required":"yes","param":"resource $sftp"},{"required":"yes","param":"string $from"},{"required":"yes","param":"string $to"}],"returns":"bool"},"ssh2_sftp_rmdir":{"desc":"Remove a directory","params":[{"required":"yes","param":"resource $sftp"},{"required":"yes","param":"string $dirname"}],"returns":"bool"},"ssh2_sftp_symlink":{"desc":"Create a symlink","params":[{"required":"yes","param":"resource $sftp"},{"required":"yes","param":"string $target"},{"required":"yes","param":"string $link"}],"returns":"bool"},"ssh2_sftp_unlink":{"desc":"Delete a file","params":[{"required":"yes","param":"resource $sftp"},{"required":"yes","param":"string $filename"}],"returns":"bool"},"stomp_abort":{"desc":"Rolls back a transaction in progress","params":[{"required":"yes","param":"string $transaction_id"},{"required":"no","param":"array $headers = &#039;&#039;"},{"required":"yes","param":"resource $link"}],"returns":"bool"},"stomp_ack":{"desc":"Acknowledges consumption of a message","params":[{"required":"yes","param":"mixed $msg"},{"required":"no","param":"array $headers = &#039;&#039;"},{"required":"yes","param":"resource $link"}],"returns":"bool"},"stomp_begin":{"desc":"Starts a transaction","params":[{"required":"yes","param":"string $transaction_id"},{"required":"no","param":"array $headers = &#039;&#039;"},{"required":"yes","param":"resource $link"}],"returns":"bool"},"stomp_close":{"desc":"Closes stomp connection","params":[{"required":"yes","param":"resource $link"}],"returns":"bool"},"stomp_commit":{"desc":"Commits a transaction in progress","params":[{"required":"yes","param":"string $transaction_id"},{"required":"no","param":"array $headers = &#039;&#039;"},{"required":"yes","param":"resource $link"}],"returns":"bool"},"stomp_has_frame":{"desc":"Indicates whether or not there is a frame ready to read","params":[{"required":"yes","param":"resource $link"}],"returns":"bool"},"stomp_send":{"desc":"Sends a message","params":[{"required":"yes","param":"string $destination"},{"required":"yes","param":"mixed $msg"},{"required":"no","param":"array $headers = &#039;&#039;"},{"required":"yes","param":"resource $link"}],"returns":"bool"},"stomp_subscribe":{"desc":"Registers to listen to a given destination","params":[{"required":"yes","param":"string $destination"},{"required":"no","param":"array $headers = &#039;&#039;"},{"required":"yes","param":"resource $link"}],"returns":"bool"},"stomp_unsubscribe":{"desc":"Removes an existing subscription","params":[{"required":"yes","param":"string $destination"},{"required":"no","param":"array $headers = &#039;&#039;"},{"required":"yes","param":"resource $link"}],"returns":"bool"},"stream_context_set_option":{"desc":"Sets an option for a stream/wrapper/context","params":[{"required":"yes","param":"resource $stream_or_context"},{"required":"yes","param":"string $wrapper"},{"required":"yes","param":"string $option"},{"required":"yes","param":"mixed $value"},{"required":"yes","param":"array $options"}],"returns":"bool"},"stream_context_set_params":{"desc":"Set parameters for a stream/wrapper/context","params":[{"required":"yes","param":"resource $stream_or_context"},{"required":"yes","param":"array $params"}],"returns":"bool"},"stream_encoding":{"desc":"Set character set for stream encoding","params":[{"required":"yes","param":"resource $stream"},{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"bool"},"stream_filter_register":{"desc":"Register a user defined stream filter","params":[{"required":"yes","param":"string $filtername"},{"required":"yes","param":"string $classname"}],"returns":"bool"},"stream_filter_remove":{"desc":"Remove a filter from a stream","params":[{"required":"yes","param":"resource $stream_filter"}],"returns":"bool"},"stream_is_local":{"desc":"Checks if a stream is a local stream","params":[{"required":"yes","param":"mixed $stream_or_url"}],"returns":"bool"},"stream_set_blocking":{"desc":"Set blocking/non-blocking mode on a stream","params":[{"required":"yes","param":"resource $stream"},{"required":"yes","param":"int $mode"}],"returns":"bool"},"stream_set_timeout":{"desc":"Set timeout period on a stream","params":[{"required":"yes","param":"resource $stream"},{"required":"yes","param":"int $seconds"},{"required":"no","param":"int $microseconds = &#039;&#039;"}],"returns":"bool"},"stream_socket_shutdown":{"desc":"Shutdown a full-duplex connection","params":[{"required":"yes","param":"resource $stream"},{"required":"yes","param":"int $how"}],"returns":"bool"},"stream_supports_lock":{"desc":"Tells whether the stream supports locking.","params":[{"required":"yes","param":"resource $stream"}],"returns":"bool"},"stream_wrapper_register":{"desc":"Register a URL wrapper implemented as a PHP class","params":[{"required":"yes","param":"string $protocol"},{"required":"yes","param":"string $classname"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"bool"},"stream_wrapper_restore":{"desc":"Restores a previously unregistered built-in wrapper","params":[{"required":"yes","param":"string $protocol"}],"returns":"bool"},"stream_wrapper_unregister":{"desc":"Unregister a URL wrapper","params":[{"required":"yes","param":"string $protocol"}],"returns":"bool"},"svn_add":{"desc":"Schedules the addition of an item in a working directory","params":[{"required":"yes","param":"string $path"},{"required":"no","param":"bool $recursive = true"},{"required":"no","param":"bool $force = false"}],"returns":"bool"},"svn_checkout":{"desc":"Checks out a working copy from the repository","params":[{"required":"yes","param":"string $repos"},{"required":"yes","param":"string $targetpath"},{"required":"no","param":"int $revision = &#039;&#039;"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"bool"},"svn_cleanup":{"desc":"Recursively cleanup a working copy directory, finishing incomplete operations and removing locks","params":[{"required":"yes","param":"string $workingdir"}],"returns":"bool"},"svn_delete":{"desc":"Delete items from a working copy or repository.","params":[{"required":"yes","param":"string $path"},{"required":"no","param":"bool $force = false"}],"returns":"bool"},"svn_export":{"desc":"Export the contents of a SVN directory","params":[{"required":"yes","param":"string $frompath"},{"required":"yes","param":"string $topath"},{"required":"no","param":"bool $working_copy = true"},{"required":"no","param":"int $revision_no = -1"}],"returns":"bool"},"svn_fs_abort_txn":{"desc":"Abort a transaction, returns true if everything is okay, false otherwise","params":[{"required":"yes","param":"resource $txn"}],"returns":"bool"},"svn_fs_change_node_prop":{"desc":"Return true if everything is ok, false otherwise","params":[{"required":"yes","param":"resource $root"},{"required":"yes","param":"string $path"},{"required":"yes","param":"string $name"},{"required":"yes","param":"string $value"}],"returns":"bool"},"svn_fs_contents_changed":{"desc":"Return true if content is different, false otherwise","params":[{"required":"yes","param":"resource $root1"},{"required":"yes","param":"string $path1"},{"required":"yes","param":"resource $root2"},{"required":"yes","param":"string $path2"}],"returns":"bool"},"svn_fs_copy":{"desc":"Copies a file or a directory, returns true if all is ok, false otherwise","params":[{"required":"yes","param":"resource $from_root"},{"required":"yes","param":"string $from_path"},{"required":"yes","param":"resource $to_root"},{"required":"yes","param":"string $to_path"}],"returns":"bool"},"svn_fs_delete":{"desc":"Deletes a file or a directory, return true if all is ok, false otherwise","params":[{"required":"yes","param":"resource $root"},{"required":"yes","param":"string $path"}],"returns":"bool"},"svn_fs_is_dir":{"desc":"Return true if the path points to a directory, false otherwise","params":[{"required":"yes","param":"resource $root"},{"required":"yes","param":"string $path"}],"returns":"bool"},"svn_fs_is_file":{"desc":"Return true if the path points to a file, false otherwise","params":[{"required":"yes","param":"resource $root"},{"required":"yes","param":"string $path"}],"returns":"bool"},"svn_fs_make_dir":{"desc":"Creates a new empty directory, returns true if all is ok, false otherwise","params":[{"required":"yes","param":"resource $root"},{"required":"yes","param":"string $path"}],"returns":"bool"},"svn_fs_make_file":{"desc":"Creates a new empty file, returns true if all is ok, false otherwise","params":[{"required":"yes","param":"resource $root"},{"required":"yes","param":"string $path"}],"returns":"bool"},"svn_fs_props_changed":{"desc":"Return true if props are different, false otherwise","params":[{"required":"yes","param":"resource $root1"},{"required":"yes","param":"string $path1"},{"required":"yes","param":"resource $root2"},{"required":"yes","param":"string $path2"}],"returns":"bool"},"svn_import":{"desc":"Imports an unversioned path into a repository","params":[{"required":"yes","param":"string $path"},{"required":"yes","param":"string $url"},{"required":"yes","param":"bool $nonrecursive"}],"returns":"bool"},"svn_mkdir":{"desc":"Creates a directory in a working copy or repository","params":[{"required":"yes","param":"string $path"},{"required":"no","param":"string $log_message = &#039;&#039;"}],"returns":"bool"},"svn_repos_hotcopy":{"desc":"Make a hot-copy of the repos at repospath; copy it to destpath","params":[{"required":"yes","param":"string $repospath"},{"required":"yes","param":"string $destpath"},{"required":"yes","param":"bool $cleanlogs"}],"returns":"bool"},"svn_repos_recover":{"desc":"Run recovery procedures on the repository located at path.","params":[{"required":"yes","param":"string $path"}],"returns":"bool"},"svn_revert":{"desc":"Revert changes to the working copy","params":[{"required":"yes","param":"string $path"},{"required":"no","param":"bool $recursive = false"}],"returns":"bool"},"sybase_close":{"desc":"Closes a Sybase connection","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"sybase_data_seek":{"desc":"Moves internal row pointer","params":[{"required":"yes","param":"resource $result_identifier"},{"required":"yes","param":"int $row_number"}],"returns":"bool"},"sybase_field_seek":{"desc":"Sets field offset","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_offset"}],"returns":"bool"},"sybase_free_result":{"desc":"Frees result memory","params":[{"required":"yes","param":"resource $result"}],"returns":"bool"},"sybase_select_db":{"desc":"Selects a Sybase database","params":[{"required":"yes","param":"string $database_name"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"bool"},"sybase_set_message_handler":{"desc":"Sets the handler called when a server message is raised","params":[{"required":"yes","param":"callback $handler"},{"required":"no","param":"resource $connection = &#039;&#039;"}],"returns":"bool"},"symlink":{"desc":"Creates a symbolic link","params":[{"required":"yes","param":"string $target"},{"required":"yes","param":"string $link"}],"returns":"bool"},"syslog":{"desc":"Generate a system log message","params":[{"required":"yes","param":"int $priority"},{"required":"yes","param":"string $message"}],"returns":"bool"},"tcpwrap_check":{"desc":"Performs a tcpwrap check","params":[{"required":"yes","param":"string $daemon"},{"required":"yes","param":"string $address"},{"required":"no","param":"string $user = &#039;&#039;"},{"required":"no","param":"bool $nodns = false"}],"returns":"bool"},"tidy_clean_repair":{"desc":"Execute configured cleanup and repair operations on parsed markup","params":[{"required":"yes","param":"tidy $object"}],"returns":"bool"},"tidy_diagnose":{"desc":"Run configured diagnostics on parsed and repaired markup","params":[{"required":"yes","param":"tidy $object"}],"returns":"bool"},"tidy_is_xhtml":{"desc":"Indicates if the document is a XHTML document","params":[{"required":"yes","param":"tidy $object"}],"returns":"bool"},"tidy_is_xml":{"desc":"Indicates if the document is a generic (non HTML/XHTML) XML document","params":[{"required":"yes","param":"tidy $object"}],"returns":"bool"},"tidy_reset_config":{"desc":"Restore Tidy configuration to default values","params":[],"returns":"bool"},"tidy_save_config":{"desc":"Save current settings to named file","params":[{"required":"yes","param":"string $filename"}],"returns":"bool"},"tidy_setopt":{"desc":"Updates the configuration settings for the specified tidy document","params":[{"required":"yes","param":"string $option"},{"required":"yes","param":"mixed $value"}],"returns":"bool"},"tidy_set_encoding":{"desc":"Set the input/output character encoding for parsing markup","params":[{"required":"yes","param":"string $encoding"}],"returns":"bool"},"time_sleep_until":{"desc":"Make the script sleep until the specified time","params":[{"required":"yes","param":"float $timestamp"}],"returns":"bool"},"touch":{"desc":"Sets access and modification time of file","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"int $time = time()"},{"required":"no","param":"int $atime = &#039;&#039;"}],"returns":"bool"},"trigger_error":{"desc":"Generates a user-level error/warning/notice message","params":[{"required":"yes","param":"string $error_msg"},{"required":"no","param":"int $error_type = E_USER_NOTICE"}],"returns":"bool"},"uasort":{"desc":"Sort an array with a user-defined comparison function and maintain index association","params":[{"required":"yes","param":"array $array"},{"required":"yes","param":"callback $cmp_function"}],"returns":"bool"},"udm_add_search_limit":{"desc":"Add various search limits","params":[{"required":"yes","param":"resource $agent"},{"required":"yes","param":"int $var"},{"required":"yes","param":"string $val"}],"returns":"bool"},"udm_check_charset":{"desc":"Check if the given charset is known to mnogosearch","params":[{"required":"yes","param":"resource $agent"},{"required":"yes","param":"string $charset"}],"returns":"bool"},"udm_clear_search_limits":{"desc":"Clear all mnoGoSearch search restrictions","params":[{"required":"yes","param":"resource $agent"}],"returns":"bool"},"udm_free_ispell_data":{"desc":"Free memory allocated for ispell data","params":[{"required":"yes","param":"int $agent"}],"returns":"bool"},"udm_free_res":{"desc":"Free mnoGoSearch result","params":[{"required":"yes","param":"resource $res"}],"returns":"bool"},"udm_load_ispell_data":{"desc":"Load ispell data","params":[{"required":"yes","param":"resource $agent"},{"required":"yes","param":"int $var"},{"required":"yes","param":"string $val1"},{"required":"yes","param":"string $val2"},{"required":"yes","param":"int $flag"}],"returns":"bool"},"udm_set_agent_param":{"desc":"Set mnoGoSearch agent session parameters","params":[{"required":"yes","param":"resource $agent"},{"required":"yes","param":"int $var"},{"required":"yes","param":"string $val"}],"returns":"bool"},"uksort":{"desc":"Sort an array by keys using a user-defined comparison function","params":[{"required":"yes","param":"array $array"},{"required":"yes","param":"callback $cmp_function"}],"returns":"bool"},"unlink":{"desc":"Deletes a file","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"resource $context = &#039;&#039;"}],"returns":"bool"},"use_soap_error_handler":{"desc":"Set whether to use the SOAP error handler","params":[{"required":"no","param":"bool $handler = true"}],"returns":"bool"},"usort":{"desc":"Sort an array by values using a user-defined comparison function","params":[{"required":"yes","param":"array $array"},{"required":"yes","param":"callback $cmp_function"}],"returns":"bool"},"virtual":{"desc":"Perform an Apache sub-request","params":[{"required":"yes","param":"string $filename"}],"returns":"bool"},"vpopmail_add_alias_domain":{"desc":"Add an alias for a virtual domain","params":[{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $aliasdomain"}],"returns":"bool"},"vpopmail_add_alias_domain_ex":{"desc":"Add alias to an existing virtual domain","params":[{"required":"yes","param":"string $olddomain"},{"required":"yes","param":"string $newdomain"}],"returns":"bool"},"vpopmail_add_domain":{"desc":"Add a new virtual domain","params":[{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $dir"},{"required":"yes","param":"int $uid"},{"required":"yes","param":"int $gid"}],"returns":"bool"},"vpopmail_add_domain_ex":{"desc":"Add a new virtual domain","params":[{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $passwd"},{"required":"no","param":"string $quota = &#039;&#039;"},{"required":"no","param":"string $bounce = &#039;&#039;"},{"required":"no","param":"bool $apop = &#039;&#039;"}],"returns":"bool"},"vpopmail_add_user":{"desc":"Add a new user to the specified virtual domain","params":[{"required":"yes","param":"string $user"},{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $password"},{"required":"no","param":"string $gecos = &#039;&#039;"},{"required":"no","param":"bool $apop = &#039;&#039;"}],"returns":"bool"},"vpopmail_alias_add":{"desc":"Insert a virtual alias","params":[{"required":"yes","param":"string $user"},{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $alias"}],"returns":"bool"},"vpopmail_alias_del":{"desc":"Deletes all virtual aliases of a user","params":[{"required":"yes","param":"string $user"},{"required":"yes","param":"string $domain"}],"returns":"bool"},"vpopmail_alias_del_domain":{"desc":"Deletes all virtual aliases of a domain","params":[{"required":"yes","param":"string $domain"}],"returns":"bool"},"vpopmail_auth_user":{"desc":"Attempt to validate a username/domain/password","params":[{"required":"yes","param":"string $user"},{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $password"},{"required":"no","param":"string $apop = &#039;&#039;"}],"returns":"bool"},"vpopmail_del_domain":{"desc":"Delete a virtual domain","params":[{"required":"yes","param":"string $domain"}],"returns":"bool"},"vpopmail_del_domain_ex":{"desc":"Delete a virtual domain","params":[{"required":"yes","param":"string $domain"}],"returns":"bool"},"vpopmail_del_user":{"desc":"Delete a user from a virtual domain","params":[{"required":"yes","param":"string $user"},{"required":"yes","param":"string $domain"}],"returns":"bool"},"vpopmail_passwd":{"desc":"Change a virtual user&#039;s password","params":[{"required":"yes","param":"string $user"},{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $password"},{"required":"no","param":"bool $apop = &#039;&#039;"}],"returns":"bool"},"vpopmail_set_user_quota":{"desc":"Sets a virtual user&#039;s quota","params":[{"required":"yes","param":"string $user"},{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $quota"}],"returns":"bool"},"w32api_deftype":{"desc":"Defines a type for use with other w32api_functions","params":[{"required":"yes","param":"string $typename"},{"required":"yes","param":"string $member1_type"},{"required":"yes","param":"string $member1_name"},{"required":"no","param":"string $... = &#039;&#039;"}],"returns":"bool"},"w32api_register_function":{"desc":"Registers function function_name from library with PHP","params":[{"required":"yes","param":"string $library"},{"required":"yes","param":"string $function_name"},{"required":"yes","param":"string $return_type"}],"returns":"bool"},"wddx_add_vars":{"desc":"Add variables to a WDDX packet with the specified ID","params":[{"required":"yes","param":"resource $packet_id"},{"required":"yes","param":"mixed $var_name"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"bool"},"win32_set_service_status":{"desc":"Update the service status","params":[{"required":"yes","param":"int $status"},{"required":"no","param":"int $checkpoint = &#039;&#039;"}],"returns":"bool"},"wincache_lock":{"desc":"Acquires an exclusive lock on a given key","params":[{"required":"yes","param":"string $key"},{"required":"no","param":"bool $isglobal = false"}],"returns":"bool"},"wincache_refresh_if_changed":{"desc":"Refreshes the cache entries for the cached files","params":[{"required":"no","param":"array $files = &#039;&#039;"}],"returns":"bool"},"wincache_ucache_add":{"desc":"Adds a variable in user cache only if variable does not already exist in the cache","params":[{"required":"yes","param":"string $key"},{"required":"yes","param":"mixed $value"},{"required":"no","param":"int $ttl = &#039;&#039;"},{"required":"yes","param":"array $values"},{"required":"no","param":"mixed $unused = &#039;&#039;"}],"returns":"bool"},"wincache_ucache_cas":{"desc":"Compares the variable with old value and assigns new value to it","params":[{"required":"yes","param":"string $key"},{"required":"yes","param":"int $old_value"},{"required":"yes","param":"int $new_value"}],"returns":"bool"},"wincache_ucache_clear":{"desc":"Deletes entire content of the user cache","params":[],"returns":"bool"},"wincache_ucache_delete":{"desc":"Deletes variables from the user cache","params":[{"required":"yes","param":"mixed $key"}],"returns":"bool"},"wincache_ucache_exists":{"desc":"Checks if a variable exists in the user cache","params":[{"required":"yes","param":"string $key"}],"returns":"bool"},"wincache_ucache_set":{"desc":"Adds a variable in user cache and overwrites a variable if it already exists in the cache","params":[{"required":"yes","param":"mixed $key"},{"required":"yes","param":"mixed $value"},{"required":"no","param":"int $ttl = &#039;&#039;"},{"required":"yes","param":"array $values"},{"required":"no","param":"mixed $unused = &#039;&#039;"}],"returns":"bool"},"wincache_unlock":{"desc":"Releases an exclusive lock on a given key","params":[{"required":"yes","param":"string $key"}],"returns":"bool"},"xattr_remove":{"desc":"Remove an extended attribute","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"string $name"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"bool"},"xattr_set":{"desc":"Set an extended attribute","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"string $name"},{"required":"yes","param":"string $value"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"bool"},"xattr_supported":{"desc":"Check if filesystem supports extended attributes","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"bool"},"xdiff_file_bdiff":{"desc":"Make binary diff of two files","params":[{"required":"yes","param":"string $old_file"},{"required":"yes","param":"string $new_file"},{"required":"yes","param":"string $dest"}],"returns":"bool"},"xdiff_file_bpatch":{"desc":"Patch a file with a binary diff","params":[{"required":"yes","param":"string $file"},{"required":"yes","param":"string $patch"},{"required":"yes","param":"string $dest"}],"returns":"bool"},"xdiff_file_diff":{"desc":"Make unified diff of two files","params":[{"required":"yes","param":"string $old_file"},{"required":"yes","param":"string $new_file"},{"required":"yes","param":"string $dest"},{"required":"no","param":"int $context = 3"},{"required":"no","param":"bool $minimal = false"}],"returns":"bool"},"xdiff_file_diff_binary":{"desc":"Alias of xdiff_file_bdiff","params":[{"required":"yes","param":"string $old_file"},{"required":"yes","param":"string $new_file"},{"required":"yes","param":"string $dest"}],"returns":"bool"},"xdiff_file_patch_binary":{"desc":"Alias of xdiff_file_bpatch","params":[{"required":"yes","param":"string $file"},{"required":"yes","param":"string $patch"},{"required":"yes","param":"string $dest"}],"returns":"bool"},"xdiff_file_rabdiff":{"desc":"Make binary diff of two files using the Rabin&#039;s polynomial fingerprinting algorithm","params":[{"required":"yes","param":"string $old_file"},{"required":"yes","param":"string $new_file"},{"required":"yes","param":"string $dest"}],"returns":"bool"},"xmlrpc_is_fault":{"desc":"Determines if an array value represents an XMLRPC fault","params":[{"required":"yes","param":"array $arg"}],"returns":"bool"},"xmlrpc_server_register_introspection_callback":{"desc":"Register a PHP function to generate documentation","params":[{"required":"yes","param":"resource $server"},{"required":"yes","param":"string $function"}],"returns":"bool"},"xmlrpc_server_register_method":{"desc":"Register a PHP function to resource method matching method_name","params":[{"required":"yes","param":"resource $server"},{"required":"yes","param":"string $method_name"},{"required":"yes","param":"string $function"}],"returns":"bool"},"xmlrpc_set_type":{"desc":"Sets xmlrpc type, base64 or datetime, for a PHP string value","params":[{"required":"yes","param":"string $value"},{"required":"yes","param":"string $type"}],"returns":"bool"},"xml_parser_free":{"desc":"Free an XML parser","params":[{"required":"yes","param":"resource $parser"}],"returns":"bool"},"xml_parser_set_option":{"desc":"Set options in an XML parser","params":[{"required":"yes","param":"resource $parser"},{"required":"yes","param":"int $option"},{"required":"yes","param":"mixed $value"}],"returns":"bool"},"xml_set_character_data_handler":{"desc":"Set up character data handler","params":[{"required":"yes","param":"resource $parser"},{"required":"yes","param":"callback $handler"}],"returns":"bool"},"xml_set_default_handler":{"desc":"Set up default handler","params":[{"required":"yes","param":"resource $parser"},{"required":"yes","param":"callback $handler"}],"returns":"bool"},"xml_set_element_handler":{"desc":"Set up start and end element handlers","params":[{"required":"yes","param":"resource $parser"},{"required":"yes","param":"callback $start_element_handler"},{"required":"yes","param":"callback $end_element_handler"}],"returns":"bool"},"xml_set_end_namespace_decl_handler":{"desc":"Set up end namespace declaration handler","params":[{"required":"yes","param":"resource $parser"},{"required":"yes","param":"callback $handler"}],"returns":"bool"},"xml_set_external_entity_ref_handler":{"desc":"Set up external entity reference handler","params":[{"required":"yes","param":"resource $parser"},{"required":"yes","param":"callback $handler"}],"returns":"bool"},"xml_set_notation_decl_handler":{"desc":"Set up notation declaration handler","params":[{"required":"yes","param":"resource $parser"},{"required":"yes","param":"callback $handler"}],"returns":"bool"},"xml_set_object":{"desc":"Use XML Parser within an object","params":[{"required":"yes","param":"resource $parser"},{"required":"yes","param":"object $object"}],"returns":"bool"},"xml_set_processing_instruction_handler":{"desc":"Set up processing instruction (PI) handler","params":[{"required":"yes","param":"resource $parser"},{"required":"yes","param":"callback $handler"}],"returns":"bool"},"xml_set_start_namespace_decl_handler":{"desc":"Set up start namespace declaration handler","params":[{"required":"yes","param":"resource $parser"},{"required":"yes","param":"callback $handler"}],"returns":"bool"},"xml_set_unparsed_entity_decl_handler":{"desc":"Set up unparsed entity declaration handler","params":[{"required":"yes","param":"resource $parser"},{"required":"yes","param":"callback $handler"}],"returns":"bool"},"xpath_register_ns":{"desc":"Register the given namespace in the passed XPath context","params":[{"required":"yes","param":"XPathContext $xpath_context"},{"required":"yes","param":"string $prefix"},{"required":"yes","param":"string $uri"}],"returns":"bool"},"xpath_register_ns_auto":{"desc":"Register the given namespace in the passed XPath context","params":[{"required":"yes","param":"XPathContext $xpath_context"},{"required":"no","param":"object $context_node = &#039;&#039;"}],"returns":"bool"},"xslt_set_object":{"desc":"Sets the object in which to resolve callback functions","params":[{"required":"yes","param":"resource $processor"},{"required":"yes","param":"object $obj"}],"returns":"bool"},"yaml_emit_file":{"desc":"Send the YAML representation of a value to a file","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"mixed $data"},{"required":"no","param":"int $encoding = YAML_ANY_ENCODING"},{"required":"no","param":"int $linebreak = YAML_ANY_BREAK"}],"returns":"bool"},"yaz_ccl_parse":{"desc":"Invoke CCL Parser","params":[{"required":"yes","param":"resource $id"},{"required":"yes","param":"string $query"},{"required":"yes","param":"array $result"}],"returns":"bool"},"yaz_close":{"desc":"Close YAZ connection","params":[{"required":"yes","param":"resource $id"}],"returns":"bool"},"yaz_database":{"desc":"Specifies the databases within a session","params":[{"required":"yes","param":"resource $id"},{"required":"yes","param":"string $databases"}],"returns":"bool"},"yaz_element":{"desc":"Specifies Element-Set Name for retrieval","params":[{"required":"yes","param":"resource $id"},{"required":"yes","param":"string $elementset"}],"returns":"bool"},"yaz_present":{"desc":"Prepares for retrieval (Z39.50 present)","params":[{"required":"yes","param":"resource $id"}],"returns":"bool"},"yaz_search":{"desc":"Prepares for a search","params":[{"required":"yes","param":"resource $id"},{"required":"yes","param":"string $type"},{"required":"yes","param":"string $query"}],"returns":"bool"},"zip_entry_close":{"desc":"Close a directory entry","params":[{"required":"yes","param":"resource $zip_entry"}],"returns":"bool"},"zip_entry_open":{"desc":"Open a directory entry for reading","params":[{"required":"yes","param":"resource $zip"},{"required":"yes","param":"resource $zip_entry"},{"required":"no","param":"string $mode = &#039;&#039;"}],"returns":"bool"},"acos":{"desc":"Arc cosine","params":[{"required":"yes","param":"float $arg"}],"returns":"float"},"acosh":{"desc":"Inverse hyperbolic cosine","params":[{"required":"yes","param":"float $arg"}],"returns":"float"},"asin":{"desc":"Arc sine","params":[{"required":"yes","param":"float $arg"}],"returns":"float"},"asinh":{"desc":"Inverse hyperbolic sine","params":[{"required":"yes","param":"float $arg"}],"returns":"float"},"atan":{"desc":"Arc tangent","params":[{"required":"yes","param":"float $arg"}],"returns":"float"},"atan2":{"desc":"Arc tangent of two variables","params":[{"required":"yes","param":"float $y"},{"required":"yes","param":"float $x"}],"returns":"float"},"atanh":{"desc":"Inverse hyperbolic tangent","params":[{"required":"yes","param":"float $arg"}],"returns":"float"},"bindec":{"desc":"Binary to decimal","params":[{"required":"yes","param":"string $binary_string"}],"returns":"float"},"cairo_get_line_width":{"desc":"The getLineWidth purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"float"},"cairo_get_miter_limit":{"desc":"The getMiterLimit purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"float"},"cairo_get_tolerance":{"desc":"The getTolerance purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"float"},"ceil":{"desc":"Round fractions up","params":[{"required":"yes","param":"float $value"}],"returns":"float"},"cos":{"desc":"Cosine","params":[{"required":"yes","param":"float $arg"}],"returns":"float"},"cosh":{"desc":"Hyperbolic cosine","params":[{"required":"yes","param":"float $arg"}],"returns":"float"},"deg2rad":{"desc":"Converts the number in degrees to the radian equivalent","params":[{"required":"yes","param":"float $number"}],"returns":"float"},"disk_free_space":{"desc":"Returns available space on filesystem or disk partition","params":[{"required":"yes","param":"string $directory"}],"returns":"float"},"disk_total_space":{"desc":"Returns the total size of a filesystem or disk partition","params":[{"required":"yes","param":"string $directory"}],"returns":"float"},"exp":{"desc":"Calculates the exponent of e","params":[{"required":"yes","param":"float $arg"}],"returns":"float"},"expm1":{"desc":"Returns exp(number) - 1, computed in a way that is accurate even when the value of number is close to zero","params":[{"required":"yes","param":"float $arg"}],"returns":"float"},"floatval":{"desc":"Get float value of a variable","params":[{"required":"yes","param":"mixed $var"}],"returns":"float"},"floor":{"desc":"Round fractions down","params":[{"required":"yes","param":"float $value"}],"returns":"float"},"fmod":{"desc":"Returns the floating point remainder (modulo) of the division of the arguments","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"}],"returns":"float"},"hypot":{"desc":"Calculate the length of the hypotenuse of a right-angle triangle","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"}],"returns":"float"},"lcg_value":{"desc":"Combined linear congruential generator","params":[],"returns":"float"},"log":{"desc":"Natural logarithm","params":[{"required":"yes","param":"float $arg"},{"required":"no","param":"float $base = M_E"}],"returns":"float"},"log1p":{"desc":"Returns log(1 + number), computed in a way that is accurate even when the value of number is close to zero","params":[{"required":"yes","param":"float $number"}],"returns":"float"},"log10":{"desc":"Base-10 logarithm","params":[{"required":"yes","param":"float $arg"}],"returns":"float"},"notes_version":{"desc":"Get the version Lotus Notes","params":[{"required":"yes","param":"string $database_name"}],"returns":"float"},"numfmt_parse_currency":{"desc":"Parse a currency number","params":[{"required":"yes","param":"string $value"},{"required":"yes","param":"string $currency"},{"required":"no","param":"int $position = &#039;&#039;"},{"required":"yes","param":"NumberFormatter $fmt"}],"returns":"float"},"PDF_get_pdi_value":{"desc":"Get PDI numerical parameter [deprecated]","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"string $key"},{"required":"yes","param":"int $doc"},{"required":"yes","param":"int $page"},{"required":"yes","param":"int $reserved"}],"returns":"float"},"PDF_get_value":{"desc":"Get numerical parameter","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"string $key"},{"required":"yes","param":"float $modifier"}],"returns":"float"},"PDF_info_font":{"desc":"Query detailed information about a loaded font","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $font"},{"required":"yes","param":"string $keyword"},{"required":"yes","param":"string $optlist"}],"returns":"float"},"PDF_info_matchbox":{"desc":"Query matchbox information","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $boxname"},{"required":"yes","param":"int $num"},{"required":"yes","param":"string $keyword"}],"returns":"float"},"PDF_info_table":{"desc":"Retrieve table information","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $table"},{"required":"yes","param":"string $keyword"}],"returns":"float"},"PDF_info_textflow":{"desc":"Query textflow state","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $textflow"},{"required":"yes","param":"string $keyword"}],"returns":"float"},"PDF_info_textline":{"desc":"Perform textline formatting and query metrics","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $text"},{"required":"yes","param":"string $keyword"},{"required":"yes","param":"string $optlist"}],"returns":"float"},"PDF_pcos_get_number":{"desc":"Get value of pCOS path with type number or boolean","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"int $doc"},{"required":"yes","param":"string $path"}],"returns":"float"},"PDF_stringwidth":{"desc":"Return width of text","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"string $text"},{"required":"yes","param":"int $font"},{"required":"yes","param":"float $fontsize"}],"returns":"float"},"pi":{"desc":"Get value of pi","params":[],"returns":"float"},"pow":{"desc":"Exponential expression","params":[{"required":"yes","param":"number $base"},{"required":"yes","param":"number $exp"}],"returns":"float"},"ps_get_value":{"desc":"Gets certain values","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $name"},{"required":"no","param":"float $modifier = &#039;&#039;"}],"returns":"float"},"ps_stringwidth":{"desc":"Gets width of a string","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $text"},{"required":"no","param":"int $fontid = &#039;&#039;"},{"required":"no","param":"float $size = 0.0"}],"returns":"float"},"ps_symbol_width":{"desc":"Gets width of a glyph","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"int $ord"},{"required":"no","param":"int $fontid = &#039;&#039;"},{"required":"no","param":"float $size = 0.0"}],"returns":"float"},"px_get_value":{"desc":"Gets a value","params":[{"required":"yes","param":"resource $pxdoc"},{"required":"yes","param":"string $name"}],"returns":"float"},"rad2deg":{"desc":"Converts the radian number to the equivalent number in degrees","params":[{"required":"yes","param":"float $number"}],"returns":"float"},"round":{"desc":"Rounds a float","params":[{"required":"yes","param":"float $val"},{"required":"no","param":"int $precision = &#039;&#039;"},{"required":"no","param":"int $mode = PHP_ROUND_HALF_UP"}],"returns":"float"},"sin":{"desc":"Sine","params":[{"required":"yes","param":"float $arg"}],"returns":"float"},"sinh":{"desc":"Hyperbolic sine","params":[{"required":"yes","param":"float $arg"}],"returns":"float"},"sqrt":{"desc":"Square root","params":[{"required":"yes","param":"float $arg"}],"returns":"float"},"stats_absolute_deviation":{"desc":"Returns the absolute deviation of an array of values","params":[{"required":"yes","param":"array $a"}],"returns":"float"},"stats_cdf_beta":{"desc":"CDF function for BETA Distribution. Calculates any one parameter of the beta distribution given values for the others.","params":[{"required":"yes","param":"float $par1"},{"required":"yes","param":"float $par2"},{"required":"yes","param":"float $par3"},{"required":"yes","param":"int $which"}],"returns":"float"},"stats_cdf_binomial":{"desc":"Calculates any one parameter of the binomial distribution given values for the others.","params":[{"required":"yes","param":"float $par1"},{"required":"yes","param":"float $par2"},{"required":"yes","param":"float $par3"},{"required":"yes","param":"int $which"}],"returns":"float"},"stats_cdf_cauchy":{"desc":"Not documented","params":[{"required":"yes","param":"float $par1"},{"required":"yes","param":"float $par2"},{"required":"yes","param":"float $par3"},{"required":"yes","param":"int $which"}],"returns":"float"},"stats_cdf_chisquare":{"desc":"Calculates any one parameter of the chi-square distribution given values for the others.","params":[{"required":"yes","param":"float $par1"},{"required":"yes","param":"float $par2"},{"required":"yes","param":"int $which"}],"returns":"float"},"stats_cdf_exponential":{"desc":"Not documented","params":[{"required":"yes","param":"float $par1"},{"required":"yes","param":"float $par2"},{"required":"yes","param":"int $which"}],"returns":"float"},"stats_cdf_f":{"desc":"Calculates any one parameter of the F distribution given values for the others.","params":[{"required":"yes","param":"float $par1"},{"required":"yes","param":"float $par2"},{"required":"yes","param":"float $par3"},{"required":"yes","param":"int $which"}],"returns":"float"},"stats_cdf_gamma":{"desc":"Calculates any one parameter of the gamma distribution given values for the others.","params":[{"required":"yes","param":"float $par1"},{"required":"yes","param":"float $par2"},{"required":"yes","param":"float $par3"},{"required":"yes","param":"int $which"}],"returns":"float"},"stats_cdf_laplace":{"desc":"Not documented","params":[{"required":"yes","param":"float $par1"},{"required":"yes","param":"float $par2"},{"required":"yes","param":"float $par3"},{"required":"yes","param":"int $which"}],"returns":"float"},"stats_cdf_logistic":{"desc":"Not documented","params":[{"required":"yes","param":"float $par1"},{"required":"yes","param":"float $par2"},{"required":"yes","param":"float $par3"},{"required":"yes","param":"int $which"}],"returns":"float"},"stats_cdf_negative_binomial":{"desc":"Calculates any one parameter of the negative binomial distribution given values for the others.","params":[{"required":"yes","param":"float $par1"},{"required":"yes","param":"float $par2"},{"required":"yes","param":"float $par3"},{"required":"yes","param":"int $which"}],"returns":"float"},"stats_cdf_noncentral_chisquare":{"desc":"Calculates any one parameter of the non-central chi-square distribution given values for the others.","params":[{"required":"yes","param":"float $par1"},{"required":"yes","param":"float $par2"},{"required":"yes","param":"float $par3"},{"required":"yes","param":"int $which"}],"returns":"float"},"stats_cdf_noncentral_f":{"desc":"Calculates any one parameter of the Non-central F distribution given values for the others.","params":[{"required":"yes","param":"float $par1"},{"required":"yes","param":"float $par2"},{"required":"yes","param":"float $par3"},{"required":"yes","param":"float $par4"},{"required":"yes","param":"int $which"}],"returns":"float"},"stats_cdf_poisson":{"desc":"Calculates any one parameter of the Poisson distribution given values for the others.","params":[{"required":"yes","param":"float $par1"},{"required":"yes","param":"float $par2"},{"required":"yes","param":"int $which"}],"returns":"float"},"stats_cdf_t":{"desc":"Calculates any one parameter of the T distribution given values for the others.","params":[{"required":"yes","param":"float $par1"},{"required":"yes","param":"float $par2"},{"required":"yes","param":"int $which"}],"returns":"float"},"stats_cdf_uniform":{"desc":"Not documented","params":[{"required":"yes","param":"float $par1"},{"required":"yes","param":"float $par2"},{"required":"yes","param":"float $par3"},{"required":"yes","param":"int $which"}],"returns":"float"},"stats_cdf_weibull":{"desc":"Not documented","params":[{"required":"yes","param":"float $par1"},{"required":"yes","param":"float $par2"},{"required":"yes","param":"float $par3"},{"required":"yes","param":"int $which"}],"returns":"float"},"stats_covariance":{"desc":"Computes the covariance of two data sets","params":[{"required":"yes","param":"array $a"},{"required":"yes","param":"array $b"}],"returns":"float"},"stats_dens_beta":{"desc":"Not documented","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $a"},{"required":"yes","param":"float $b"}],"returns":"float"},"stats_dens_cauchy":{"desc":"Not documented","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $ave"},{"required":"yes","param":"float $stdev"}],"returns":"float"},"stats_dens_chisquare":{"desc":"Not documented","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $dfr"}],"returns":"float"},"stats_dens_exponential":{"desc":"Not documented","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $scale"}],"returns":"float"},"stats_dens_f":{"desc":"","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $dfr1"},{"required":"yes","param":"float $dfr2"}],"returns":"float"},"stats_dens_gamma":{"desc":"Not documented","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $shape"},{"required":"yes","param":"float $scale"}],"returns":"float"},"stats_dens_laplace":{"desc":"Not documented","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $ave"},{"required":"yes","param":"float $stdev"}],"returns":"float"},"stats_dens_logistic":{"desc":"Not documented","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $ave"},{"required":"yes","param":"float $stdev"}],"returns":"float"},"stats_dens_negative_binomial":{"desc":"Not documented","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $n"},{"required":"yes","param":"float $pi"}],"returns":"float"},"stats_dens_normal":{"desc":"Not documented","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $ave"},{"required":"yes","param":"float $stdev"}],"returns":"float"},"stats_dens_pmf_binomial":{"desc":"Not documented","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $n"},{"required":"yes","param":"float $pi"}],"returns":"float"},"stats_dens_pmf_hypergeometric":{"desc":"","params":[{"required":"yes","param":"float $n1"},{"required":"yes","param":"float $n2"},{"required":"yes","param":"float $N1"},{"required":"yes","param":"float $N2"}],"returns":"float"},"stats_dens_pmf_poisson":{"desc":"Not documented","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $lb"}],"returns":"float"},"stats_dens_t":{"desc":"Not documented","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $dfr"}],"returns":"float"},"stats_dens_weibull":{"desc":"Not documented","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $a"},{"required":"yes","param":"float $b"}],"returns":"float"},"stats_den_uniform":{"desc":"Not documented","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $a"},{"required":"yes","param":"float $b"}],"returns":"float"},"stats_kurtosis":{"desc":"Computes the kurtosis of the data in the array","params":[{"required":"yes","param":"array $a"}],"returns":"float"},"stats_rand_gen_beta":{"desc":"Generates beta random deviate","params":[{"required":"yes","param":"float $a"},{"required":"yes","param":"float $b"}],"returns":"float"},"stats_rand_gen_chisquare":{"desc":"Generates random deviate from the distribution of a chisquare with &quot;df&quot; degrees of freedom random variable.","params":[{"required":"yes","param":"float $df"}],"returns":"float"},"stats_rand_gen_exponential":{"desc":"Generates a single random deviate from an exponential distribution with mean &quot;av&quot;","params":[{"required":"yes","param":"float $av"}],"returns":"float"},"stats_rand_gen_f":{"desc":"Generates a random deviate","params":[{"required":"yes","param":"float $dfn"},{"required":"yes","param":"float $dfd"}],"returns":"float"},"stats_rand_gen_funiform":{"desc":"Generates uniform float between low (exclusive) and high (exclusive)","params":[{"required":"yes","param":"float $low"},{"required":"yes","param":"float $high"}],"returns":"float"},"stats_rand_gen_gamma":{"desc":"Generates random deviates from a gamma distribution","params":[{"required":"yes","param":"float $a"},{"required":"yes","param":"float $r"}],"returns":"float"},"stats_rand_gen_noncenral_chisquare":{"desc":"Generates random deviate from the distribution of a noncentral chisquare with &quot;df&quot; degrees of freedom and noncentrality parameter &quot;xnonc&quot;. d must be &gt;= 1.0, xnonc must &gt;= 0.0","params":[{"required":"yes","param":"float $df"},{"required":"yes","param":"float $xnonc"}],"returns":"float"},"stats_rand_gen_noncentral_f":{"desc":"Generates a random deviate from the noncentral F (variance ratio) distribution with &quot;dfn&quot; degrees of freedom in the numerator, and &quot;dfd&quot; degrees of freedom in the denominator, and noncentrality parameter &quot;xnonc&quot;. Method : directly generates ratio of noncentral numerator chisquare variate to central denominator chisquare variate.","params":[{"required":"yes","param":"float $dfn"},{"required":"yes","param":"float $dfd"},{"required":"yes","param":"float $xnonc"}],"returns":"float"},"stats_rand_gen_noncentral_t":{"desc":"Generates a single random deviate from a noncentral T distribution","params":[{"required":"yes","param":"float $df"},{"required":"yes","param":"float $xnonc"}],"returns":"float"},"stats_rand_gen_normal":{"desc":"Generates a single random deviate from a normal distribution with mean, av, and standard deviation, sd (sd &gt;= 0). Method : Renames SNORM from TOMS as slightly modified by BWB to use RANF instead of SUNIF.","params":[{"required":"yes","param":"float $av"},{"required":"yes","param":"float $sd"}],"returns":"float"},"stats_rand_gen_t":{"desc":"Generates a single random deviate from a T distribution","params":[{"required":"yes","param":"float $df"}],"returns":"float"},"stats_rand_ranf":{"desc":"Returns a random floating point number from a uniform distribution over 0 - 1 (endpoints of this interval are not returned) using the current generator","params":[],"returns":"float"},"stats_skew":{"desc":"Computes the skewness of the data in the array","params":[{"required":"yes","param":"array $a"}],"returns":"float"},"stats_standard_deviation":{"desc":"Returns the standard deviation","params":[{"required":"yes","param":"array $a"},{"required":"no","param":"bool $sample = false"}],"returns":"float"},"stats_stat_binomial_coef":{"desc":"Not documented","params":[{"required":"yes","param":"int $x"},{"required":"yes","param":"int $n"}],"returns":"float"},"stats_stat_correlation":{"desc":"Not documented","params":[{"required":"yes","param":"array $arr1"},{"required":"yes","param":"array $arr2"}],"returns":"float"},"stats_stat_gennch":{"desc":"Not documented","params":[{"required":"yes","param":"int $n"}],"returns":"float"},"stats_stat_independent_t":{"desc":"Not documented","params":[{"required":"yes","param":"array $arr1"},{"required":"yes","param":"array $arr2"}],"returns":"float"},"stats_stat_innerproduct":{"desc":"","params":[{"required":"yes","param":"array $arr1"},{"required":"yes","param":"array $arr2"}],"returns":"float"},"stats_stat_noncentral_t":{"desc":"Calculates any one parameter of the noncentral t distribution give values for the others.","params":[{"required":"yes","param":"float $par1"},{"required":"yes","param":"float $par2"},{"required":"yes","param":"float $par3"},{"required":"yes","param":"int $which"}],"returns":"float"},"stats_stat_paired_t":{"desc":"Not documented","params":[{"required":"yes","param":"array $arr1"},{"required":"yes","param":"array $arr2"}],"returns":"float"},"stats_stat_percentile":{"desc":"Not documented","params":[{"required":"yes","param":"float $df"},{"required":"yes","param":"float $xnonc"}],"returns":"float"},"stats_stat_powersum":{"desc":"Not documented","params":[{"required":"yes","param":"array $arr"},{"required":"yes","param":"float $power"}],"returns":"float"},"stats_variance":{"desc":"Returns the population variance","params":[{"required":"yes","param":"array $a"},{"required":"no","param":"bool $sample = false"}],"returns":"float"},"swf_textwidth":{"desc":"Get the width of a string","params":[{"required":"yes","param":"string $str"}],"returns":"float"},"tan":{"desc":"Tangent","params":[{"required":"yes","param":"float $arg"}],"returns":"float"},"tanh":{"desc":"Hyperbolic tangent","params":[{"required":"yes","param":"float $arg"}],"returns":"float"},"hw_api_object":{"desc":"Creates a new instance of class hw_api_object","params":[{"required":"yes","param":"array $parameter"}],"returns":"object"},"apc_bin_dumpfile":{"desc":"Output a binary dump of cached files and user variables to a file","params":[{"required":"yes","param":"array $files"},{"required":"yes","param":"array $user_vars"},{"required":"yes","param":"string $filename"},{"required":"no","param":"int $flags = &#039;&#039;"},{"required":"no","param":"resource $context = &#039;&#039;"}],"returns":"int"},"apc_dec":{"desc":"Decrease a stored number","params":[{"required":"yes","param":"string $key"},{"required":"no","param":"int $step = 1"},{"required":"no","param":"bool $success = &#039;&#039;"}],"returns":"int"},"apc_inc":{"desc":"Increase a stored number","params":[{"required":"yes","param":"string $key"},{"required":"no","param":"int $step = 1"},{"required":"no","param":"bool $success = &#039;&#039;"}],"returns":"int"},"array_push":{"desc":"Push one or more elements onto the end of array","params":[{"required":"yes","param":"array $array"},{"required":"yes","param":"mixed $var"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"int"},"array_unshift":{"desc":"Prepend one or more elements to the beginning of an array","params":[{"required":"yes","param":"array $array"},{"required":"yes","param":"mixed $var"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"int"},"bccomp":{"desc":"Compare two arbitrary precision numbers","params":[{"required":"yes","param":"string $left_operand"},{"required":"yes","param":"string $right_operand"},{"required":"no","param":"int $scale = &#039;&#039;"}],"returns":"int"},"bzclose":{"desc":"Close a bzip2 file","params":[{"required":"yes","param":"resource $bz"}],"returns":"int"},"bzerrno":{"desc":"Returns a bzip2 error number","params":[{"required":"yes","param":"resource $bz"}],"returns":"int"},"bzflush":{"desc":"Force a write of all buffered data","params":[{"required":"yes","param":"resource $bz"}],"returns":"int"},"bzwrite":{"desc":"Binary safe bzip2 file write","params":[{"required":"yes","param":"resource $bz"},{"required":"yes","param":"string $data"},{"required":"no","param":"int $length = &#039;&#039;"}],"returns":"int"},"cairo_font_face_get_type":{"desc":"Description","params":[{"required":"yes","param":"CairoFontFace $fontface"}],"returns":"int"},"cairo_font_face_status":{"desc":"Check for CairoFontFace errors","params":[{"required":"yes","param":"CairoFontFace $fontface"}],"returns":"int"},"cairo_font_options_get_antialias":{"desc":"Description","params":[{"required":"yes","param":"CairoFontOptions $options"}],"returns":"int"},"cairo_font_options_get_hint_metrics":{"desc":"Description","params":[{"required":"yes","param":"CairoFontOptions $options"}],"returns":"int"},"cairo_font_options_get_hint_style":{"desc":"Description","params":[{"required":"yes","param":"CairoFontOptions $options"}],"returns":"int"},"cairo_font_options_get_subpixel_order":{"desc":"Description","params":[{"required":"yes","param":"CairoFontOptions $options"}],"returns":"int"},"cairo_font_options_hash":{"desc":"Description","params":[{"required":"yes","param":"CairoFontOptions $options"}],"returns":"int"},"cairo_font_options_status":{"desc":"Description","params":[{"required":"yes","param":"CairoFontOptions $options"}],"returns":"int"},"cairo_format_stride_for_width":{"desc":"Description","params":[{"required":"yes","param":"int $format"},{"required":"yes","param":"int $width"}],"returns":"int"},"cairo_get_antialias":{"desc":"The getAntialias purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"int"},"cairo_get_dash_count":{"desc":"The getDashCount purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"int"},"cairo_get_fill_rule":{"desc":"The getFillRule purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"int"},"cairo_get_line_cap":{"desc":"The getLineCap purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"int"},"cairo_get_line_join":{"desc":"The getLineJoin purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"int"},"cairo_get_operator":{"desc":"The getOperator purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"int"},"cairo_image_surface_get_format":{"desc":"Description","params":[{"required":"yes","param":"CairoImageSurface $surface"}],"returns":"int"},"cairo_image_surface_get_height":{"desc":"Description","params":[{"required":"yes","param":"CairoImageSurface $surface"}],"returns":"int"},"cairo_image_surface_get_stride":{"desc":"Description","params":[{"required":"yes","param":"CairoImageSurface $surface"}],"returns":"int"},"cairo_image_surface_get_width":{"desc":"Description","params":[{"required":"yes","param":"CairoImageSurface $surface"}],"returns":"int"},"cairo_pattern_get_color_stop_count":{"desc":"Description","params":[{"required":"yes","param":"CairoGradientPattern $pattern"}],"returns":"int"},"cairo_pattern_get_extend":{"desc":"Description","params":[{"required":"yes","param":"string $pattern"}],"returns":"int"},"cairo_pattern_get_filter":{"desc":"Description","params":[{"required":"yes","param":"CairoSurfacePattern $pattern"}],"returns":"int"},"cairo_pattern_get_type":{"desc":"Description","params":[{"required":"yes","param":"CairoPattern $pattern"}],"returns":"int"},"cairo_pattern_status":{"desc":"Description","params":[{"required":"yes","param":"CairoPattern $pattern"}],"returns":"int"},"cairo_scaled_font_get_type":{"desc":"Description","params":[{"required":"yes","param":"CairoScaledFont $scaledfont"}],"returns":"int"},"cairo_scaled_font_status":{"desc":"Description","params":[{"required":"yes","param":"CairoScaledFont $scaledfont"}],"returns":"int"},"cairo_status":{"desc":"The status purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"int"},"cairo_surface_get_content":{"desc":"Description","params":[{"required":"yes","param":"CairoSurface $surface"}],"returns":"int"},"cairo_surface_get_type":{"desc":"Description","params":[{"required":"yes","param":"CairoSurface $surface"}],"returns":"int"},"cairo_surface_status":{"desc":"Description","params":[{"required":"yes","param":"CairoSurface $surface"}],"returns":"int"},"cairo_version":{"desc":"Retrives cairo&#039;s library version","params":[],"returns":"int"},"cal_days_in_month":{"desc":"Return the number of days in a month for a given year and calendar","params":[{"required":"yes","param":"int $calendar"},{"required":"yes","param":"int $month"},{"required":"yes","param":"int $year"}],"returns":"int"},"cal_to_jd":{"desc":"Converts from a supported calendar to Julian Day Count","params":[{"required":"yes","param":"int $calendar"},{"required":"yes","param":"int $month"},{"required":"yes","param":"int $day"},{"required":"yes","param":"int $year"}],"returns":"int"},"collator_compare":{"desc":"Compare two Unicode strings","params":[{"required":"yes","param":"string $str1"},{"required":"yes","param":"string $str2"},{"required":"yes","param":"Collator $coll"}],"returns":"int"},"collator_get_attribute":{"desc":"Get collation attribute value","params":[{"required":"yes","param":"int $attr"},{"required":"yes","param":"Collator $coll"}],"returns":"int"},"collator_get_error_code":{"desc":"Get collator&#039;s last error code","params":[{"required":"yes","param":"Collator $coll"}],"returns":"int"},"collator_get_strength":{"desc":"Get current collation strength","params":[{"required":"yes","param":"Collator $coll"}],"returns":"int"},"connection_aborted":{"desc":"Check whether client disconnected","params":[],"returns":"int"},"connection_status":{"desc":"Returns connection status bitfield","params":[],"returns":"int"},"connection_timeout":{"desc":"Check if the script timed out","params":[],"returns":"int"},"count":{"desc":"Count all elements in an array, or properties in an object","params":[{"required":"yes","param":"mixed $var"},{"required":"no","param":"int $mode = COUNT_NORMAL"}],"returns":"int"},"crc32":{"desc":"Calculates the crc32 polynomial of a string","params":[{"required":"yes","param":"string $str"}],"returns":"int"},"cubrid_affected_rows":{"desc":"Return the number of rows affected by the last SQL statement","params":[{"required":"no","param":"resource $req_identifier = &#039;&#039;"}],"returns":"int"},"cubrid_close_prepare":{"desc":"Close the request handle","params":[{"required":"yes","param":"resource $req_identifier"}],"returns":"int"},"cubrid_col_size":{"desc":"Get the number of elements in collection type column using OID","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $oid"},{"required":"yes","param":"string $attr_name"}],"returns":"int"},"cubrid_data_seek":{"desc":"Move the internal row pointer of the CUBRID result","params":[{"required":"yes","param":"resource $req_identifier"},{"required":"yes","param":"int $row_number"}],"returns":"int"},"cubrid_errno":{"desc":"Return the numerical value of the error message from previous CUBRID operation","params":[{"required":"no","param":"resource $conn_identifier = &#039;&#039;"}],"returns":"int"},"cubrid_error_code":{"desc":"Get error code for the most recent function call","params":[],"returns":"int"},"cubrid_error_code_facility":{"desc":"Get the facility code of error","params":[],"returns":"int"},"cubrid_field_len":{"desc":"Get the maximum length of the specified field","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_offset"}],"returns":"int"},"cubrid_is_instance":{"desc":"Check whether the instance pointed by OID exists","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $oid"}],"returns":"int"},"cubrid_load_from_glo":{"desc":"Read data from a GLO instance and save it in a file","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $oid"},{"required":"yes","param":"string $file_name"}],"returns":"int"},"cubrid_move_cursor":{"desc":"Move the cursor in the result","params":[{"required":"yes","param":"resource $req_identifier"},{"required":"yes","param":"int $offset"},{"required":"no","param":"int $origin = CUBRID_CURSOR_CURRENT"}],"returns":"int"},"cubrid_num_cols":{"desc":"Return the number of columns in the result set","params":[{"required":"yes","param":"resource $req_identifier"}],"returns":"int"},"cubrid_num_fields":{"desc":"Return the number of columns in the result set","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"cubrid_num_rows":{"desc":"Get the number of rows in the result set","params":[{"required":"yes","param":"resource $req_identifier"}],"returns":"int"},"cubrid_put":{"desc":"Update a column using OID","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $oid"},{"required":"no","param":"string $attr = &#039;&#039;"},{"required":"yes","param":"mixed $value"}],"returns":"int"},"cubrid_save_to_glo":{"desc":"Save requested file in a GLO instance","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $oid"},{"required":"yes","param":"string $file_name"}],"returns":"int"},"cubrid_send_glo":{"desc":"Read data from glo and send it to std output","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $oid"}],"returns":"int"},"curl_errno":{"desc":"Return the last error number","params":[{"required":"yes","param":"resource $ch"}],"returns":"int"},"curl_multi_add_handle":{"desc":"Add a normal cURL handle to a cURL multi handle","params":[{"required":"yes","param":"resource $mh"},{"required":"yes","param":"resource $ch"}],"returns":"int"},"curl_multi_exec":{"desc":"Run the sub-connections of the current cURL handle","params":[{"required":"yes","param":"resource $mh"},{"required":"yes","param":"int $still_running"}],"returns":"int"},"curl_multi_remove_handle":{"desc":"Remove a multi handle from a set of cURL handles","params":[{"required":"yes","param":"resource $mh"},{"required":"yes","param":"resource $ch"}],"returns":"int"},"curl_multi_select":{"desc":"Wait for activity on any curl_multi connection","params":[{"required":"yes","param":"resource $mh"},{"required":"no","param":"float $timeout = 1.0"}],"returns":"int"},"datefmt_get_calendar":{"desc":"Get the calendar used for the IntlDateFormatter","params":[{"required":"yes","param":"IntlDateFormatter $fmt"}],"returns":"int"},"datefmt_get_datetype":{"desc":"Get the datetype used for the IntlDateFormatter","params":[{"required":"yes","param":"IntlDateFormatter $fmt"}],"returns":"int"},"datefmt_get_error_code":{"desc":"Get the error code from last operation","params":[{"required":"yes","param":"IntlDateFormatter $fmt"}],"returns":"int"},"datefmt_get_timetype":{"desc":"Get the timetype used for the IntlDateFormatter","params":[{"required":"yes","param":"IntlDateFormatter $fmt"}],"returns":"int"},"datefmt_parse":{"desc":"Parse string to a timestamp value","params":[{"required":"yes","param":"string $value"},{"required":"no","param":"int $position = &#039;&#039;"},{"required":"yes","param":"IntlDateFormatter $fmt"}],"returns":"int"},"db2_cursor_type":{"desc":"Returns the cursor type used by a statement resource","params":[{"required":"yes","param":"resource $stmt"}],"returns":"int"},"db2_field_display_size":{"desc":"Returns the maximum number of bytes required to display a column","params":[{"required":"yes","param":"resource $stmt"},{"required":"yes","param":"mixed $column"}],"returns":"int"},"db2_field_num":{"desc":"Returns the position of the named column in a result set","params":[{"required":"yes","param":"resource $stmt"},{"required":"yes","param":"mixed $column"}],"returns":"int"},"db2_field_precision":{"desc":"Returns the precision of the indicated column in a result set","params":[{"required":"yes","param":"resource $stmt"},{"required":"yes","param":"mixed $column"}],"returns":"int"},"db2_field_scale":{"desc":"Returns the scale of the indicated column in a result set","params":[{"required":"yes","param":"resource $stmt"},{"required":"yes","param":"mixed $column"}],"returns":"int"},"db2_field_width":{"desc":"Returns the width of the current value of the indicated column in a result set","params":[{"required":"yes","param":"resource $stmt"},{"required":"yes","param":"mixed $column"}],"returns":"int"},"db2_num_fields":{"desc":"Returns the number of fields contained in a result set","params":[{"required":"yes","param":"resource $stmt"}],"returns":"int"},"dbase_create":{"desc":"Creates a database","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"array $fields"}],"returns":"int"},"dbase_numfields":{"desc":"Gets the number of fields of a database","params":[{"required":"yes","param":"int $dbase_identifier"}],"returns":"int"},"dbase_numrecords":{"desc":"Gets the number of records in a database","params":[{"required":"yes","param":"int $dbase_identifier"}],"returns":"int"},"dbase_open":{"desc":"Opens a database","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"int $mode"}],"returns":"int"},"dbplus_add":{"desc":"Add a tuple to a relation","params":[{"required":"yes","param":"resource $relation"},{"required":"yes","param":"array $tuple"}],"returns":"int"},"dbplus_curr":{"desc":"Get current tuple from relation","params":[{"required":"yes","param":"resource $relation"},{"required":"yes","param":"array $tuple"}],"returns":"int"},"dbplus_errno":{"desc":"Get error code for last operation","params":[],"returns":"int"},"dbplus_find":{"desc":"Set a constraint on a relation","params":[{"required":"yes","param":"resource $relation"},{"required":"yes","param":"array $constraints"},{"required":"yes","param":"mixed $tuple"}],"returns":"int"},"dbplus_first":{"desc":"Get first tuple from relation","params":[{"required":"yes","param":"resource $relation"},{"required":"yes","param":"array $tuple"}],"returns":"int"},"dbplus_flush":{"desc":"Flush all changes made on a relation","params":[{"required":"yes","param":"resource $relation"}],"returns":"int"},"dbplus_freealllocks":{"desc":"Free all locks held by this client","params":[],"returns":"int"},"dbplus_freelock":{"desc":"Release write lock on tuple","params":[{"required":"yes","param":"resource $relation"},{"required":"yes","param":"string $tuple"}],"returns":"int"},"dbplus_freerlocks":{"desc":"Free all tuple locks on given relation","params":[{"required":"yes","param":"resource $relation"}],"returns":"int"},"dbplus_getlock":{"desc":"Get a write lock on a tuple","params":[{"required":"yes","param":"resource $relation"},{"required":"yes","param":"string $tuple"}],"returns":"int"},"dbplus_getunique":{"desc":"Get an id number unique to a relation","params":[{"required":"yes","param":"resource $relation"},{"required":"yes","param":"int $uniqueid"}],"returns":"int"},"dbplus_info":{"desc":"Get information about a relation","params":[{"required":"yes","param":"resource $relation"},{"required":"yes","param":"string $key"},{"required":"yes","param":"array $result"}],"returns":"int"},"dbplus_last":{"desc":"Get last tuple from relation","params":[{"required":"yes","param":"resource $relation"},{"required":"yes","param":"array $tuple"}],"returns":"int"},"dbplus_lockrel":{"desc":"Request write lock on relation","params":[{"required":"yes","param":"resource $relation"}],"returns":"int"},"dbplus_next":{"desc":"Get next tuple from relation","params":[{"required":"yes","param":"resource $relation"},{"required":"yes","param":"array $tuple"}],"returns":"int"},"dbplus_prev":{"desc":"Get previous tuple from relation","params":[{"required":"yes","param":"resource $relation"},{"required":"yes","param":"array $tuple"}],"returns":"int"},"dbplus_rchperm":{"desc":"Change relation permissions","params":[{"required":"yes","param":"resource $relation"},{"required":"yes","param":"int $mask"},{"required":"yes","param":"string $user"},{"required":"yes","param":"string $group"}],"returns":"int"},"dbplus_restorepos":{"desc":"Restore position","params":[{"required":"yes","param":"resource $relation"},{"required":"yes","param":"array $tuple"}],"returns":"int"},"dbplus_rrename":{"desc":"Rename a relation","params":[{"required":"yes","param":"resource $relation"},{"required":"yes","param":"string $name"}],"returns":"int"},"dbplus_runlink":{"desc":"Remove relation from filesystem","params":[{"required":"yes","param":"resource $relation"}],"returns":"int"},"dbplus_rzap":{"desc":"Remove all tuples from relation","params":[{"required":"yes","param":"resource $relation"}],"returns":"int"},"dbplus_savepos":{"desc":"Save position","params":[{"required":"yes","param":"resource $relation"}],"returns":"int"},"dbplus_setindex":{"desc":"Set index","params":[{"required":"yes","param":"resource $relation"},{"required":"yes","param":"string $idx_name"}],"returns":"int"},"dbplus_setindexbynumber":{"desc":"Set index by number","params":[{"required":"yes","param":"resource $relation"},{"required":"yes","param":"int $idx_number"}],"returns":"int"},"dbplus_tremove":{"desc":"Remove tuple and return new current tuple","params":[{"required":"yes","param":"resource $relation"},{"required":"yes","param":"array $tuple"},{"required":"no","param":"array $current = &#039;&#039;"}],"returns":"int"},"dbplus_undo":{"desc":"Undo","params":[{"required":"yes","param":"resource $relation"}],"returns":"int"},"dbplus_undoprepare":{"desc":"Prepare undo","params":[{"required":"yes","param":"resource $relation"}],"returns":"int"},"dbplus_unlockrel":{"desc":"Give up write lock on relation","params":[{"required":"yes","param":"resource $relation"}],"returns":"int"},"dbplus_unselect":{"desc":"Remove a constraint from relation","params":[{"required":"yes","param":"resource $relation"}],"returns":"int"},"dbplus_update":{"desc":"Update specified tuple in relation","params":[{"required":"yes","param":"resource $relation"},{"required":"yes","param":"array $old"},{"required":"yes","param":"array $new"}],"returns":"int"},"dbplus_xlockrel":{"desc":"Request exclusive lock on relation","params":[{"required":"yes","param":"resource $relation"}],"returns":"int"},"dbplus_xunlockrel":{"desc":"Free exclusive lock on relation","params":[{"required":"yes","param":"resource $relation"}],"returns":"int"},"dbx_close":{"desc":"Close an open connection/database","params":[{"required":"yes","param":"object $link_identifier"}],"returns":"int"},"dbx_compare":{"desc":"Compare two rows for sorting purposes","params":[{"required":"yes","param":"array $row_a"},{"required":"yes","param":"array $row_b"},{"required":"yes","param":"string $column_key"},{"required":"no","param":"int $flags = DBX_CMP_ASC | DBX_CMP_NATIVE"}],"returns":"int"},"dio_seek":{"desc":"Seeks to pos on fd from whence","params":[{"required":"yes","param":"resource $fd"},{"required":"yes","param":"int $pos"},{"required":"no","param":"int $whence = SEEK_SET"}],"returns":"int"},"dio_write":{"desc":"Writes data to fd with optional truncation at length","params":[{"required":"yes","param":"resource $fd"},{"required":"yes","param":"string $data"},{"required":"no","param":"int $len = &#039;&#039;"}],"returns":"int"},"domxml_xslt_version":{"desc":"Gets the XSLT library version","params":[],"returns":"int"},"dotnet_load":{"desc":"Loads a DOTNET module","params":[{"required":"yes","param":"string $assembly_name"},{"required":"no","param":"string $datatype_name = &#039;&#039;"},{"required":"no","param":"int $codepage = &#039;&#039;"}],"returns":"int"},"easter_date":{"desc":"Get Unix timestamp for midnight on Easter of a given year","params":[{"required":"no","param":"int $year = &#039;&#039;"}],"returns":"int"},"easter_days":{"desc":"Get number of days after March 21 on which Easter falls for a given year","params":[{"required":"no","param":"int $year = &#039;&#039;"},{"required":"no","param":"int $method = CAL_EASTER_DEFAULT"}],"returns":"int"},"ereg":{"desc":"Regular expression match","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"string $string"},{"required":"no","param":"array $regs = &#039;&#039;"}],"returns":"int"},"eregi":{"desc":"Case insensitive regular expression match","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"string $string"},{"required":"no","param":"array $regs = &#039;&#039;"}],"returns":"int"},"error_reporting":{"desc":"Sets which PHP errors are reported","params":[{"required":"no","param":"int $level = &#039;&#039;"}],"returns":"int"},"event_base_loop":{"desc":"Handle events","params":[{"required":"yes","param":"resource $event_base"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"int"},"exif_imagetype":{"desc":"Determine the type of an image","params":[{"required":"yes","param":"string $filename"}],"returns":"int"},"expect_expectl":{"desc":"Waits until the output from a process matches one of the patterns, a specified time period has passed, or an EOF is seen","params":[{"required":"yes","param":"resource $expect"},{"required":"yes","param":"array $cases"},{"required":"no","param":"array $match = &#039;&#039;"}],"returns":"int"},"extract":{"desc":"Import variables into the current symbol table from an array","params":[{"required":"yes","param":"array $var_array"},{"required":"no","param":"int $extract_type = EXTR_OVERWRITE"},{"required":"no","param":"string $prefix = &#039;&#039;"}],"returns":"int"},"ezmlm_hash":{"desc":"Calculate the hash value needed by EZMLM","params":[{"required":"yes","param":"string $addr"}],"returns":"int"},"fam_pending":{"desc":"Check for pending FAM events","params":[{"required":"yes","param":"resource $fam"}],"returns":"int"},"fbsql_affected_rows":{"desc":"Get number of affected rows in previous FrontBase operation","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"int"},"fbsql_blob_size":{"desc":"Get the size of a BLOB","params":[{"required":"yes","param":"string $blob_handle"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"int"},"fbsql_clob_size":{"desc":"Get the size of a CLOB","params":[{"required":"yes","param":"string $clob_handle"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"int"},"fbsql_db_status":{"desc":"Get the status for a given database","params":[{"required":"yes","param":"string $database_name"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"int"},"fbsql_errno":{"desc":"Returns the error number from previous operation","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"int"},"fbsql_field_len":{"desc":"Returns the length of the specified field","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $field_offset = &#039;&#039;"}],"returns":"int"},"fbsql_insert_id":{"desc":"Get the id generated from the previous INSERT operation","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"int"},"fbsql_num_fields":{"desc":"Get number of fields in result","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"fbsql_num_rows":{"desc":"Get number of rows in result","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"fbsql_rows_fetched":{"desc":"Get the number of rows affected by the last statement","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"fdf_errno":{"desc":"Return error code for last fdf operation","params":[],"returns":"int"},"fdf_get_flags":{"desc":"Gets the flags of a field","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"string $fieldname"},{"required":"yes","param":"int $whichflags"}],"returns":"int"},"fileatime":{"desc":"Gets last access time of file","params":[{"required":"yes","param":"string $filename"}],"returns":"int"},"filectime":{"desc":"Gets inode change time of file","params":[{"required":"yes","param":"string $filename"}],"returns":"int"},"filegroup":{"desc":"Gets file group","params":[{"required":"yes","param":"string $filename"}],"returns":"int"},"fileinode":{"desc":"Gets file inode","params":[{"required":"yes","param":"string $filename"}],"returns":"int"},"filemtime":{"desc":"Gets file modification time","params":[{"required":"yes","param":"string $filename"}],"returns":"int"},"fileowner":{"desc":"Gets file owner","params":[{"required":"yes","param":"string $filename"}],"returns":"int"},"fileperms":{"desc":"Gets file permissions","params":[{"required":"yes","param":"string $filename"}],"returns":"int"},"filepro_fieldcount":{"desc":"Find out how many fields are in a filePro database","params":[],"returns":"int"},"filepro_fieldwidth":{"desc":"Gets the width of a field","params":[{"required":"yes","param":"int $field_number"}],"returns":"int"},"filepro_rowcount":{"desc":"Find out how many rows are in a filePro database","params":[],"returns":"int"},"filesize":{"desc":"Gets file size","params":[{"required":"yes","param":"string $filename"}],"returns":"int"},"file_put_contents":{"desc":"Write a string to a file","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"mixed $data"},{"required":"no","param":"int $flags = &#039;&#039;"},{"required":"no","param":"resource $context = &#039;&#039;"}],"returns":"int"},"filter_id":{"desc":"Returns the filter ID belonging to a named filter","params":[{"required":"yes","param":"string $filtername"}],"returns":"int"},"fpassthru":{"desc":"Output all remaining data on a file pointer","params":[{"required":"yes","param":"resource $handle"}],"returns":"int"},"fprintf":{"desc":"Write a formatted string to a stream","params":[{"required":"yes","param":"resource $handle"},{"required":"yes","param":"string $format"},{"required":"no","param":"mixed $args = &#039;&#039;"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"int"},"fputcsv":{"desc":"Format line as CSV and write to file pointer","params":[{"required":"yes","param":"resource $handle"},{"required":"yes","param":"array $fields"},{"required":"no","param":"string $delimiter = &#039;"},{"required":"yes","param":"&#039;"},{"required":"no","param":"string $enclosure = &#039;&quot;&#039;"}],"returns":"int"},"FrenchToJD":{"desc":"Converts a date from the French Republican Calendar to a Julian Day Count","params":[{"required":"yes","param":"int $month"},{"required":"yes","param":"int $day"},{"required":"yes","param":"int $year"}],"returns":"int"},"fseek":{"desc":"Seeks on a file pointer","params":[{"required":"yes","param":"resource $handle"},{"required":"yes","param":"int $offset"},{"required":"no","param":"int $whence = SEEK_SET"}],"returns":"int"},"ftell":{"desc":"Returns the current position of the file read/write pointer","params":[{"required":"yes","param":"resource $handle"}],"returns":"int"},"ftok":{"desc":"Convert a pathname and a project identifier to a System V IPC key","params":[{"required":"yes","param":"string $pathname"},{"required":"yes","param":"string $proj"}],"returns":"int"},"ftp_chmod":{"desc":"Set permissions on a file via FTP","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"int $mode"},{"required":"yes","param":"string $filename"}],"returns":"int"},"ftp_mdtm":{"desc":"Returns the last modified time of the given file","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"string $remote_file"}],"returns":"int"},"ftp_nb_continue":{"desc":"Continues retrieving/sending a file (non-blocking)","params":[{"required":"yes","param":"resource $ftp_stream"}],"returns":"int"},"ftp_nb_fget":{"desc":"Retrieves a file from the FTP server and writes it to an open file (non-blocking)","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"resource $handle"},{"required":"yes","param":"string $remote_file"},{"required":"yes","param":"int $mode"},{"required":"no","param":"int $resumepos = &#039;&#039;"}],"returns":"int"},"ftp_nb_fput":{"desc":"Stores a file from an open file to the FTP server (non-blocking)","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"string $remote_file"},{"required":"yes","param":"resource $handle"},{"required":"yes","param":"int $mode"},{"required":"no","param":"int $startpos = &#039;&#039;"}],"returns":"int"},"ftp_nb_get":{"desc":"Retrieves a file from the FTP server and writes it to a local file (non-blocking)","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"string $local_file"},{"required":"yes","param":"string $remote_file"},{"required":"yes","param":"int $mode"},{"required":"no","param":"int $resumepos = &#039;&#039;"}],"returns":"int"},"ftp_nb_put":{"desc":"Stores a file on the FTP server (non-blocking)","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"string $remote_file"},{"required":"yes","param":"string $local_file"},{"required":"yes","param":"int $mode"},{"required":"no","param":"int $startpos = &#039;&#039;"}],"returns":"int"},"ftp_size":{"desc":"Returns the size of the given file","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"string $remote_file"}],"returns":"int"},"func_num_args":{"desc":"Returns the number of arguments passed to the function","params":[],"returns":"int"},"fwrite":{"desc":"Binary-safe file write","params":[{"required":"yes","param":"resource $handle"},{"required":"yes","param":"string $string"},{"required":"no","param":"int $length = &#039;&#039;"}],"returns":"int"},"gc_collect_cycles":{"desc":"Forces collection of any existing garbage cycles","params":[],"returns":"int"},"geoip_id_by_name":{"desc":"Get the Internet connection type","params":[{"required":"yes","param":"string $hostname"}],"returns":"int"},"getlastmod":{"desc":"Gets time of last page modification","params":[],"returns":"int"},"getmygid":{"desc":"Get PHP script owner&#039;s GID","params":[],"returns":"int"},"getmyinode":{"desc":"Gets the inode of the current script","params":[],"returns":"int"},"getmypid":{"desc":"Gets PHP&#039;s process ID","params":[],"returns":"int"},"getmyuid":{"desc":"Gets PHP script owner&#039;s UID","params":[],"returns":"int"},"getprotobyname":{"desc":"Get protocol number associated with protocol name","params":[{"required":"yes","param":"string $name"}],"returns":"int"},"getrandmax":{"desc":"Show largest possible random value","params":[],"returns":"int"},"getservbyname":{"desc":"Get port number associated with an Internet service and protocol","params":[{"required":"yes","param":"string $service"},{"required":"yes","param":"string $protocol"}],"returns":"int"},"get_magic_quotes_gpc":{"desc":"Gets the current configuration setting of magic_quotes_gpc","params":[],"returns":"int"},"get_magic_quotes_runtime":{"desc":"Gets the current active configuration setting of magic_quotes_runtime","params":[],"returns":"int"},"gmmktime":{"desc":"Get Unix timestamp for a GMT date","params":[{"required":"no","param":"int $hour = gmdate(&quot;H&quot;)"},{"required":"no","param":"int $minute = gmdate(&quot;i&quot;)"},{"required":"no","param":"int $second = gmdate(&quot;s&quot;)"},{"required":"no","param":"int $month = gmdate(&quot;n&quot;)"},{"required":"no","param":"int $day = gmdate(&quot;j&quot;)"},{"required":"no","param":"int $year = gmdate(&quot;Y&quot;)"},{"required":"no","param":"int $is_dst = -1"}],"returns":"int"},"gmp_cmp":{"desc":"Compare numbers","params":[{"required":"yes","param":"resource $a"},{"required":"yes","param":"resource $b"}],"returns":"int"},"gmp_hamdist":{"desc":"Hamming distance","params":[{"required":"yes","param":"resource $a"},{"required":"yes","param":"resource $b"}],"returns":"int"},"gmp_intval":{"desc":"Convert GMP number to integer","params":[{"required":"yes","param":"resource $gmpnumber"}],"returns":"int"},"gmp_jacobi":{"desc":"Jacobi symbol","params":[{"required":"yes","param":"resource $a"},{"required":"yes","param":"resource $p"}],"returns":"int"},"gmp_legendre":{"desc":"Legendre symbol","params":[{"required":"yes","param":"resource $a"},{"required":"yes","param":"resource $p"}],"returns":"int"},"gmp_popcount":{"desc":"Population count","params":[{"required":"yes","param":"resource $a"}],"returns":"int"},"gmp_prob_prime":{"desc":"Check if number is &quot;probably prime&quot;","params":[{"required":"yes","param":"resource $a"},{"required":"no","param":"int $reps = 10"}],"returns":"int"},"gmp_scan0":{"desc":"Scan for 0","params":[{"required":"yes","param":"resource $a"},{"required":"yes","param":"int $start"}],"returns":"int"},"gmp_scan1":{"desc":"Scan for 1","params":[{"required":"yes","param":"resource $a"},{"required":"yes","param":"int $start"}],"returns":"int"},"gmp_sign":{"desc":"Sign of number","params":[{"required":"yes","param":"resource $a"}],"returns":"int"},"gnupg_getprotocol":{"desc":"Returns the currently active protocol for all operations","params":[{"required":"yes","param":"resource $identifier"}],"returns":"int"},"grapheme_stripos":{"desc":"Find position (in grapheme units) of first occurrence of a case-insensitive string","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"int $offset = &#039;&#039;"}],"returns":"int"},"grapheme_strlen":{"desc":"Get string length in grapheme units","params":[{"required":"yes","param":"string $input"}],"returns":"int"},"grapheme_strpos":{"desc":"Find position (in grapheme units) of first occurrence of a string","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"int $offset = &#039;&#039;"}],"returns":"int"},"grapheme_strripos":{"desc":"Find position (in grapheme units) of last occurrence of a case-insensitive string","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"int $offset = &#039;&#039;"}],"returns":"int"},"grapheme_strrpos":{"desc":"Find position (in grapheme units) of last occurrence of a string","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"int $offset = &#039;&#039;"}],"returns":"int"},"grapheme_substr":{"desc":"Return part of a string","params":[{"required":"yes","param":"string $string"},{"required":"yes","param":"int $start"},{"required":"no","param":"int $length = &#039;&#039;"}],"returns":"int"},"GregorianToJD":{"desc":"Converts a Gregorian date to Julian Day Count","params":[{"required":"yes","param":"int $month"},{"required":"yes","param":"int $day"},{"required":"yes","param":"int $year"}],"returns":"int"},"gupnp_context_get_port":{"desc":"Get the port","params":[{"required":"yes","param":"resource $context"}],"returns":"int"},"gupnp_context_get_subscription_timeout":{"desc":"Get the event subscription timeout","params":[{"required":"yes","param":"resource $context"}],"returns":"int"},"gzeof":{"desc":"Test for EOF on a gz-file pointer","params":[{"required":"yes","param":"resource $zp"}],"returns":"int"},"gzpassthru":{"desc":"Output all remaining data on a gz-file pointer","params":[{"required":"yes","param":"resource $zp"}],"returns":"int"},"gzseek":{"desc":"Seek on a gz-file pointer","params":[{"required":"yes","param":"resource $zp"},{"required":"yes","param":"int $offset"},{"required":"no","param":"int $whence = SEEK_SET"}],"returns":"int"},"gztell":{"desc":"Tell gz-file pointer read/write position","params":[{"required":"yes","param":"resource $zp"}],"returns":"int"},"gzwrite":{"desc":"Binary-safe gz-file write","params":[{"required":"yes","param":"resource $zp"},{"required":"yes","param":"string $string"},{"required":"no","param":"int $length = &#039;&#039;"}],"returns":"int"},"hash_update_stream":{"desc":"Pump data into an active hashing context from an open stream","params":[{"required":"yes","param":"resource $context"},{"required":"yes","param":"resource $handle"},{"required":"no","param":"int $length = -1"}],"returns":"int"},"http_request_method_exists":{"desc":"Check whether request method exists","params":[{"required":"yes","param":"mixed $method"}],"returns":"int"},"http_request_method_register":{"desc":"Register request method","params":[{"required":"yes","param":"string $method"}],"returns":"int"},"http_support":{"desc":"Check built-in HTTP support","params":[{"required":"no","param":"int $feature = &#039;&#039;"}],"returns":"int"},"hw_Connect":{"desc":"Opens a connection","params":[{"required":"yes","param":"string $host"},{"required":"yes","param":"int $port"},{"required":"no","param":"string $username = &#039;&#039;"},{"required":"yes","param":"string $password"}],"returns":"int"},"hw_cp":{"desc":"Copies objects","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"array $object_id_array"},{"required":"yes","param":"int $destination_id"}],"returns":"int"},"hw_DocByAnchor":{"desc":"Object id object belonging to anchor","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $anchorID"}],"returns":"int"},"hw_Document_Size":{"desc":"Size of hw_document","params":[{"required":"yes","param":"int $hw_document"}],"returns":"int"},"hw_Error":{"desc":"Error number","params":[{"required":"yes","param":"int $connection"}],"returns":"int"},"hw_GetRemote":{"desc":"Gets a remote document","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $objectID"}],"returns":"int"},"hw_GetText":{"desc":"Retrieve text document","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $objectID"},{"required":"no","param":"mixed $rootID/prefix = &#039;&#039;"}],"returns":"int"},"hw_InsColl":{"desc":"Insert collection","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $objectID"},{"required":"yes","param":"array $object_array"}],"returns":"int"},"hw_InsDoc":{"desc":"Insert document","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"int $parentID"},{"required":"yes","param":"string $object_record"},{"required":"no","param":"string $text = &#039;&#039;"}],"returns":"int"},"hw_InsertDocument":{"desc":"Upload any document","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $parent_id"},{"required":"yes","param":"int $hw_document"}],"returns":"int"},"hw_InsertObject":{"desc":"Inserts an object record","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"string $object_rec"},{"required":"yes","param":"string $parameter"}],"returns":"int"},"hw_mapid":{"desc":"Maps global id on virtual local id","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $server_id"},{"required":"yes","param":"int $object_id"}],"returns":"int"},"hw_mv":{"desc":"Moves objects","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"array $object_id_array"},{"required":"yes","param":"int $source_id"},{"required":"yes","param":"int $destination_id"}],"returns":"int"},"hw_New_Document":{"desc":"Create new document","params":[{"required":"yes","param":"string $object_record"},{"required":"yes","param":"string $document_data"},{"required":"yes","param":"int $document_size"}],"returns":"int"},"hw_pConnect":{"desc":"Make a persistent database connection","params":[{"required":"yes","param":"string $host"},{"required":"yes","param":"int $port"},{"required":"no","param":"string $username = &#039;&#039;"},{"required":"yes","param":"string $password"}],"returns":"int"},"hw_PipeDocument":{"desc":"Retrieve any document","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $objectID"},{"required":"no","param":"array $url_prefixes = &#039;&#039;"}],"returns":"int"},"hw_Root":{"desc":"Root object id","params":[],"returns":"int"},"hw_setlinkroot":{"desc":"Set the id to which links are calculated","params":[{"required":"yes","param":"int $link"},{"required":"yes","param":"int $rootid"}],"returns":"int"},"ibase_affected_rows":{"desc":"Return the number of rows that were affected by the previous query","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"int"},"ibase_errcode":{"desc":"Return an error code","params":[],"returns":"int"},"ibase_num_fields":{"desc":"Get the number of fields in a result set","params":[{"required":"yes","param":"resource $result_id"}],"returns":"int"},"ibase_num_params":{"desc":"Return the number of parameters in a prepared query","params":[{"required":"yes","param":"resource $query"}],"returns":"int"},"iconv_strlen":{"desc":"Returns the character count of string","params":[{"required":"yes","param":"string $str"},{"required":"no","param":"string $charset = ini_get(&quot;iconv.internal_encoding&quot;"}],"returns":"int"},"iconv_strpos":{"desc":"Finds position of first occurrence of a needle within a haystack","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"int $offset = &#039;&#039;"},{"required":"no","param":"string $charset = ini_get(&quot;iconv.internal_encoding&quot;"}],"returns":"int"},"iconv_strrpos":{"desc":"Finds the last occurrence of a needle within a haystack","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"string $charset = ini_get(&quot;iconv.internal_encoding&quot;"}],"returns":"int"},"id3_get_genre_id":{"desc":"Get the id for a genre","params":[{"required":"yes","param":"string $genre"}],"returns":"int"},"id3_get_version":{"desc":"Get version of an ID3 tag","params":[{"required":"yes","param":"string $filename"}],"returns":"int"},"idate":{"desc":"Format a local time/date as integer","params":[{"required":"yes","param":"string $format"},{"required":"no","param":"int $timestamp = time("}],"returns":"int"},"ifxus_create_slob":{"desc":"Creates an slob object and opens it","params":[{"required":"yes","param":"int $mode"}],"returns":"int"},"ifxus_open_slob":{"desc":"Opens an slob object","params":[{"required":"yes","param":"int $bid"},{"required":"yes","param":"int $mode"}],"returns":"int"},"ifxus_seek_slob":{"desc":"Sets the current file or seek position","params":[{"required":"yes","param":"int $bid"},{"required":"yes","param":"int $mode"},{"required":"yes","param":"int $offset"}],"returns":"int"},"ifxus_tell_slob":{"desc":"Returns the current file or seek position","params":[{"required":"yes","param":"int $bid"}],"returns":"int"},"ifxus_write_slob":{"desc":"Writes a string into the slob object","params":[{"required":"yes","param":"int $bid"},{"required":"yes","param":"string $content"}],"returns":"int"},"ifx_affected_rows":{"desc":"Get number of rows affected by a query","params":[{"required":"yes","param":"resource $result_id"}],"returns":"int"},"ifx_copy_blob":{"desc":"Duplicates the given blob object","params":[{"required":"yes","param":"int $bid"}],"returns":"int"},"ifx_create_blob":{"desc":"Creates an blob object","params":[{"required":"yes","param":"int $type"},{"required":"yes","param":"int $mode"},{"required":"yes","param":"string $param"}],"returns":"int"},"ifx_create_char":{"desc":"Creates an char object","params":[{"required":"yes","param":"string $param"}],"returns":"int"},"ifx_htmltbl_result":{"desc":"Formats all rows of a query into a HTML table","params":[{"required":"yes","param":"resource $result_id"},{"required":"no","param":"string $html_table_options = &#039;&#039;"}],"returns":"int"},"ifx_num_fields":{"desc":"Returns the number of columns in the query","params":[{"required":"yes","param":"resource $result_id"}],"returns":"int"},"ifx_num_rows":{"desc":"Count the rows already fetched from a query","params":[{"required":"yes","param":"resource $result_id"}],"returns":"int"},"ignore_user_abort":{"desc":"Set whether a client disconnect should abort script execution","params":[{"required":"no","param":"string $value = &#039;&#039;"}],"returns":"int"},"iis_add_server":{"desc":"Creates a new virtual web server","params":[{"required":"yes","param":"string $path"},{"required":"yes","param":"string $comment"},{"required":"yes","param":"string $server_ip"},{"required":"yes","param":"int $port"},{"required":"yes","param":"string $host_name"},{"required":"yes","param":"int $rights"},{"required":"yes","param":"int $start_server"}],"returns":"int"},"iis_get_dir_security":{"desc":"Gets Directory Security","params":[{"required":"yes","param":"int $server_instance"},{"required":"yes","param":"string $virtual_path"}],"returns":"int"},"iis_get_server_by_comment":{"desc":"Return the instance number associated with the Comment","params":[{"required":"yes","param":"string $comment"}],"returns":"int"},"iis_get_server_by_path":{"desc":"Return the instance number associated with the Path","params":[{"required":"yes","param":"string $path"}],"returns":"int"},"iis_get_server_rights":{"desc":"Gets server rights","params":[{"required":"yes","param":"int $server_instance"},{"required":"yes","param":"string $virtual_path"}],"returns":"int"},"iis_get_service_state":{"desc":"Returns the state for the service defined by ServiceId","params":[{"required":"yes","param":"string $service_id"}],"returns":"int"},"iis_remove_server":{"desc":"Removes the virtual web server indicated by ServerInstance","params":[{"required":"yes","param":"int $server_instance"}],"returns":"int"},"iis_set_app_settings":{"desc":"Creates application scope for a virtual directory","params":[{"required":"yes","param":"int $server_instance"},{"required":"yes","param":"string $virtual_path"},{"required":"yes","param":"string $application_scope"}],"returns":"int"},"iis_set_dir_security":{"desc":"Sets Directory Security","params":[{"required":"yes","param":"int $server_instance"},{"required":"yes","param":"string $virtual_path"},{"required":"yes","param":"int $directory_flags"}],"returns":"int"},"iis_set_script_map":{"desc":"Sets script mapping on a virtual directory","params":[{"required":"yes","param":"int $server_instance"},{"required":"yes","param":"string $virtual_path"},{"required":"yes","param":"string $script_extension"},{"required":"yes","param":"string $engine_path"},{"required":"yes","param":"int $allow_scripting"}],"returns":"int"},"iis_set_server_rights":{"desc":"Sets server rights","params":[{"required":"yes","param":"int $server_instance"},{"required":"yes","param":"string $virtual_path"},{"required":"yes","param":"int $directory_flags"}],"returns":"int"},"iis_start_server":{"desc":"Starts the virtual web server","params":[{"required":"yes","param":"int $server_instance"}],"returns":"int"},"iis_start_service":{"desc":"Starts the service defined by ServiceId","params":[{"required":"yes","param":"string $service_id"}],"returns":"int"},"iis_stop_server":{"desc":"Stops the virtual web server","params":[{"required":"yes","param":"int $server_instance"}],"returns":"int"},"iis_stop_service":{"desc":"Stops the service defined by ServiceId","params":[{"required":"yes","param":"string $service_id"}],"returns":"int"},"imagecolorallocate":{"desc":"Allocate a color for an image","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $red"},{"required":"yes","param":"int $green"},{"required":"yes","param":"int $blue"}],"returns":"int"},"imagecolorallocatealpha":{"desc":"Allocate a color for an image","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $red"},{"required":"yes","param":"int $green"},{"required":"yes","param":"int $blue"},{"required":"yes","param":"int $alpha"}],"returns":"int"},"imagecolorat":{"desc":"Get the index of the color of a pixel","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $x"},{"required":"yes","param":"int $y"}],"returns":"int"},"imagecolorclosest":{"desc":"Get the index of the closest color to the specified color","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $red"},{"required":"yes","param":"int $green"},{"required":"yes","param":"int $blue"}],"returns":"int"},"imagecolorclosestalpha":{"desc":"Get the index of the closest color to the specified color + alpha","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $red"},{"required":"yes","param":"int $green"},{"required":"yes","param":"int $blue"},{"required":"yes","param":"int $alpha"}],"returns":"int"},"imagecolorclosesthwb":{"desc":"Get the index of the color which has the hue, white and blackness","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $red"},{"required":"yes","param":"int $green"},{"required":"yes","param":"int $blue"}],"returns":"int"},"imagecolorexact":{"desc":"Get the index of the specified color","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $red"},{"required":"yes","param":"int $green"},{"required":"yes","param":"int $blue"}],"returns":"int"},"imagecolorexactalpha":{"desc":"Get the index of the specified color + alpha","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $red"},{"required":"yes","param":"int $green"},{"required":"yes","param":"int $blue"},{"required":"yes","param":"int $alpha"}],"returns":"int"},"imagecolorresolve":{"desc":"Get the index of the specified color or its closest possible alternative","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $red"},{"required":"yes","param":"int $green"},{"required":"yes","param":"int $blue"}],"returns":"int"},"imagecolorresolvealpha":{"desc":"Get the index of the specified color + alpha or its closest possible alternative","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $red"},{"required":"yes","param":"int $green"},{"required":"yes","param":"int $blue"},{"required":"yes","param":"int $alpha"}],"returns":"int"},"imagecolorstotal":{"desc":"Find out the number of colors in an image&#039;s palette","params":[{"required":"yes","param":"resource $image"}],"returns":"int"},"imagecolortransparent":{"desc":"Define a color as transparent","params":[{"required":"yes","param":"resource $image"},{"required":"no","param":"int $color = &#039;&#039;"}],"returns":"int"},"imagefontheight":{"desc":"Get font height","params":[{"required":"yes","param":"int $font"}],"returns":"int"},"imagefontwidth":{"desc":"Get font width","params":[{"required":"yes","param":"int $font"}],"returns":"int"},"imageinterlace":{"desc":"Enable or disable interlace","params":[{"required":"yes","param":"resource $image"},{"required":"no","param":"int $interlace = &#039;&#039;"}],"returns":"int"},"imageloadfont":{"desc":"Load a new font","params":[{"required":"yes","param":"string $file"}],"returns":"int"},"imagesx":{"desc":"Get image width","params":[{"required":"yes","param":"resource $image"}],"returns":"int"},"imagesy":{"desc":"Get image height","params":[{"required":"yes","param":"resource $image"}],"returns":"int"},"imagetypes":{"desc":"Return the image types supported by this PHP build","params":[],"returns":"int"},"imap_msgno":{"desc":"Gets the message sequence number for the given UID","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"int $uid"}],"returns":"int"},"imap_num_msg":{"desc":"Gets the number of messages in the current mailbox","params":[{"required":"yes","param":"resource $imap_stream"}],"returns":"int"},"imap_num_recent":{"desc":"Gets the number of recent messages in current mailbox","params":[{"required":"yes","param":"resource $imap_stream"}],"returns":"int"},"imap_uid":{"desc":"This function returns the UID for the given message sequence number","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"int $msg_number"}],"returns":"int"},"ingres_errno":{"desc":"Get the last Ingres error number generated","params":[{"required":"no","param":"resource $link = &#039;&#039;"}],"returns":"int"},"ingres_fetch_proc_return":{"desc":"Get the return value from a procedure call","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"ingres_field_length":{"desc":"Get the length of a field","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $index"}],"returns":"int"},"ingres_field_precision":{"desc":"Get the precision of a field","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $index"}],"returns":"int"},"ingres_field_scale":{"desc":"Get the scale of a field","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $index"}],"returns":"int"},"ingres_num_fields":{"desc":"Get the number of fields returned by the last query","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"ingres_num_rows":{"desc":"Get the number of rows affected or returned by a query","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"inotify_add_watch":{"desc":"Add a watch to an initialized inotify instance","params":[{"required":"yes","param":"resource $inotify_instance"},{"required":"yes","param":"string $pathname"},{"required":"yes","param":"int $mask"}],"returns":"int"},"inotify_queue_len":{"desc":"Return a number upper than zero if there are pending events","params":[{"required":"yes","param":"resource $inotify_instance"}],"returns":"int"},"intl_get_error_code":{"desc":"Get the last error code","params":[],"returns":"int"},"ip2long":{"desc":"Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address","params":[{"required":"yes","param":"string $ip_address"}],"returns":"int"},"iterator_apply":{"desc":"Call a function for every element in an iterator","params":[{"required":"yes","param":"Traversable $iterator"},{"required":"yes","param":"callback $function"},{"required":"no","param":"array $args = &#039;&#039;"}],"returns":"int"},"iterator_count":{"desc":"Count the elements in an iterator","params":[{"required":"yes","param":"Traversable $iterator"}],"returns":"int"},"jdtounix":{"desc":"Convert Julian Day to Unix timestamp","params":[{"required":"yes","param":"int $jday"}],"returns":"int"},"JewishToJD":{"desc":"Converts a date in the Jewish Calendar to Julian Day Count","params":[{"required":"yes","param":"int $month"},{"required":"yes","param":"int $day"},{"required":"yes","param":"int $year"}],"returns":"int"},"json_last_error":{"desc":"Returns the last error occurred","params":[],"returns":"int"},"judy_type":{"desc":"Return the type of a Judy array","params":[{"required":"yes","param":"Judy $array"}],"returns":"int"},"JulianToJD":{"desc":"Converts a Julian Calendar date to Julian Day Count","params":[{"required":"yes","param":"int $month"},{"required":"yes","param":"int $day"},{"required":"yes","param":"int $year"}],"returns":"int"},"ldap_count_entries":{"desc":"Count the number of entries in a search","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"resource $result_identifier"}],"returns":"int"},"ldap_errno":{"desc":"Return the LDAP error number of the last LDAP command","params":[{"required":"yes","param":"resource $link_identifier"}],"returns":"int"},"levenshtein":{"desc":"Calculate Levenshtein distance between two strings","params":[{"required":"yes","param":"string $str1"},{"required":"yes","param":"string $str2"},{"required":"yes","param":"int $cost_ins"},{"required":"yes","param":"int $cost_rep"},{"required":"yes","param":"int $cost_del"}],"returns":"int"},"linkinfo":{"desc":"Gets information about a link","params":[{"required":"yes","param":"string $path"}],"returns":"int"},"lzf_optimized_for":{"desc":"Determines what LZF extension was optimized for","params":[],"returns":"int"},"maxdb_affected_rows":{"desc":"Gets the number of affected rows in a previous MaxDB operation","params":[{"required":"yes","param":"resource $link"}],"returns":"int"},"maxdb_connect_errno":{"desc":"Returns the error code from last connect call","params":[],"returns":"int"},"maxdb_errno":{"desc":"Returns the error code for the most recent function call","params":[{"required":"yes","param":"resource $link"}],"returns":"int"},"maxdb_field_count":{"desc":"Returns the number of columns for the most recent query","params":[{"required":"yes","param":"resource $link"}],"returns":"int"},"maxdb_field_tell":{"desc":"Get current field offset of a result pointer","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"maxdb_get_client_version":{"desc":"Get MaxDB client info","params":[],"returns":"int"},"maxdb_get_server_version":{"desc":"Returns the version of the MaxDB server as an integer","params":[{"required":"yes","param":"resource $link"}],"returns":"int"},"maxdb_num_fields":{"desc":"Get the number of fields in a result","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"maxdb_num_rows":{"desc":"Gets the number of rows in a result","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"maxdb_rpl_parse_enabled":{"desc":"Check if RPL parse is enabled","params":[{"required":"yes","param":"resource $link"}],"returns":"int"},"maxdb_rpl_query_type":{"desc":"Returns RPL query type","params":[{"required":"yes","param":"resource $link"}],"returns":"int"},"maxdb_stmt_affected_rows":{"desc":"Returns the total number of rows changed, deleted, or inserted by the last executed statement","params":[{"required":"yes","param":"resource $stmt"}],"returns":"int"},"maxdb_stmt_errno":{"desc":"Returns the error code for the most recent statement call","params":[{"required":"yes","param":"resource $stmt"}],"returns":"int"},"maxdb_stmt_num_rows":{"desc":"Return the number of rows in statements result set","params":[{"required":"yes","param":"resource $stmt"}],"returns":"int"},"maxdb_stmt_param_count":{"desc":"Returns the number of parameter for the given statement","params":[{"required":"yes","param":"resource $stmt"}],"returns":"int"},"maxdb_thread_id":{"desc":"Returns the thread ID for the current connection","params":[{"required":"yes","param":"resource $link"}],"returns":"int"},"maxdb_warning_count":{"desc":"Returns the number of warnings from the last query for the given link","params":[{"required":"yes","param":"resource $link"}],"returns":"int"},"mb_ereg":{"desc":"Regular expression match with multibyte support","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"string $string"},{"required":"no","param":"array $regs = &#039;&#039;"}],"returns":"int"},"mb_eregi":{"desc":"Regular expression match ignoring case with multibyte support","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"string $string"},{"required":"no","param":"array $regs = &#039;&#039;"}],"returns":"int"},"mb_ereg_search_getpos":{"desc":"Returns start point for next regular expression match","params":[],"returns":"int"},"mb_stripos":{"desc":"Finds position of first occurrence of a string within another, case insensitive","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"int $offset = &#039;&#039;"},{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"int"},"mb_strripos":{"desc":"Finds position of last occurrence of a string within another, case insensitive","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"int $offset = &#039;&#039;"},{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"int"},"mb_strrpos":{"desc":"Find position of last occurrence of a string in a string","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"int $offset = &#039;&#039;"},{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"int"},"mcrypt_enc_get_block_size":{"desc":"Returns the blocksize of the opened algorithm","params":[{"required":"yes","param":"resource $td"}],"returns":"int"},"mcrypt_enc_get_iv_size":{"desc":"Returns the size of the IV of the opened algorithm","params":[{"required":"yes","param":"resource $td"}],"returns":"int"},"mcrypt_enc_get_key_size":{"desc":"Returns the maximum supported keysize of the opened mode","params":[{"required":"yes","param":"resource $td"}],"returns":"int"},"mcrypt_enc_self_test":{"desc":"Runs a self test on the opened module","params":[{"required":"yes","param":"resource $td"}],"returns":"int"},"mcrypt_generic_init":{"desc":"This function initializes all buffers needed for encryption","params":[{"required":"yes","param":"resource $td"},{"required":"yes","param":"string $key"},{"required":"yes","param":"string $iv"}],"returns":"int"},"mcrypt_get_block_size":{"desc":"Gets the block size of the specified cipher","params":[{"required":"yes","param":"string $cipher"},{"required":"yes","param":"string $module"}],"returns":"int"},"mcrypt_get_iv_size":{"desc":"Returns the size of the IV belonging to a specific cipher/mode combination","params":[{"required":"yes","param":"string $cipher"},{"required":"yes","param":"string $mode"}],"returns":"int"},"mcrypt_get_key_size":{"desc":"Gets the key size of the specified cipher","params":[{"required":"yes","param":"string $cipher"},{"required":"yes","param":"string $module"}],"returns":"int"},"mcrypt_module_get_algo_block_size":{"desc":"Returns the blocksize of the specified algorithm","params":[{"required":"yes","param":"string $algorithm"},{"required":"no","param":"string $lib_dir = &#039;&#039;"}],"returns":"int"},"mcrypt_module_get_algo_key_size":{"desc":"Returns the maximum supported keysize of the opened mode","params":[{"required":"yes","param":"string $algorithm"},{"required":"no","param":"string $lib_dir = &#039;&#039;"}],"returns":"int"},"memory_get_peak_usage":{"desc":"Returns the peak of memory allocated by PHP","params":[{"required":"no","param":"bool $real_usage = false"}],"returns":"int"},"memory_get_usage":{"desc":"Returns the amount of memory allocated to PHP","params":[{"required":"no","param":"bool $real_usage = false"}],"returns":"int"},"mhash_count":{"desc":"Gets the highest available hash ID","params":[],"returns":"int"},"mhash_get_block_size":{"desc":"Gets the block size of the specified hash","params":[{"required":"yes","param":"int $hash"}],"returns":"int"},"ming_keypress":{"desc":"Returns the action flag for keyPress(char)","params":[{"required":"yes","param":"string $char"}],"returns":"int"},"mktime":{"desc":"Get Unix timestamp for a date","params":[{"required":"no","param":"int $hour = date(&quot;H&quot;)"},{"required":"no","param":"int $minute = date(&quot;i&quot;)"},{"required":"no","param":"int $second = date(&quot;s&quot;)"},{"required":"no","param":"int $month = date(&quot;n&quot;)"},{"required":"no","param":"int $day = date(&quot;j&quot;)"},{"required":"no","param":"int $year = date(&quot;Y&quot;)"},{"required":"no","param":"int $is_dst = -1"}],"returns":"int"},"msession_count":{"desc":"Get session count","params":[],"returns":"int"},"msession_lock":{"desc":"Lock a session","params":[{"required":"yes","param":"string $name"}],"returns":"int"},"msession_timeout":{"desc":"Set/get session timeout","params":[{"required":"yes","param":"string $session"},{"required":"no","param":"int $param = &#039;&#039;"}],"returns":"int"},"msession_unlock":{"desc":"Unlock a session","params":[{"required":"yes","param":"string $session"},{"required":"yes","param":"int $key"}],"returns":"int"},"msgfmt_get_error_code":{"desc":"Get the error code from last operation","params":[{"required":"yes","param":"MessageFormatter $fmt"}],"returns":"int"},"msql_affected_rows":{"desc":"Returns number of affected rows","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"msql_field_len":{"desc":"Get field length","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_offset"}],"returns":"int"},"msql_field_table":{"desc":"Get table name for field","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_offset"}],"returns":"int"},"msql_num_fields":{"desc":"Get number of fields in result","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"msql_num_rows":{"desc":"Get number of rows in result","params":[{"required":"yes","param":"resource $query_identifier"}],"returns":"int"},"mssql_fetch_batch":{"desc":"Returns the next batch of records","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"mssql_field_length":{"desc":"Get the length of a field","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $offset = -1"}],"returns":"int"},"mssql_num_fields":{"desc":"Gets the number of fields in result","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"mssql_num_rows":{"desc":"Gets the number of rows in result","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"mssql_rows_affected":{"desc":"Returns the number of records affected by the query","params":[{"required":"yes","param":"resource $link_identifier"}],"returns":"int"},"mt_getrandmax":{"desc":"Show largest possible random value","params":[],"returns":"int"},"mt_rand":{"desc":"Generate a better random value","params":[{"required":"yes","param":"int $min"},{"required":"yes","param":"int $max"}],"returns":"int"},"mysqli_affected_rows":{"desc":"Gets the number of affected rows in a previous MySQL operation","params":[{"required":"yes","param":"mysqli $link"}],"returns":"int"},"mysqli_connect_errno":{"desc":"Returns the error code from last connect call","params":[],"returns":"int"},"mysqli_errno":{"desc":"Returns the error code for the most recent function call","params":[{"required":"yes","param":"mysqli $link"}],"returns":"int"},"mysqli_field_count":{"desc":"Returns the number of columns for the most recent query","params":[{"required":"yes","param":"mysqli $link"}],"returns":"int"},"mysqli_field_tell":{"desc":"Get current field offset of a result pointer","params":[{"required":"yes","param":"mysqli_result $result"}],"returns":"int"},"mysqli_get_client_version":{"desc":"Get MySQL client info","params":[{"required":"yes","param":"mysqli $link"}],"returns":"int"},"mysqli_get_proto_info":{"desc":"Returns the version of the MySQL protocol used","params":[{"required":"yes","param":"mysqli $link"}],"returns":"int"},"mysqli_get_server_version":{"desc":"Returns the version of the MySQL server as an integer","params":[{"required":"yes","param":"mysqli $link"}],"returns":"int"},"mysqli_num_fields":{"desc":"Get the number of fields in a result","params":[{"required":"yes","param":"mysqli_result $result"}],"returns":"int"},"mysqli_num_rows":{"desc":"Gets the number of rows in a result","params":[{"required":"yes","param":"mysqli_result $result"}],"returns":"int"},"mysqli_poll":{"desc":"Poll connections","params":[{"required":"yes","param":"array $read"},{"required":"yes","param":"array $error"},{"required":"yes","param":"array $reject"},{"required":"yes","param":"int $sec"},{"required":"no","param":"int $usec = &#039;&#039;"}],"returns":"int"},"mysqli_rpl_parse_enabled":{"desc":"Check if RPL parse is enabled","params":[{"required":"yes","param":"mysqli $link"}],"returns":"int"},"mysqli_rpl_query_type":{"desc":"Returns RPL query type","params":[{"required":"yes","param":"string $query"},{"required":"yes","param":"mysqli $link"}],"returns":"int"},"mysqli_stmt_affected_rows":{"desc":"Returns the total number of rows changed, deleted, or inserted by the last executed statement","params":[{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"int"},"mysqli_stmt_attr_get":{"desc":"Used to get the current value of a statement attribute","params":[{"required":"yes","param":"int $attr"},{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"int"},"mysqli_stmt_errno":{"desc":"Returns the error code for the most recent statement call","params":[{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"int"},"mysqli_stmt_field_count":{"desc":"Returns the number of field in the given statement","params":[{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"int"},"mysqli_stmt_num_rows":{"desc":"Return the number of rows in statements result set","params":[{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"int"},"mysqli_stmt_param_count":{"desc":"Returns the number of parameter for the given statement","params":[{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"int"},"mysqli_thread_id":{"desc":"Returns the thread ID for the current connection","params":[{"required":"yes","param":"mysqli $link"}],"returns":"int"},"mysqli_warning_count":{"desc":"Returns the number of warnings from the last query for the given link","params":[{"required":"yes","param":"mysqli $link"}],"returns":"int"},"mysqlnd_ms_query_is_select":{"desc":"Find whether to send the query to the master, the slave or the last used MySQL server","params":[{"required":"yes","param":"string $query"}],"returns":"int"},"mysql_affected_rows":{"desc":"Get number of affected rows in previous MySQL operation","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"int"},"mysql_errno":{"desc":"Returns the numerical value of the error message from previous MySQL operation","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"int"},"mysql_field_len":{"desc":"Returns the length of the specified field","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_offset"}],"returns":"int"},"mysql_get_proto_info":{"desc":"Get MySQL protocol info","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"int"},"mysql_insert_id":{"desc":"Get the ID generated in the last query","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"int"},"mysql_num_fields":{"desc":"Get number of fields in result","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"mysql_num_rows":{"desc":"Get number of rows in result","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"mysql_thread_id":{"desc":"Return the current thread ID","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"int"},"m_checkstatus":{"desc":"Check to see if a transaction has completed","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $identifier"}],"returns":"int"},"m_completeauthorizations":{"desc":"Number of complete authorizations in queue, returning an array of their identifiers","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $array"}],"returns":"int"},"m_connect":{"desc":"Establish the connection to MCVE","params":[{"required":"yes","param":"resource $conn"}],"returns":"int"},"m_initengine":{"desc":"Ready the client for IP/SSL Communication","params":[{"required":"yes","param":"string $location"}],"returns":"int"},"m_iscommadelimited":{"desc":"Checks to see if response is comma delimited","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $identifier"}],"returns":"int"},"m_monitor":{"desc":"Perform communication with MCVE (send/receive data) Non-blocking","params":[{"required":"yes","param":"resource $conn"}],"returns":"int"},"m_numcolumns":{"desc":"Number of columns returned in a comma delimited response","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $identifier"}],"returns":"int"},"m_numrows":{"desc":"Number of rows returned in a comma delimited response","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $identifier"}],"returns":"int"},"m_parsecommadelimited":{"desc":"Parse the comma delimited response so m_getcell, etc will work","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $identifier"}],"returns":"int"},"m_returnstatus":{"desc":"Check to see if the transaction was successful","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $identifier"}],"returns":"int"},"m_setblocking":{"desc":"Set blocking/non-blocking mode for connection","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $tf"}],"returns":"int"},"m_setdropfile":{"desc":"Set the connection method to Drop-File","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"string $directory"}],"returns":"int"},"m_setip":{"desc":"Set the connection method to IP","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"string $host"},{"required":"yes","param":"int $port"}],"returns":"int"},"m_setssl":{"desc":"Set the connection method to SSL","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"string $host"},{"required":"yes","param":"int $port"}],"returns":"int"},"m_setssl_cafile":{"desc":"Set SSL CA (Certificate Authority) file for verification of server certificate","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"string $cafile"}],"returns":"int"},"m_setssl_files":{"desc":"Set certificate key files and certificates if server requires client certificate verification","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"string $sslkeyfile"},{"required":"yes","param":"string $sslcertfile"}],"returns":"int"},"m_settimeout":{"desc":"Set maximum transaction time (per trans)","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $seconds"}],"returns":"int"},"m_transactionssent":{"desc":"Check to see if outgoing buffer is clear","params":[{"required":"yes","param":"resource $conn"}],"returns":"int"},"m_transinqueue":{"desc":"Number of transactions in client-queue","params":[{"required":"yes","param":"resource $conn"}],"returns":"int"},"m_transkeyval":{"desc":"Add key/value pair to a transaction. Replaces deprecated transparam()","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $identifier"},{"required":"yes","param":"string $key"},{"required":"yes","param":"string $value"}],"returns":"int"},"m_transnew":{"desc":"Start a new transaction","params":[{"required":"yes","param":"resource $conn"}],"returns":"int"},"m_transsend":{"desc":"Finalize and send the transaction","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $identifier"}],"returns":"int"},"m_uwait":{"desc":"Wait x microsecs","params":[{"required":"yes","param":"int $microsecs"}],"returns":"int"},"m_validateidentifier":{"desc":"Whether or not to validate the passed identifier on any transaction it is passed to","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $tf"}],"returns":"int"},"ncurses_addch":{"desc":"Add character at current position and advance cursor","params":[{"required":"yes","param":"int $ch"}],"returns":"int"},"ncurses_addchnstr":{"desc":"Add attributed string with specified length at current position","params":[{"required":"yes","param":"string $s"},{"required":"yes","param":"int $n"}],"returns":"int"},"ncurses_addchstr":{"desc":"Add attributed string at current position","params":[{"required":"yes","param":"string $s"}],"returns":"int"},"ncurses_addnstr":{"desc":"Add string with specified length at current position","params":[{"required":"yes","param":"string $s"},{"required":"yes","param":"int $n"}],"returns":"int"},"ncurses_addstr":{"desc":"Output text at current position","params":[{"required":"yes","param":"string $text"}],"returns":"int"},"ncurses_assume_default_colors":{"desc":"Define default colors for color 0","params":[{"required":"yes","param":"int $fg"},{"required":"yes","param":"int $bg"}],"returns":"int"},"ncurses_attroff":{"desc":"Turn off the given attributes","params":[{"required":"yes","param":"int $attributes"}],"returns":"int"},"ncurses_attron":{"desc":"Turn on the given attributes","params":[{"required":"yes","param":"int $attributes"}],"returns":"int"},"ncurses_attrset":{"desc":"Set given attributes","params":[{"required":"yes","param":"int $attributes"}],"returns":"int"},"ncurses_baudrate":{"desc":"Returns baudrate of terminal","params":[],"returns":"int"},"ncurses_beep":{"desc":"Let the terminal beep","params":[],"returns":"int"},"ncurses_bkgd":{"desc":"Set background property for terminal screen","params":[{"required":"yes","param":"int $attrchar"}],"returns":"int"},"ncurses_border":{"desc":"Draw a border around the screen using attributed characters","params":[{"required":"yes","param":"int $left"},{"required":"yes","param":"int $right"},{"required":"yes","param":"int $top"},{"required":"yes","param":"int $bottom"},{"required":"yes","param":"int $tl_corner"},{"required":"yes","param":"int $tr_corner"},{"required":"yes","param":"int $bl_corner"},{"required":"yes","param":"int $br_corner"}],"returns":"int"},"ncurses_bottom_panel":{"desc":"Moves a visible panel to the bottom of the stack","params":[{"required":"yes","param":"resource $panel"}],"returns":"int"},"ncurses_color_content":{"desc":"Retrieves RGB components of a color","params":[{"required":"yes","param":"int $color"},{"required":"yes","param":"int $r"},{"required":"yes","param":"int $g"},{"required":"yes","param":"int $b"}],"returns":"int"},"ncurses_color_set":{"desc":"Set active foreground and background colors","params":[{"required":"yes","param":"int $pair"}],"returns":"int"},"ncurses_curs_set":{"desc":"Set cursor state","params":[{"required":"yes","param":"int $visibility"}],"returns":"int"},"ncurses_define_key":{"desc":"Define a keycode","params":[{"required":"yes","param":"string $definition"},{"required":"yes","param":"int $keycode"}],"returns":"int"},"ncurses_delay_output":{"desc":"Delay output on terminal using padding characters","params":[{"required":"yes","param":"int $milliseconds"}],"returns":"int"},"ncurses_echochar":{"desc":"Single character output including refresh","params":[{"required":"yes","param":"int $character"}],"returns":"int"},"ncurses_end":{"desc":"Stop using ncurses, clean up the screen","params":[],"returns":"int"},"ncurses_getch":{"desc":"Read a character from keyboard","params":[],"returns":"int"},"ncurses_halfdelay":{"desc":"Put terminal into halfdelay mode","params":[{"required":"yes","param":"int $tenth"}],"returns":"int"},"ncurses_has_key":{"desc":"Check for presence of a function key on terminal keyboard","params":[{"required":"yes","param":"int $keycode"}],"returns":"int"},"ncurses_hide_panel":{"desc":"Remove panel from the stack, making it invisible","params":[{"required":"yes","param":"resource $panel"}],"returns":"int"},"ncurses_hline":{"desc":"Draw a horizontal line at current position using an attributed character and max. n characters long","params":[{"required":"yes","param":"int $charattr"},{"required":"yes","param":"int $n"}],"returns":"int"},"ncurses_init_color":{"desc":"Define a terminal color","params":[{"required":"yes","param":"int $color"},{"required":"yes","param":"int $r"},{"required":"yes","param":"int $g"},{"required":"yes","param":"int $b"}],"returns":"int"},"ncurses_init_pair":{"desc":"Define a color pair","params":[{"required":"yes","param":"int $pair"},{"required":"yes","param":"int $fg"},{"required":"yes","param":"int $bg"}],"returns":"int"},"ncurses_insch":{"desc":"Insert character moving rest of line including character at current position","params":[{"required":"yes","param":"int $character"}],"returns":"int"},"ncurses_insdelln":{"desc":"Insert lines before current line scrolling down (negative numbers delete and scroll up)","params":[{"required":"yes","param":"int $count"}],"returns":"int"},"ncurses_insertln":{"desc":"Insert a line, move rest of screen down","params":[],"returns":"int"},"ncurses_insstr":{"desc":"Insert string at current position, moving rest of line right","params":[{"required":"yes","param":"string $text"}],"returns":"int"},"ncurses_instr":{"desc":"Reads string from terminal screen","params":[{"required":"yes","param":"string $buffer"}],"returns":"int"},"ncurses_keyok":{"desc":"Enable or disable a keycode","params":[{"required":"yes","param":"int $keycode"},{"required":"yes","param":"bool $enable"}],"returns":"int"},"ncurses_keypad":{"desc":"Turns keypad on or off","params":[{"required":"yes","param":"resource $window"},{"required":"yes","param":"bool $bf"}],"returns":"int"},"ncurses_meta":{"desc":"Enables/Disable 8-bit meta key information","params":[{"required":"yes","param":"resource $window"},{"required":"yes","param":"bool $8bit"}],"returns":"int"},"ncurses_mouseinterval":{"desc":"Set timeout for mouse button clicks","params":[{"required":"yes","param":"int $milliseconds"}],"returns":"int"},"ncurses_mousemask":{"desc":"Sets mouse options","params":[{"required":"yes","param":"int $newmask"},{"required":"yes","param":"int $oldmask"}],"returns":"int"},"ncurses_move":{"desc":"Move output position","params":[{"required":"yes","param":"int $y"},{"required":"yes","param":"int $x"}],"returns":"int"},"ncurses_move_panel":{"desc":"Moves a panel so that its upper-left corner is at [startx, starty]","params":[{"required":"yes","param":"resource $panel"},{"required":"yes","param":"int $startx"},{"required":"yes","param":"int $starty"}],"returns":"int"},"ncurses_mvaddch":{"desc":"Move current position and add character","params":[{"required":"yes","param":"int $y"},{"required":"yes","param":"int $x"},{"required":"yes","param":"int $c"}],"returns":"int"},"ncurses_mvaddchnstr":{"desc":"Move position and add attributed string with specified length","params":[{"required":"yes","param":"int $y"},{"required":"yes","param":"int $x"},{"required":"yes","param":"string $s"},{"required":"yes","param":"int $n"}],"returns":"int"},"ncurses_mvaddchstr":{"desc":"Move position and add attributed string","params":[{"required":"yes","param":"int $y"},{"required":"yes","param":"int $x"},{"required":"yes","param":"string $s"}],"returns":"int"},"ncurses_mvaddnstr":{"desc":"Move position and add string with specified length","params":[{"required":"yes","param":"int $y"},{"required":"yes","param":"int $x"},{"required":"yes","param":"string $s"},{"required":"yes","param":"int $n"}],"returns":"int"},"ncurses_mvaddstr":{"desc":"Move position and add string","params":[{"required":"yes","param":"int $y"},{"required":"yes","param":"int $x"},{"required":"yes","param":"string $s"}],"returns":"int"},"ncurses_mvcur":{"desc":"Move cursor immediately","params":[{"required":"yes","param":"int $old_y"},{"required":"yes","param":"int $old_x"},{"required":"yes","param":"int $new_y"},{"required":"yes","param":"int $new_x"}],"returns":"int"},"ncurses_mvdelch":{"desc":"Move position and delete character, shift rest of line left","params":[{"required":"yes","param":"int $y"},{"required":"yes","param":"int $x"}],"returns":"int"},"ncurses_mvgetch":{"desc":"Move position and get character at new position","params":[{"required":"yes","param":"int $y"},{"required":"yes","param":"int $x"}],"returns":"int"},"ncurses_mvhline":{"desc":"Set new position and draw a horizontal line using an attributed character and max. n characters long","params":[{"required":"yes","param":"int $y"},{"required":"yes","param":"int $x"},{"required":"yes","param":"int $attrchar"},{"required":"yes","param":"int $n"}],"returns":"int"},"ncurses_mvinch":{"desc":"Move position and get attributed character at new position","params":[{"required":"yes","param":"int $y"},{"required":"yes","param":"int $x"}],"returns":"int"},"ncurses_mvvline":{"desc":"Set new position and draw a vertical line using an attributed character and max. n characters long","params":[{"required":"yes","param":"int $y"},{"required":"yes","param":"int $x"},{"required":"yes","param":"int $attrchar"},{"required":"yes","param":"int $n"}],"returns":"int"},"ncurses_mvwaddstr":{"desc":"Add string at new position in window","params":[{"required":"yes","param":"resource $window"},{"required":"yes","param":"int $y"},{"required":"yes","param":"int $x"},{"required":"yes","param":"string $text"}],"returns":"int"},"ncurses_napms":{"desc":"Sleep","params":[{"required":"yes","param":"int $milliseconds"}],"returns":"int"},"ncurses_pair_content":{"desc":"Retrieves foreground and background colors of a color pair","params":[{"required":"yes","param":"int $pair"},{"required":"yes","param":"int $f"},{"required":"yes","param":"int $b"}],"returns":"int"},"ncurses_pnoutrefresh":{"desc":"Copies a region from a pad into the virtual screen","params":[{"required":"yes","param":"resource $pad"},{"required":"yes","param":"int $pminrow"},{"required":"yes","param":"int $pmincol"},{"required":"yes","param":"int $sminrow"},{"required":"yes","param":"int $smincol"},{"required":"yes","param":"int $smaxrow"},{"required":"yes","param":"int $smaxcol"}],"returns":"int"},"ncurses_prefresh":{"desc":"Copies a region from a pad into the virtual screen","params":[{"required":"yes","param":"resource $pad"},{"required":"yes","param":"int $pminrow"},{"required":"yes","param":"int $pmincol"},{"required":"yes","param":"int $sminrow"},{"required":"yes","param":"int $smincol"},{"required":"yes","param":"int $smaxrow"},{"required":"yes","param":"int $smaxcol"}],"returns":"int"},"ncurses_putp":{"desc":"Apply padding information to the string and output it","params":[{"required":"yes","param":"string $text"}],"returns":"int"},"ncurses_refresh":{"desc":"Refresh screen","params":[{"required":"yes","param":"int $ch"}],"returns":"int"},"ncurses_replace_panel":{"desc":"Replaces the window associated with panel","params":[{"required":"yes","param":"resource $panel"},{"required":"yes","param":"resource $window"}],"returns":"int"},"ncurses_reset_prog_mode":{"desc":"Resets the prog mode saved by def_prog_mode","params":[],"returns":"int"},"ncurses_reset_shell_mode":{"desc":"Resets the shell mode saved by def_shell_mode","params":[],"returns":"int"},"ncurses_scrl":{"desc":"Scroll window content up or down without changing current position","params":[{"required":"yes","param":"int $count"}],"returns":"int"},"ncurses_scr_dump":{"desc":"Dump screen content to file","params":[{"required":"yes","param":"string $filename"}],"returns":"int"},"ncurses_scr_init":{"desc":"Initialize screen from file dump","params":[{"required":"yes","param":"string $filename"}],"returns":"int"},"ncurses_scr_restore":{"desc":"Restore screen from file dump","params":[{"required":"yes","param":"string $filename"}],"returns":"int"},"ncurses_scr_set":{"desc":"Inherit screen from file dump","params":[{"required":"yes","param":"string $filename"}],"returns":"int"},"ncurses_show_panel":{"desc":"Places an invisible panel on top of the stack, making it visible","params":[{"required":"yes","param":"resource $panel"}],"returns":"int"},"ncurses_slk_attr":{"desc":"Returns current soft label key attribute","params":[],"returns":"int"},"ncurses_slk_attroff":{"desc":"Turn off the given attributes for soft function-key labels","params":[{"required":"yes","param":"int $intarg"}],"returns":"int"},"ncurses_slk_attron":{"desc":"Turn on the given attributes for soft function-key labels","params":[{"required":"yes","param":"int $intarg"}],"returns":"int"},"ncurses_slk_attrset":{"desc":"Set given attributes for soft function-key labels","params":[{"required":"yes","param":"int $intarg"}],"returns":"int"},"ncurses_slk_color":{"desc":"Sets color for soft label keys","params":[{"required":"yes","param":"int $intarg"}],"returns":"int"},"ncurses_slk_refresh":{"desc":"Copies soft label keys to screen","params":[],"returns":"int"},"ncurses_slk_restore":{"desc":"Restores soft label keys","params":[],"returns":"int"},"ncurses_slk_touch":{"desc":"Forces output when ncurses_slk_noutrefresh is performed","params":[],"returns":"int"},"ncurses_standend":{"desc":"Stop using &#039;standout&#039; attribute","params":[],"returns":"int"},"ncurses_standout":{"desc":"Start using &#039;standout&#039; attribute","params":[],"returns":"int"},"ncurses_start_color":{"desc":"Initializes color functionality","params":[],"returns":"int"},"ncurses_top_panel":{"desc":"Moves a visible panel to the top of the stack","params":[{"required":"yes","param":"resource $panel"}],"returns":"int"},"ncurses_typeahead":{"desc":"Specify different filedescriptor for typeahead checking","params":[{"required":"yes","param":"int $fd"}],"returns":"int"},"ncurses_ungetch":{"desc":"Put a character back into the input stream","params":[{"required":"yes","param":"int $keycode"}],"returns":"int"},"ncurses_use_extended_names":{"desc":"Control use of extended names in terminfo descriptions","params":[{"required":"yes","param":"bool $flag"}],"returns":"int"},"ncurses_vidattr":{"desc":"Display the string on the terminal in the video attribute mode","params":[{"required":"yes","param":"int $intarg"}],"returns":"int"},"ncurses_vline":{"desc":"Draw a vertical line at current position using an attributed character and max. n characters long","params":[{"required":"yes","param":"int $charattr"},{"required":"yes","param":"int $n"}],"returns":"int"},"ncurses_waddch":{"desc":"Adds character at current position in a window and advance cursor","params":[{"required":"yes","param":"resource $window"},{"required":"yes","param":"int $ch"}],"returns":"int"},"ncurses_waddstr":{"desc":"Outputs text at current postion in window","params":[{"required":"yes","param":"resource $window"},{"required":"yes","param":"string $str"},{"required":"no","param":"int $n = &#039;&#039;"}],"returns":"int"},"ncurses_wattroff":{"desc":"Turns off attributes for a window","params":[{"required":"yes","param":"resource $window"},{"required":"yes","param":"int $attrs"}],"returns":"int"},"ncurses_wattron":{"desc":"Turns on attributes for a window","params":[{"required":"yes","param":"resource $window"},{"required":"yes","param":"int $attrs"}],"returns":"int"},"ncurses_wattrset":{"desc":"Set the attributes for a window","params":[{"required":"yes","param":"resource $window"},{"required":"yes","param":"int $attrs"}],"returns":"int"},"ncurses_wborder":{"desc":"Draws a border around the window using attributed characters","params":[{"required":"yes","param":"resource $window"},{"required":"yes","param":"int $left"},{"required":"yes","param":"int $right"},{"required":"yes","param":"int $top"},{"required":"yes","param":"int $bottom"},{"required":"yes","param":"int $tl_corner"},{"required":"yes","param":"int $tr_corner"},{"required":"yes","param":"int $bl_corner"},{"required":"yes","param":"int $br_corner"}],"returns":"int"},"ncurses_wclear":{"desc":"Clears window","params":[{"required":"yes","param":"resource $window"}],"returns":"int"},"ncurses_wcolor_set":{"desc":"Sets windows color pairings","params":[{"required":"yes","param":"resource $window"},{"required":"yes","param":"int $color_pair"}],"returns":"int"},"ncurses_werase":{"desc":"Erase window contents","params":[{"required":"yes","param":"resource $window"}],"returns":"int"},"ncurses_wgetch":{"desc":"Reads a character from keyboard (window)","params":[{"required":"yes","param":"resource $window"}],"returns":"int"},"ncurses_whline":{"desc":"Draws a horizontal line in a window at current position using an attributed character and max. n characters long","params":[{"required":"yes","param":"resource $window"},{"required":"yes","param":"int $charattr"},{"required":"yes","param":"int $n"}],"returns":"int"},"ncurses_wmove":{"desc":"Moves windows output position","params":[{"required":"yes","param":"resource $window"},{"required":"yes","param":"int $y"},{"required":"yes","param":"int $x"}],"returns":"int"},"ncurses_wnoutrefresh":{"desc":"Copies window to virtual screen","params":[{"required":"yes","param":"resource $window"}],"returns":"int"},"ncurses_wrefresh":{"desc":"Refresh window on terminal screen","params":[{"required":"yes","param":"resource $window"}],"returns":"int"},"ncurses_wstandend":{"desc":"End standout mode for a window","params":[{"required":"yes","param":"resource $window"}],"returns":"int"},"ncurses_wstandout":{"desc":"Enter standout mode for a window","params":[{"required":"yes","param":"resource $window"}],"returns":"int"},"ncurses_wvline":{"desc":"Draws a vertical line in a window at current position using an attributed character and max. n characters long","params":[{"required":"yes","param":"resource $window"},{"required":"yes","param":"int $charattr"},{"required":"yes","param":"int $n"}],"returns":"int"},"newt_centered_window":{"desc":"Open a centered window of the specified size","params":[{"required":"yes","param":"int $width"},{"required":"yes","param":"int $height"},{"required":"no","param":"string $title = &#039;&#039;"}],"returns":"int"},"newt_finished":{"desc":"Uninitializes newt interface","params":[],"returns":"int"},"newt_init":{"desc":"Initialize newt","params":[],"returns":"int"},"newt_listbox_item_count":{"desc":"","params":[{"required":"yes","param":"resource $listbox"}],"returns":"int"},"newt_open_window":{"desc":"Open a window of the specified size and position","params":[{"required":"yes","param":"int $left"},{"required":"yes","param":"int $top"},{"required":"yes","param":"int $width"},{"required":"yes","param":"int $height"},{"required":"no","param":"string $title = &#039;&#039;"}],"returns":"int"},"newt_textbox_get_num_lines":{"desc":"","params":[{"required":"yes","param":"resource $textbox"}],"returns":"int"},"newt_win_choice":{"desc":"","params":[{"required":"yes","param":"string $title"},{"required":"yes","param":"string $button1_text"},{"required":"yes","param":"string $button2_text"},{"required":"yes","param":"string $format"},{"required":"no","param":"mixed $args = &#039;&#039;"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"int"},"newt_win_entries":{"desc":"","params":[{"required":"yes","param":"string $title"},{"required":"yes","param":"string $text"},{"required":"yes","param":"int $suggested_width"},{"required":"yes","param":"int $flex_down"},{"required":"yes","param":"int $flex_up"},{"required":"yes","param":"int $data_width"},{"required":"yes","param":"array $items"},{"required":"yes","param":"string $button1"},{"required":"no","param":"string $... = &#039;&#039;"}],"returns":"int"},"newt_win_menu":{"desc":"","params":[{"required":"yes","param":"string $title"},{"required":"yes","param":"string $text"},{"required":"yes","param":"int $suggestedWidth"},{"required":"yes","param":"int $flexDown"},{"required":"yes","param":"int $flexUp"},{"required":"yes","param":"int $maxListHeight"},{"required":"yes","param":"array $items"},{"required":"yes","param":"int $listItem"},{"required":"no","param":"string $button1 = &#039;&#039;"},{"required":"no","param":"string $... = &#039;&#039;"}],"returns":"int"},"newt_win_ternary":{"desc":"","params":[{"required":"yes","param":"string $title"},{"required":"yes","param":"string $button1_text"},{"required":"yes","param":"string $button2_text"},{"required":"yes","param":"string $button3_text"},{"required":"yes","param":"string $format"},{"required":"no","param":"mixed $args = &#039;&#039;"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"int"},"notes_find_note":{"desc":"Returns a note id found in database_name","params":[{"required":"yes","param":"string $database_name"},{"required":"yes","param":"string $name"},{"required":"no","param":"string $type = &#039;&#039;"}],"returns":"int"},"numfmt_get_attribute":{"desc":"Get an attribute","params":[{"required":"yes","param":"int $attr"},{"required":"yes","param":"NumberFormatter $fmt"}],"returns":"int"},"numfmt_get_error_code":{"desc":"Get formatter&#039;s last error code.","params":[{"required":"yes","param":"NumberFormatter $fmt"}],"returns":"int"},"ob_get_length":{"desc":"Return the length of the output buffer","params":[],"returns":"int"},"ob_get_level":{"desc":"Return the nesting level of the output buffering mechanism","params":[],"returns":"int"},"ocifetchinto":{"desc":"Fetches the next row into an array (deprecated)","params":[{"required":"yes","param":"resource $statement"},{"required":"yes","param":"array $result"},{"required":"no","param":"int $mode = +"}],"returns":"int"},"oci_fetch_all":{"desc":"Fetches multiple rows from a query into a two-dimensional array","params":[{"required":"yes","param":"resource $statement"},{"required":"yes","param":"array $output"},{"required":"no","param":"int $skip = &#039;&#039;"},{"required":"no","param":"int $maxrows = -1"},{"required":"no","param":"int $flags = +"}],"returns":"int"},"oci_field_precision":{"desc":"Tell the precision of a field","params":[{"required":"yes","param":"resource $statement"},{"required":"yes","param":"int $field"}],"returns":"int"},"oci_field_scale":{"desc":"Tell the scale of the field","params":[{"required":"yes","param":"resource $statement"},{"required":"yes","param":"int $field"}],"returns":"int"},"oci_field_size":{"desc":"Returns field&#039;s size","params":[{"required":"yes","param":"resource $statement"},{"required":"yes","param":"mixed $field"}],"returns":"int"},"oci_field_type_raw":{"desc":"Tell the raw Oracle data type of the field","params":[{"required":"yes","param":"resource $statement"},{"required":"yes","param":"int $field"}],"returns":"int"},"oci_num_fields":{"desc":"Returns the number of result columns in a statement","params":[{"required":"yes","param":"resource $statement"}],"returns":"int"},"oci_num_rows":{"desc":"Returns number of rows affected during statement execution","params":[{"required":"yes","param":"resource $statement"}],"returns":"int"},"odbc_field_len":{"desc":"Get the length (precision) of a field","params":[{"required":"yes","param":"resource $result_id"},{"required":"yes","param":"int $field_number"}],"returns":"int"},"odbc_field_num":{"desc":"Return column number","params":[{"required":"yes","param":"resource $result_id"},{"required":"yes","param":"string $field_name"}],"returns":"int"},"odbc_field_scale":{"desc":"Get the scale of a field","params":[{"required":"yes","param":"resource $result_id"},{"required":"yes","param":"int $field_number"}],"returns":"int"},"odbc_num_fields":{"desc":"Number of columns in a result","params":[{"required":"yes","param":"resource $result_id"}],"returns":"int"},"odbc_num_rows":{"desc":"Number of rows in a result","params":[{"required":"yes","param":"resource $result_id"}],"returns":"int"},"odbc_result_all":{"desc":"Print result as HTML table","params":[{"required":"yes","param":"resource $result_id"},{"required":"no","param":"string $format = &#039;&#039;"}],"returns":"int"},"openal_buffer_get":{"desc":"Retrieve an OpenAL buffer property","params":[{"required":"yes","param":"resource $buffer"},{"required":"yes","param":"int $property"}],"returns":"int"},"openssl_seal":{"desc":"Seal (encrypt) data","params":[{"required":"yes","param":"string $data"},{"required":"yes","param":"string $sealed_data"},{"required":"yes","param":"array $env_keys"},{"required":"yes","param":"array $pub_key_ids"},{"required":"no","param":"string $method = &#039;&#039;"}],"returns":"int"},"openssl_verify":{"desc":"Verify signature","params":[{"required":"yes","param":"string $data"},{"required":"yes","param":"string $signature"},{"required":"yes","param":"mixed $pub_key_id"},{"required":"no","param":"int $signature_alg = OPENSSL_ALGO_SHA1"}],"returns":"int"},"openssl_x509_checkpurpose":{"desc":"Verifies if a certificate can be used for a particular purpose","params":[{"required":"yes","param":"mixed $x509cert"},{"required":"yes","param":"int $purpose"},{"required":"no","param":"array $cainfo = array()"},{"required":"no","param":"string $untrustedfile = &#039;&#039;"}],"returns":"int"},"ord":{"desc":"Return ASCII value of character","params":[{"required":"yes","param":"string $string"}],"returns":"int"},"ovrimos_connect":{"desc":"Connect to the specified database","params":[{"required":"yes","param":"string $host"},{"required":"yes","param":"string $dborport"},{"required":"yes","param":"string $user"},{"required":"yes","param":"string $password"}],"returns":"int"},"ovrimos_exec":{"desc":"Executes an SQL statement","params":[{"required":"yes","param":"int $connection_id"},{"required":"yes","param":"string $query"}],"returns":"int"},"ovrimos_field_len":{"desc":"Returns the length of the output column","params":[{"required":"yes","param":"int $result_id"},{"required":"yes","param":"int $field_number"}],"returns":"int"},"ovrimos_field_num":{"desc":"Returns the (1-based) index of the output column","params":[{"required":"yes","param":"int $result_id"},{"required":"yes","param":"string $field_name"}],"returns":"int"},"ovrimos_field_type":{"desc":"Returns the type of the output column","params":[{"required":"yes","param":"int $result_id"},{"required":"yes","param":"int $field_number"}],"returns":"int"},"ovrimos_num_fields":{"desc":"Returns the number of columns","params":[{"required":"yes","param":"int $result_id"}],"returns":"int"},"ovrimos_num_rows":{"desc":"Returns the number of rows affected by update operations","params":[{"required":"yes","param":"int $result_id"}],"returns":"int"},"ovrimos_prepare":{"desc":"Prepares an SQL statement","params":[{"required":"yes","param":"int $connection_id"},{"required":"yes","param":"string $query"}],"returns":"int"},"ovrimos_result_all":{"desc":"Prints the whole result set as an HTML table","params":[{"required":"yes","param":"int $result_id"},{"required":"no","param":"string $format = &#039;&#039;"}],"returns":"int"},"pclose":{"desc":"Closes process file pointer","params":[{"required":"yes","param":"resource $handle"}],"returns":"int"},"pcntl_alarm":{"desc":"Set an alarm clock for delivery of a signal","params":[{"required":"yes","param":"int $seconds"}],"returns":"int"},"pcntl_fork":{"desc":"Forks the currently running process","params":[],"returns":"int"},"pcntl_getpriority":{"desc":"Get the priority of any process","params":[{"required":"no","param":"int $pid = getmypid()"},{"required":"no","param":"int $process_identifier = PRIO_PROCESS"}],"returns":"int"},"pcntl_sigtimedwait":{"desc":"Waits for signals, with a timeout","params":[{"required":"yes","param":"array $set"},{"required":"no","param":"array $siginfo = &#039;&#039;"},{"required":"no","param":"int $seconds = &#039;&#039;"},{"required":"no","param":"int $nanoseconds = &#039;&#039;"}],"returns":"int"},"pcntl_sigwaitinfo":{"desc":"Waits for signals","params":[{"required":"yes","param":"array $set"},{"required":"no","param":"array $siginfo = &#039;&#039;"}],"returns":"int"},"pcntl_wait":{"desc":"Waits on or returns the status of a forked child","params":[{"required":"yes","param":"int $status"},{"required":"no","param":"int $options = &#039;&#039;"}],"returns":"int"},"pcntl_waitpid":{"desc":"Waits on or returns the status of a forked child","params":[{"required":"yes","param":"int $pid"},{"required":"yes","param":"int $status"},{"required":"no","param":"int $options = &#039;&#039;"}],"returns":"int"},"pcntl_wexitstatus":{"desc":"Returns the return code of a terminated child","params":[{"required":"yes","param":"int $status"}],"returns":"int"},"pcntl_wstopsig":{"desc":"Returns the signal which caused the child to stop","params":[{"required":"yes","param":"int $status"}],"returns":"int"},"pcntl_wtermsig":{"desc":"Returns the signal which caused the child to terminate","params":[{"required":"yes","param":"int $status"}],"returns":"int"},"PDF_add_table_cell":{"desc":"Add a cell to a new or existing table","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $table"},{"required":"yes","param":"int $column"},{"required":"yes","param":"int $row"},{"required":"yes","param":"string $text"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_add_textflow":{"desc":"Create Textflow or add text to existing Textflow","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $textflow"},{"required":"yes","param":"string $text"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_begin_document":{"desc":"Create new PDF file","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $filename"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_begin_item":{"desc":"Open structure element or other content item","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $tag"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_begin_pattern":{"desc":"Start pattern definition","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"float $width"},{"required":"yes","param":"float $height"},{"required":"yes","param":"float $xstep"},{"required":"yes","param":"float $ystep"},{"required":"yes","param":"int $painttype"}],"returns":"int"},"PDF_begin_template":{"desc":"Start template definition [deprecated]","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"float $width"},{"required":"yes","param":"float $height"}],"returns":"int"},"PDF_begin_template_ext":{"desc":"Start template definition","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"float $width"},{"required":"yes","param":"float $height"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_create_3dview":{"desc":"Create 3D view","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $username"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_create_action":{"desc":"Create action for objects or events","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $type"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_create_bookmark":{"desc":"Create bookmark","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $text"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_create_gstate":{"desc":"Create graphics state object","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_create_textflow":{"desc":"Create textflow object","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $text"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_define_layer":{"desc":"Create layer definition","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $name"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_delete_pvf":{"desc":"Delete PDFlib virtual file","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $filename"}],"returns":"int"},"PDF_fill_imageblock":{"desc":"Fill image block with variable data","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $page"},{"required":"yes","param":"string $blockname"},{"required":"yes","param":"int $image"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_fill_pdfblock":{"desc":"Fill PDF block with variable data","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $page"},{"required":"yes","param":"string $blockname"},{"required":"yes","param":"int $contents"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_fill_textblock":{"desc":"Fill text block with variable data","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $page"},{"required":"yes","param":"string $blockname"},{"required":"yes","param":"string $text"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_findfont":{"desc":"Prepare font for later use [deprecated]","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"string $fontname"},{"required":"yes","param":"string $encoding"},{"required":"yes","param":"int $embed"}],"returns":"int"},"PDF_get_errnum":{"desc":"Get error number","params":[{"required":"yes","param":"resource $pdfdoc"}],"returns":"int"},"PDF_get_majorversion":{"desc":"Get major version number [deprecated]","params":[],"returns":"int"},"PDF_get_minorversion":{"desc":"Get minor version number [deprecated]","params":[],"returns":"int"},"PDF_load_3ddata":{"desc":"Load 3D model","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $filename"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_load_font":{"desc":"Search and prepare font","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $fontname"},{"required":"yes","param":"string $encoding"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_load_iccprofile":{"desc":"Search and prepare ICC profile","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $profilename"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_load_image":{"desc":"Open image file","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $imagetype"},{"required":"yes","param":"string $filename"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_makespotcolor":{"desc":"Make spot color","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"string $spotname"}],"returns":"int"},"PDF_open_ccitt":{"desc":"Open raw CCITT image [deprecated]","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $filename"},{"required":"yes","param":"int $width"},{"required":"yes","param":"int $height"},{"required":"yes","param":"int $BitReverse"},{"required":"yes","param":"int $k"},{"required":"yes","param":"int $Blackls1"}],"returns":"int"},"PDF_open_image":{"desc":"Use image data [deprecated]","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"string $imagetype"},{"required":"yes","param":"string $source"},{"required":"yes","param":"string $data"},{"required":"yes","param":"int $length"},{"required":"yes","param":"int $width"},{"required":"yes","param":"int $height"},{"required":"yes","param":"int $components"},{"required":"yes","param":"int $bpc"},{"required":"yes","param":"string $params"}],"returns":"int"},"PDF_open_image_file":{"desc":"Read image from file [deprecated]","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"string $imagetype"},{"required":"yes","param":"string $filename"},{"required":"yes","param":"string $stringparam"},{"required":"yes","param":"int $intparam"}],"returns":"int"},"PDF_open_memory_image":{"desc":"Open image created with PHP&#039;s image functions [not supported]","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"resource $image"}],"returns":"int"},"PDF_open_pdi":{"desc":"Open PDF file [deprecated]","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $filename"},{"required":"yes","param":"string $optlist"},{"required":"yes","param":"int $len"}],"returns":"int"},"PDF_open_pdi_document":{"desc":"Prepare a pdi document","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"string $filename"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_open_pdi_page":{"desc":"Prepare a page","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"int $doc"},{"required":"yes","param":"int $pagenumber"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_process_pdi":{"desc":"Process imported PDF document","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $doc"},{"required":"yes","param":"int $page"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_shading":{"desc":"Define blend","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $shtype"},{"required":"yes","param":"float $x0"},{"required":"yes","param":"float $y0"},{"required":"yes","param":"float $x1"},{"required":"yes","param":"float $y1"},{"required":"yes","param":"float $c1"},{"required":"yes","param":"float $c2"},{"required":"yes","param":"float $c3"},{"required":"yes","param":"float $c4"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_shading_pattern":{"desc":"Define shading pattern","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $shading"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"PDF_show_boxed":{"desc":"Output text in a box [deprecated]","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"string $text"},{"required":"yes","param":"float $left"},{"required":"yes","param":"float $top"},{"required":"yes","param":"float $width"},{"required":"yes","param":"float $height"},{"required":"yes","param":"string $mode"},{"required":"yes","param":"string $feature"}],"returns":"int"},"pg_affected_rows":{"desc":"Returns number of affected records (tuples)","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"pg_connection_status":{"desc":"Get connection status","params":[{"required":"yes","param":"resource $connection"}],"returns":"int"},"pg_field_is_null":{"desc":"Test if a field is SQL NULL","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $row"},{"required":"yes","param":"mixed $field"}],"returns":"int"},"pg_field_num":{"desc":"Returns the field number of the named field","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"string $field_name"}],"returns":"int"},"pg_field_size":{"desc":"Returns the internal storage size of the named field","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_number"}],"returns":"int"},"pg_field_type_oid":{"desc":"Returns the type ID (OID) for the corresponding field number","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_number"}],"returns":"int"},"pg_get_pid":{"desc":"Gets the backend&#039;s process ID","params":[{"required":"yes","param":"resource $connection"}],"returns":"int"},"pg_lo_create":{"desc":"Create a large object","params":[{"required":"no","param":"resource $connection = &#039;&#039;"},{"required":"yes","param":"mixed $object_id"}],"returns":"int"},"pg_lo_import":{"desc":"Import a large object from file","params":[{"required":"no","param":"resource $connection = &#039;&#039;"},{"required":"yes","param":"string $pathname"},{"required":"no","param":"mixed $object_id = &#039;&#039;"}],"returns":"int"},"pg_lo_read_all":{"desc":"Reads an entire large object and send straight to browser","params":[{"required":"yes","param":"resource $large_object"}],"returns":"int"},"pg_lo_tell":{"desc":"Returns current seek position a of large object","params":[{"required":"yes","param":"resource $large_object"}],"returns":"int"},"pg_lo_write":{"desc":"Write to a large object","params":[{"required":"yes","param":"resource $large_object"},{"required":"yes","param":"string $data"},{"required":"no","param":"int $len = &#039;&#039;"}],"returns":"int"},"pg_num_fields":{"desc":"Returns the number of fields in a result","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"pg_num_rows":{"desc":"Returns the number of rows in a result","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"pg_port":{"desc":"Return the port number associated with the connection","params":[{"required":"no","param":"resource $connection = &#039;&#039;"}],"returns":"int"},"pg_set_client_encoding":{"desc":"Set the client encoding","params":[{"required":"no","param":"resource $connection = &#039;&#039;"},{"required":"yes","param":"string $encoding"}],"returns":"int"},"pg_set_error_verbosity":{"desc":"Determines the verbosity of messages returned by pg_last_error and pg_result_error.","params":[{"required":"no","param":"resource $connection = &#039;&#039;"},{"required":"yes","param":"int $verbosity"}],"returns":"int"},"pg_transaction_status":{"desc":"Returns the current in-transaction status of the server.","params":[{"required":"yes","param":"resource $connection"}],"returns":"int"},"posix_getegid":{"desc":"Return the effective group ID of the current process","params":[],"returns":"int"},"posix_geteuid":{"desc":"Return the effective user ID of the current process","params":[],"returns":"int"},"posix_getgid":{"desc":"Return the real group ID of the current process","params":[],"returns":"int"},"posix_getpgid":{"desc":"Get process group id for job control","params":[{"required":"yes","param":"int $pid"}],"returns":"int"},"posix_getpgrp":{"desc":"Return the current process group identifier","params":[],"returns":"int"},"posix_getpid":{"desc":"Return the current process identifier","params":[],"returns":"int"},"posix_getppid":{"desc":"Return the parent process identifier","params":[],"returns":"int"},"posix_getsid":{"desc":"Get the current sid of the process","params":[{"required":"yes","param":"int $pid"}],"returns":"int"},"posix_getuid":{"desc":"Return the real user ID of the current process","params":[],"returns":"int"},"posix_get_last_error":{"desc":"Retrieve the error number set by the last posix function that failed","params":[],"returns":"int"},"posix_setsid":{"desc":"Make the current process a session leader","params":[],"returns":"int"},"preg_last_error":{"desc":"Returns the error code of the last PCRE regex execution","params":[],"returns":"int"},"preg_match":{"desc":"Perform a regular expression match","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"string $subject"},{"required":"no","param":"array $matches = &#039;&#039;"},{"required":"no","param":"int $flags = &#039;&#039;"},{"required":"no","param":"int $offset = &#039;&#039;"}],"returns":"int"},"preg_match_all":{"desc":"Perform a global regular expression match","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"string $subject"},{"required":"yes","param":"array $matches"},{"required":"no","param":"int $flags = &#039;&#039;"},{"required":"no","param":"int $offset = &#039;&#039;"}],"returns":"int"},"print":{"desc":"Output a string","params":[{"required":"yes","param":"string $arg"}],"returns":"int"},"printer_logical_fontheight":{"desc":"Get logical font height","params":[{"required":"yes","param":"resource $printer_handle"},{"required":"yes","param":"int $height"}],"returns":"int"},"printf":{"desc":"Output a formatted string","params":[{"required":"yes","param":"string $format"},{"required":"no","param":"mixed $args = &#039;&#039;"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"int"},"proc_close":{"desc":"Close a process opened by proc_open and return the exit code of that process","params":[{"required":"yes","param":"resource $process"}],"returns":"int"},"pspell_config_create":{"desc":"Create a config used to open a dictionary","params":[{"required":"yes","param":"string $language"},{"required":"no","param":"string $spelling = &#039;&#039;"},{"required":"no","param":"string $jargon = &#039;&#039;"},{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"int"},"pspell_new":{"desc":"Load a new dictionary","params":[{"required":"yes","param":"string $language"},{"required":"no","param":"string $spelling = &#039;&#039;"},{"required":"no","param":"string $jargon = &#039;&#039;"},{"required":"no","param":"string $encoding = &#039;&#039;"},{"required":"no","param":"int $mode = &#039;&#039;"}],"returns":"int"},"pspell_new_config":{"desc":"Load a new dictionary with settings based on a given config","params":[{"required":"yes","param":"int $config"}],"returns":"int"},"pspell_new_personal":{"desc":"Load a new dictionary with personal wordlist","params":[{"required":"yes","param":"string $personal"},{"required":"yes","param":"string $language"},{"required":"no","param":"string $spelling = &#039;&#039;"},{"required":"no","param":"string $jargon = &#039;&#039;"},{"required":"no","param":"string $encoding = &#039;&#039;"},{"required":"no","param":"int $mode = &#039;&#039;"}],"returns":"int"},"ps_add_bookmark":{"desc":"Add bookmark to current page","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $text"},{"required":"no","param":"int $parent = &#039;&#039;"},{"required":"no","param":"int $open = &#039;&#039;"}],"returns":"int"},"ps_begin_pattern":{"desc":"Start a new pattern","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $width"},{"required":"yes","param":"float $height"},{"required":"yes","param":"float $xstep"},{"required":"yes","param":"float $ystep"},{"required":"yes","param":"int $painttype"}],"returns":"int"},"ps_begin_template":{"desc":"Start a new template","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"float $width"},{"required":"yes","param":"float $height"}],"returns":"int"},"ps_findfont":{"desc":"Loads a font","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $fontname"},{"required":"yes","param":"string $encoding"},{"required":"no","param":"bool $embed = false"}],"returns":"int"},"ps_makespotcolor":{"desc":"Create spot color","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $name"},{"required":"no","param":"int $reserved = &#039;&#039;"}],"returns":"int"},"ps_open_image":{"desc":"Reads an image for later placement","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $type"},{"required":"yes","param":"string $source"},{"required":"yes","param":"string $data"},{"required":"yes","param":"int $lenght"},{"required":"yes","param":"int $width"},{"required":"yes","param":"int $height"},{"required":"yes","param":"int $components"},{"required":"yes","param":"int $bpc"},{"required":"yes","param":"string $params"}],"returns":"int"},"ps_open_image_file":{"desc":"Opens image from file","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $type"},{"required":"yes","param":"string $filename"},{"required":"no","param":"string $stringparam = &#039;&#039;"},{"required":"no","param":"int $intparam = &#039;&#039;"}],"returns":"int"},"ps_open_memory_image":{"desc":"Takes an GD image and returns an image for placement in a PS document","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"int $gd"}],"returns":"int"},"ps_shading":{"desc":"Creates a shading for later use","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $type"},{"required":"yes","param":"float $x0"},{"required":"yes","param":"float $y0"},{"required":"yes","param":"float $x1"},{"required":"yes","param":"float $y1"},{"required":"yes","param":"float $c1"},{"required":"yes","param":"float $c2"},{"required":"yes","param":"float $c3"},{"required":"yes","param":"float $c4"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"ps_shading_pattern":{"desc":"Creates a pattern based on a shading","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"int $shadingid"},{"required":"yes","param":"string $optlist"}],"returns":"int"},"ps_show_boxed":{"desc":"Output text in a box","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $text"},{"required":"yes","param":"float $left"},{"required":"yes","param":"float $bottom"},{"required":"yes","param":"float $width"},{"required":"yes","param":"float $height"},{"required":"yes","param":"string $hmode"},{"required":"no","param":"string $feature = &#039;&#039;"}],"returns":"int"},"px_insert_record":{"desc":"Inserts record into paradox database","params":[{"required":"yes","param":"resource $pxdoc"},{"required":"yes","param":"array $data"}],"returns":"int"},"px_numfields":{"desc":"Returns number of fields in a database","params":[{"required":"yes","param":"resource $pxdoc"}],"returns":"int"},"px_numrecords":{"desc":"Returns number of records in a database","params":[{"required":"yes","param":"resource $pxdoc"}],"returns":"int"},"radius_cvt_int":{"desc":"Converts raw data to integer","params":[{"required":"yes","param":"string $data"}],"returns":"int"},"radius_send_request":{"desc":"Sends the request and waites for a reply","params":[{"required":"yes","param":"resource $radius_handle"}],"returns":"int"},"rand":{"desc":"Generate a random integer","params":[{"required":"yes","param":"int $min"},{"required":"yes","param":"int $max"}],"returns":"int"},"readfile":{"desc":"Outputs a file","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"bool $use_include_path = false"},{"required":"no","param":"resource $context = &#039;&#039;"}],"returns":"int"},"readgzfile":{"desc":"Output a gz-file","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"int $use_include_path = &#039;&#039;"}],"returns":"int"},"realpath_cache_size":{"desc":"Get realpath cache size","params":[],"returns":"int"},"resourcebundle_count":{"desc":"Get number of elements in the bundle","params":[{"required":"yes","param":"ResourceBundle $r"}],"returns":"int"},"resourcebundle_get_error_code":{"desc":"Get bundle&#039;s last error code.","params":[{"required":"yes","param":"ResourceBundle $r"}],"returns":"int"},"rrd_first":{"desc":"Gets the timestamp of the first sample from rrd file.","params":[{"required":"yes","param":"string $file"},{"required":"no","param":"int $raaindex = &#039;&#039;"}],"returns":"int"},"rrd_last":{"desc":"Gets unix timestamp of the last sample.","params":[{"required":"yes","param":"string $filename"}],"returns":"int"},"session_cache_expire":{"desc":"Return current cache expire","params":[{"required":"no","param":"string $new_cache_expire = &#039;&#039;"}],"returns":"int"},"shmop_open":{"desc":"Create or open shared memory block","params":[{"required":"yes","param":"int $key"},{"required":"yes","param":"string $flags"},{"required":"yes","param":"int $mode"},{"required":"yes","param":"int $size"}],"returns":"int"},"shmop_size":{"desc":"Get size of shared memory block","params":[{"required":"yes","param":"int $shmid"}],"returns":"int"},"shmop_write":{"desc":"Write data into shared memory block","params":[{"required":"yes","param":"int $shmid"},{"required":"yes","param":"string $data"},{"required":"yes","param":"int $offset"}],"returns":"int"},"similar_text":{"desc":"Calculate the similarity between two strings","params":[{"required":"yes","param":"string $first"},{"required":"yes","param":"string $second"},{"required":"no","param":"float $percent = &#039;&#039;"}],"returns":"int"},"sleep":{"desc":"Delay execution","params":[{"required":"yes","param":"int $seconds"}],"returns":"int"},"snmp_get_valueretrieval":{"desc":"Return the method how the SNMP values will be returned","params":[],"returns":"int"},"socket_last_error":{"desc":"Returns the last error on the socket","params":[{"required":"no","param":"resource $socket = &#039;&#039;"}],"returns":"int"},"socket_recv":{"desc":"Receives data from a connected socket","params":[{"required":"yes","param":"resource $socket"},{"required":"yes","param":"string $buf"},{"required":"yes","param":"int $len"},{"required":"yes","param":"int $flags"}],"returns":"int"},"socket_recvfrom":{"desc":"Receives data from a socket whether or not it is connection-oriented","params":[{"required":"yes","param":"resource $socket"},{"required":"yes","param":"string $buf"},{"required":"yes","param":"int $len"},{"required":"yes","param":"int $flags"},{"required":"yes","param":"string $name"},{"required":"no","param":"int $port = &#039;&#039;"}],"returns":"int"},"socket_select":{"desc":"Runs the select() system call on the given arrays of sockets with a specified timeout","params":[{"required":"yes","param":"array $read"},{"required":"yes","param":"array $write"},{"required":"yes","param":"array $except"},{"required":"yes","param":"int $tv_sec"},{"required":"no","param":"int $tv_usec = &#039;&#039;"}],"returns":"int"},"socket_send":{"desc":"Sends data to a connected socket","params":[{"required":"yes","param":"resource $socket"},{"required":"yes","param":"string $buf"},{"required":"yes","param":"int $len"},{"required":"yes","param":"int $flags"}],"returns":"int"},"socket_sendto":{"desc":"Sends a message to a socket, whether it is connected or not","params":[{"required":"yes","param":"resource $socket"},{"required":"yes","param":"string $buf"},{"required":"yes","param":"int $len"},{"required":"yes","param":"int $flags"},{"required":"yes","param":"string $addr"},{"required":"no","param":"int $port = &#039;&#039;"}],"returns":"int"},"socket_write":{"desc":"Write to a socket","params":[{"required":"yes","param":"resource $socket"},{"required":"yes","param":"string $buffer"},{"required":"no","param":"int $length = &#039;&#039;"}],"returns":"int"},"sqlite_changes":{"desc":"Returns the number of rows that were changed by the most recent SQL statement","params":[{"required":"yes","param":"resource $dbhandle"}],"returns":"int"},"sqlite_key":{"desc":"Returns the current row index","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"sqlite_last_error":{"desc":"Returns the error code of the last error for a database","params":[{"required":"yes","param":"resource $dbhandle"}],"returns":"int"},"sqlite_last_insert_rowid":{"desc":"Returns the rowid of the most recently inserted row","params":[{"required":"yes","param":"resource $dbhandle"}],"returns":"int"},"sqlite_num_fields":{"desc":"Returns the number of fields in a result set","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"sqlite_num_rows":{"desc":"Returns the number of rows in a buffered result set","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"ssdeep_fuzzy_compare":{"desc":"Calculates the match score between two fuzzy hash signatures","params":[{"required":"yes","param":"string $signature1"},{"required":"yes","param":"string $signature2"}],"returns":"int"},"stats_rand_gen_ibinomial":{"desc":"Generates a single random deviate from a binomial distribution whose number of trials is &quot;n&quot; (n &gt;= 0) and whose probability of an event in each trial is &quot;pp&quot; ([0;1]). Method : algorithm BTPE","params":[{"required":"yes","param":"int $n"},{"required":"yes","param":"float $pp"}],"returns":"int"},"stats_rand_gen_ibinomial_negative":{"desc":"Generates a single random deviate from a negative binomial distribution. Arguments : n - the number of trials in the negative binomial distribution from which a random deviate is to be generated (n &gt; 0), p - the probability of an event (0 &lt; p &lt; 1)).","params":[{"required":"yes","param":"int $n"},{"required":"yes","param":"float $p"}],"returns":"int"},"stats_rand_gen_int":{"desc":"Generates random integer between 1 and 2147483562","params":[],"returns":"int"},"stats_rand_gen_ipoisson":{"desc":"Generates a single random deviate from a Poisson distribution with mean &quot;mu&quot; (mu &gt;= 0.0).","params":[{"required":"yes","param":"float $mu"}],"returns":"int"},"stats_rand_gen_iuniform":{"desc":"Generates integer uniformly distributed between LOW (inclusive) and HIGH (inclusive)","params":[{"required":"yes","param":"int $low"},{"required":"yes","param":"int $high"}],"returns":"int"},"strcasecmp":{"desc":"Binary safe case-insensitive string comparison","params":[{"required":"yes","param":"string $str1"},{"required":"yes","param":"string $str2"}],"returns":"int"},"strcmp":{"desc":"Binary safe string comparison","params":[{"required":"yes","param":"string $str1"},{"required":"yes","param":"string $str2"}],"returns":"int"},"strcoll":{"desc":"Locale based string comparison","params":[{"required":"yes","param":"string $str1"},{"required":"yes","param":"string $str2"}],"returns":"int"},"strcspn":{"desc":"Find length of initial segment not matching mask","params":[{"required":"yes","param":"string $str1"},{"required":"yes","param":"string $str2"},{"required":"no","param":"int $start = &#039;&#039;"},{"required":"no","param":"int $length = &#039;&#039;"}],"returns":"int"},"stream_copy_to_stream":{"desc":"Copies data from one stream to another","params":[{"required":"yes","param":"resource $source"},{"required":"yes","param":"resource $dest"},{"required":"no","param":"int $maxlength = -1"},{"required":"no","param":"int $offset = &#039;&#039;"}],"returns":"int"},"stream_select":{"desc":"Runs the equivalent of the select() system call on the given arrays of streams with a timeout specified by tv_sec and tv_usec","params":[{"required":"yes","param":"array $read"},{"required":"yes","param":"array $write"},{"required":"yes","param":"array $except"},{"required":"yes","param":"int $tv_sec"},{"required":"no","param":"int $tv_usec = &#039;&#039;"}],"returns":"int"},"stream_set_read_buffer":{"desc":"Set read file buffering on the given stream","params":[{"required":"yes","param":"resource $stream"},{"required":"yes","param":"int $buffer"}],"returns":"int"},"stream_set_write_buffer":{"desc":"Sets write file buffering on the given stream","params":[{"required":"yes","param":"resource $stream"},{"required":"yes","param":"int $buffer"}],"returns":"int"},"stream_socket_sendto":{"desc":"Sends a message to a socket, whether it is connected or not","params":[{"required":"yes","param":"resource $socket"},{"required":"yes","param":"string $data"},{"required":"no","param":"int $flags = &#039;&#039;"},{"required":"no","param":"string $address = &#039;&#039;"}],"returns":"int"},"strlen":{"desc":"Get string length","params":[{"required":"yes","param":"string $string"}],"returns":"int"},"strnatcasecmp":{"desc":"Case insensitive string comparisons using a &quot;natural order&quot; algorithm","params":[{"required":"yes","param":"string $str1"},{"required":"yes","param":"string $str2"}],"returns":"int"},"strnatcmp":{"desc":"String comparisons using a &quot;natural order&quot; algorithm","params":[{"required":"yes","param":"string $str1"},{"required":"yes","param":"string $str2"}],"returns":"int"},"strncasecmp":{"desc":"Binary safe case-insensitive string comparison of the first n characters","params":[{"required":"yes","param":"string $str1"},{"required":"yes","param":"string $str2"},{"required":"yes","param":"int $len"}],"returns":"int"},"strncmp":{"desc":"Binary safe string comparison of the first n characters","params":[{"required":"yes","param":"string $str1"},{"required":"yes","param":"string $str2"},{"required":"yes","param":"int $len"}],"returns":"int"},"strpos":{"desc":"Find position of first occurrence of a string","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"mixed $needle"},{"required":"no","param":"int $offset = &#039;&#039;"}],"returns":"int"},"strripos":{"desc":"Find position of last occurrence of a case-insensitive string in a string","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"int $offset = &#039;&#039;"}],"returns":"int"},"strrpos":{"desc":"Find the position of the last occurrence of a substring in a string","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"int $offset = &#039;&#039;"}],"returns":"int"},"strspn":{"desc":"Finds the length of the first segment of a string consisting entirely of characters contained within a given mask.","params":[{"required":"yes","param":"string $subject"},{"required":"yes","param":"string $mask"},{"required":"no","param":"int $start = &#039;&#039;"},{"required":"no","param":"int $length = &#039;&#039;"}],"returns":"int"},"strtotime":{"desc":"Parse about any English textual datetime description into a Unix timestamp","params":[{"required":"yes","param":"string $time"},{"required":"no","param":"int $now = &#039;&#039;"}],"returns":"int"},"substr_compare":{"desc":"Binary safe comparison of two strings from an offset, up to length characters","params":[{"required":"yes","param":"string $main_str"},{"required":"yes","param":"string $str"},{"required":"yes","param":"int $offset"},{"required":"no","param":"int $length = &#039;&#039;"},{"required":"no","param":"bool $case_insensitivity = false"}],"returns":"int"},"substr_count":{"desc":"Count the number of substring occurrences","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"int $offset = &#039;&#039;"},{"required":"no","param":"int $length = &#039;&#039;"}],"returns":"int"},"svn_fs_check_path":{"desc":"Determines what kind of item lives at path in a given repository fsroot","params":[{"required":"yes","param":"resource $fsroot"},{"required":"yes","param":"string $path"}],"returns":"int"},"svn_fs_file_length":{"desc":"Returns the length of a file from a given version of the fs","params":[{"required":"yes","param":"resource $fsroot"},{"required":"yes","param":"string $path"}],"returns":"int"},"svn_fs_node_created_rev":{"desc":"Returns the revision in which path under fsroot was created","params":[{"required":"yes","param":"resource $fsroot"},{"required":"yes","param":"string $path"}],"returns":"int"},"svn_fs_youngest_rev":{"desc":"Returns the number of the youngest revision in the filesystem","params":[{"required":"yes","param":"resource $fs"}],"returns":"int"},"svn_repos_fs_commit_txn":{"desc":"Commits a transaction and returns the new revision","params":[{"required":"yes","param":"resource $txn"}],"returns":"int"},"svn_update":{"desc":"Update working copy","params":[{"required":"yes","param":"string $path"},{"required":"no","param":"int $revno = SVN_REVISION_HEAD"},{"required":"no","param":"bool $recurse = true"}],"returns":"int"},"swf_getframe":{"desc":"Get the frame number of the current frame","params":[],"returns":"int"},"swf_nextid":{"desc":"Returns the next free object id","params":[],"returns":"int"},"sybase_affected_rows":{"desc":"Gets number of affected rows in last query","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"int"},"sybase_num_fields":{"desc":"Gets the number of fields in a result set","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"sybase_num_rows":{"desc":"Get number of rows in a result set","params":[{"required":"yes","param":"resource $result"}],"returns":"int"},"tidy_access_count":{"desc":"Returns the Number of Tidy accessibility warnings encountered for specified document","params":[{"required":"yes","param":"tidy $object"}],"returns":"int"},"tidy_config_count":{"desc":"Returns the Number of Tidy configuration errors encountered for specified document","params":[{"required":"yes","param":"tidy $object"}],"returns":"int"},"tidy_error_count":{"desc":"Returns the Number of Tidy errors encountered for specified document","params":[{"required":"yes","param":"tidy $object"}],"returns":"int"},"tidy_get_html_ver":{"desc":"Get the Detected HTML version for the specified document","params":[{"required":"yes","param":"tidy $object"}],"returns":"int"},"tidy_get_status":{"desc":"Get status of specified document","params":[{"required":"yes","param":"tidy $object"}],"returns":"int"},"tidy_warning_count":{"desc":"Returns the Number of Tidy warnings encountered for specified document","params":[{"required":"yes","param":"tidy $object"}],"returns":"int"},"time":{"desc":"Return current Unix timestamp","params":[],"returns":"int"},"transliterator_get_error_code":{"desc":"Get last error code","params":[],"returns":"int"},"udm_api_version":{"desc":"Get mnoGoSearch API version","params":[],"returns":"int"},"udm_check_stored":{"desc":"Check connection to stored","params":[{"required":"yes","param":"resource $agent"},{"required":"yes","param":"int $link"},{"required":"yes","param":"string $doc_id"}],"returns":"int"},"udm_close_stored":{"desc":"Close connection to stored","params":[{"required":"yes","param":"resource $agent"},{"required":"yes","param":"int $link"}],"returns":"int"},"udm_crc32":{"desc":"Return CRC32 checksum of given string","params":[{"required":"yes","param":"resource $agent"},{"required":"yes","param":"string $str"}],"returns":"int"},"udm_errno":{"desc":"Get mnoGoSearch error number","params":[{"required":"yes","param":"resource $agent"}],"returns":"int"},"udm_free_agent":{"desc":"Free mnoGoSearch session","params":[{"required":"yes","param":"resource $agent"}],"returns":"int"},"udm_get_doc_count":{"desc":"Get total number of documents in database","params":[{"required":"yes","param":"resource $agent"}],"returns":"int"},"udm_hash32":{"desc":"Return Hash32 checksum of gived string","params":[{"required":"yes","param":"resource $agent"},{"required":"yes","param":"string $str"}],"returns":"int"},"udm_open_stored":{"desc":"Open connection to stored","params":[{"required":"yes","param":"resource $agent"},{"required":"yes","param":"string $storedaddr"}],"returns":"int"},"umask":{"desc":"Changes the current umask","params":[{"required":"no","param":"int $mask = &#039;&#039;"}],"returns":"int"},"unixtojd":{"desc":"Convert Unix timestamp to Julian Day","params":[{"required":"no","param":"int $timestamp = time("}],"returns":"int"},"variant_cmp":{"desc":"Compares two variants","params":[{"required":"yes","param":"mixed $left"},{"required":"yes","param":"mixed $right"},{"required":"no","param":"int $lcid = &#039;&#039;"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"int"},"variant_date_to_timestamp":{"desc":"Converts a variant date/time value to Unix timestamp","params":[{"required":"yes","param":"variant $variant"}],"returns":"int"},"variant_get_type":{"desc":"Returns the type of a variant object","params":[{"required":"yes","param":"variant $variant"}],"returns":"int"},"vfprintf":{"desc":"Write a formatted string to a stream","params":[{"required":"yes","param":"resource $handle"},{"required":"yes","param":"string $format"},{"required":"yes","param":"array $args"}],"returns":"int"},"vprintf":{"desc":"Output a formatted string","params":[{"required":"yes","param":"string $format"},{"required":"yes","param":"array $args"}],"returns":"int"},"win32_continue_service":{"desc":"Resumes a paused service","params":[{"required":"yes","param":"string $servicename"},{"required":"no","param":"string $machine = &#039;&#039;"}],"returns":"int"},"win32_get_last_control_message":{"desc":"Returns the last control message that was sent to this service","params":[],"returns":"int"},"win32_pause_service":{"desc":"Pauses a service","params":[{"required":"yes","param":"string $servicename"},{"required":"no","param":"string $machine = &#039;&#039;"}],"returns":"int"},"win32_start_service":{"desc":"Starts a service","params":[{"required":"yes","param":"string $servicename"},{"required":"no","param":"string $machine = &#039;&#039;"}],"returns":"int"},"win32_stop_service":{"desc":"Stops a service","params":[{"required":"yes","param":"string $servicename"},{"required":"no","param":"string $machine = &#039;&#039;"}],"returns":"int"},"xdiff_file_bdiff_size":{"desc":"Read a size of file created by applying a binary diff","params":[{"required":"yes","param":"string $file"}],"returns":"int"},"xdiff_string_bdiff_size":{"desc":"Read a size of file created by applying a binary diff","params":[{"required":"yes","param":"string $patch"}],"returns":"int"},"xmlrpc_server_add_introspection_data":{"desc":"Adds introspection documentation","params":[{"required":"yes","param":"resource $server"},{"required":"yes","param":"array $desc"}],"returns":"int"},"xmlrpc_server_destroy":{"desc":"Destroys server resources","params":[{"required":"yes","param":"resource $server"}],"returns":"int"},"xml_get_current_byte_index":{"desc":"Get current byte index for an XML parser","params":[{"required":"yes","param":"resource $parser"}],"returns":"int"},"xml_get_current_column_number":{"desc":"Get current column number for an XML parser","params":[{"required":"yes","param":"resource $parser"}],"returns":"int"},"xml_get_current_line_number":{"desc":"Get current line number for an XML parser","params":[{"required":"yes","param":"resource $parser"}],"returns":"int"},"xml_get_error_code":{"desc":"Get XML parser error code","params":[{"required":"yes","param":"resource $parser"}],"returns":"int"},"xml_parse":{"desc":"Start parsing an XML document","params":[{"required":"yes","param":"resource $parser"},{"required":"yes","param":"string $data"},{"required":"no","param":"bool $is_final = false"}],"returns":"int"},"xml_parse_into_struct":{"desc":"Parse XML data into an array structure","params":[{"required":"yes","param":"resource $parser"},{"required":"yes","param":"string $data"},{"required":"yes","param":"array $values"},{"required":"no","param":"array $index = &#039;&#039;"}],"returns":"int"},"xslt_errno":{"desc":"Returns an error number","params":[{"required":"yes","param":"resource $xh"}],"returns":"int"},"xslt_getopt":{"desc":"Get options on a given xsl processor","params":[{"required":"yes","param":"resource $processor"}],"returns":"int"},"yaz_errno":{"desc":"Returns error number","params":[{"required":"yes","param":"resource $id"}],"returns":"int"},"yaz_hits":{"desc":"Returns number of hits for last search","params":[{"required":"yes","param":"resource $id"},{"required":"no","param":"array $searchresult = &#039;&#039;"}],"returns":"int"},"yp_errno":{"desc":"Returns the error code of the previous operation","params":[],"returns":"int"},"yp_order":{"desc":"Returns the order number for a map","params":[{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $map"}],"returns":"int"},"zend_thread_id":{"desc":"Returns a unique identifier for the current thread","params":[],"returns":"int"},"zip_entry_compressedsize":{"desc":"Retrieve the compressed size of a directory entry","params":[{"required":"yes","param":"resource $zip_entry"}],"returns":"int"},"zip_entry_filesize":{"desc":"Retrieve the actual file size of a directory entry","params":[{"required":"yes","param":"resource $zip_entry"}],"returns":"int"},"apc_compile_file":{"desc":"Stores a file in the bytecode cache, bypassing all filters.","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"bool $atomic = true"}],"returns":"mixed"},"apc_delete":{"desc":"Removes a stored variable from the cache","params":[{"required":"yes","param":"string $key"}],"returns":"mixed"},"apc_delete_file":{"desc":"Deletes files from the opcode cache","params":[{"required":"yes","param":"mixed $keys"}],"returns":"mixed"},"apc_exists":{"desc":"Checks if APC key exists","params":[{"required":"yes","param":"mixed $keys"}],"returns":"mixed"},"apc_fetch":{"desc":"Fetch a stored variable from the cache","params":[{"required":"yes","param":"mixed $key"},{"required":"no","param":"bool $success = &#039;&#039;"}],"returns":"mixed"},"array_rand":{"desc":"Pick one or more random entries out of an array","params":[{"required":"yes","param":"array $input"},{"required":"no","param":"int $num_req = 1"}],"returns":"mixed"},"array_reduce":{"desc":"Iteratively reduce the array to a single value using a callback function","params":[{"required":"yes","param":"array $input"},{"required":"yes","param":"callback $function"},{"required":"no","param":"mixed $initial = &#039;&#039;"}],"returns":"mixed"},"array_search":{"desc":"Searches the array for a given value and returns the corresponding key if successful","params":[{"required":"yes","param":"mixed $needle"},{"required":"yes","param":"array $haystack"},{"required":"no","param":"bool $strict = false"}],"returns":"mixed"},"assert_options":{"desc":"Set/get the various assert flags","params":[{"required":"yes","param":"int $what"},{"required":"no","param":"mixed $value = &#039;&#039;"}],"returns":"mixed"},"bzcompress":{"desc":"Compress a string into bzip2 encoded data","params":[{"required":"yes","param":"string $source"},{"required":"no","param":"int $blocksize = 4"},{"required":"no","param":"int $workfactor = &#039;&#039;"}],"returns":"mixed"},"bzdecompress":{"desc":"Decompresses bzip2 encoded data","params":[{"required":"yes","param":"string $source"},{"required":"no","param":"int $small = &#039;&#039;"}],"returns":"mixed"},"call_user_func":{"desc":"Call a user function given by the first parameter","params":[{"required":"yes","param":"callback $function"},{"required":"no","param":"mixed $parameter = &#039;&#039;"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"mixed"},"call_user_func_array":{"desc":"Call a user function given with an array of parameters","params":[{"required":"yes","param":"callback $function"},{"required":"yes","param":"array $param_arr"}],"returns":"mixed"},"call_user_method":{"desc":"Call a user method on an specific object [deprecated]","params":[{"required":"yes","param":"string $method_name"},{"required":"yes","param":"object $obj"},{"required":"no","param":"mixed $parameter = &#039;&#039;"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"mixed"},"call_user_method_array":{"desc":"Call a user method given with an array of parameters [deprecated]","params":[{"required":"yes","param":"string $method_name"},{"required":"yes","param":"object $obj"},{"required":"yes","param":"array $params"}],"returns":"mixed"},"constant":{"desc":"Returns the value of a constant","params":[{"required":"yes","param":"string $name"}],"returns":"mixed"},"count_chars":{"desc":"Return information about characters used in a string","params":[{"required":"yes","param":"string $string"},{"required":"no","param":"int $mode = &#039;&#039;"}],"returns":"mixed"},"cubrid_fetch":{"desc":"Fetch the next row from a result set","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $type = CUBRID_BOTH"}],"returns":"mixed"},"cubrid_get":{"desc":"Get a column using OID","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $oid"},{"required":"no","param":"mixed $attr = &#039;&#039;"}],"returns":"mixed"},"curl_exec":{"desc":"Perform a cURL session","params":[{"required":"yes","param":"resource $ch"}],"returns":"mixed"},"curl_getinfo":{"desc":"Get information regarding a specific transfer","params":[{"required":"yes","param":"resource $ch"},{"required":"no","param":"int $opt = &#039;&#039;"}],"returns":"mixed"},"current":{"desc":"Return the current element in an array","params":[{"required":"yes","param":"array $array"}],"returns":"mixed"},"date_sunrise":{"desc":"Returns time of sunrise for a given day and location","params":[{"required":"yes","param":"int $timestamp"},{"required":"no","param":"int $format = SUNFUNCS_RET_STRING"},{"required":"no","param":"float $latitude = ini_get(&quot;date.default_latitude&quot;)"},{"required":"no","param":"float $longitude = ini_get(&quot;date.default_longitude&quot;)"},{"required":"no","param":"float $zenith = ini_get(&quot;date.sunrise_zenith&quot;)"},{"required":"no","param":"float $gmt_offset = &#039;&#039;"}],"returns":"mixed"},"date_sunset":{"desc":"Returns time of sunset for a given day and location","params":[{"required":"yes","param":"int $timestamp"},{"required":"no","param":"int $format = SUNFUNCS_RET_STRING"},{"required":"no","param":"float $latitude = ini_get(&quot;date.default_latitude&quot;)"},{"required":"no","param":"float $longitude = ini_get(&quot;date.default_longitude&quot;)"},{"required":"no","param":"float $zenith = ini_get(&quot;date.sunset_zenith&quot;)"},{"required":"no","param":"float $gmt_offset = &#039;&#039;"}],"returns":"mixed"},"db2_autocommit":{"desc":"Returns or sets the AUTOCOMMIT state for a database connection","params":[{"required":"yes","param":"resource $connection"},{"required":"no","param":"bool $value = &#039;&#039;"}],"returns":"mixed"},"db2_result":{"desc":"Returns a single column from a row in the result set","params":[{"required":"yes","param":"resource $stmt"},{"required":"yes","param":"mixed $column"}],"returns":"mixed"},"dba_key_split":{"desc":"Splits a key in string representation into array representation","params":[{"required":"yes","param":"mixed $key"}],"returns":"mixed"},"dbplus_close":{"desc":"Close a relation","params":[{"required":"yes","param":"resource $relation"}],"returns":"mixed"},"dbplus_rcrtexact":{"desc":"Creates an exact but empty copy of a relation including indices","params":[{"required":"yes","param":"string $name"},{"required":"yes","param":"resource $relation"},{"required":"no","param":"bool $overwrite = &#039;&#039;"}],"returns":"mixed"},"dbplus_rcrtlike":{"desc":"Creates an empty copy of a relation with default indices","params":[{"required":"yes","param":"string $name"},{"required":"yes","param":"resource $relation"},{"required":"no","param":"int $overwrite = &#039;&#039;"}],"returns":"mixed"},"dbplus_rkeys":{"desc":"Specify new primary key for a relation","params":[{"required":"yes","param":"resource $relation"},{"required":"yes","param":"mixed $domlist"}],"returns":"mixed"},"dbplus_rsecindex":{"desc":"Create a new secondary index for a relation","params":[{"required":"yes","param":"resource $relation"},{"required":"yes","param":"mixed $domlist"},{"required":"yes","param":"int $type"}],"returns":"mixed"},"dbx_fetch_row":{"desc":"Fetches rows from a query-result that had the DBX_RESULT_UNBUFFERED flag set","params":[{"required":"yes","param":"object $result_identifier"}],"returns":"mixed"},"dbx_query":{"desc":"Send a query and fetch all results (if any)","params":[{"required":"yes","param":"object $link_identifier"},{"required":"yes","param":"string $sql_statement"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"mixed"},"dio_fcntl":{"desc":"Performs a c library fcntl on fd","params":[{"required":"yes","param":"resource $fd"},{"required":"yes","param":"int $cmd"},{"required":"no","param":"mixed $args = &#039;&#039;"}],"returns":"mixed"},"enchant_broker_list_dicts":{"desc":"Returns a list of available dictionaries","params":[{"required":"yes","param":"resource $broker"}],"returns":"mixed"},"enchant_dict_describe":{"desc":"Describes an individual dictionary","params":[{"required":"yes","param":"resource $dict"}],"returns":"mixed"},"end":{"desc":"Set the internal pointer of an array to its last element","params":[{"required":"yes","param":"array $array"}],"returns":"mixed"},"eval":{"desc":"Evaluate a string as PHP code","params":[{"required":"yes","param":"string $code_str"}],"returns":"mixed"},"fbsql_result":{"desc":"Get result data","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $row = &#039;&#039;"},{"required":"no","param":"mixed $field = &#039;&#039;"}],"returns":"mixed"},"fdf_get_opt":{"desc":"Gets a value from the opt array of a field","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"string $fieldname"},{"required":"no","param":"int $element = -1"}],"returns":"mixed"},"fdf_get_value":{"desc":"Get the value of a field","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"yes","param":"string $fieldname"},{"required":"no","param":"int $which = -1"}],"returns":"mixed"},"filter_input":{"desc":"Gets a specific external variable by name and optionally filters it","params":[{"required":"yes","param":"int $type"},{"required":"yes","param":"string $variable_name"},{"required":"no","param":"int $filter = FILTER_DEFAULT"},{"required":"no","param":"mixed $options = &#039;&#039;"}],"returns":"mixed"},"filter_input_array":{"desc":"Gets external variables and optionally filters them","params":[{"required":"yes","param":"int $type"},{"required":"no","param":"mixed $definition = &#039;&#039;"}],"returns":"mixed"},"filter_var":{"desc":"Filters a variable with a specified filter","params":[{"required":"yes","param":"mixed $variable"},{"required":"no","param":"int $filter = FILTER_DEFAULT"},{"required":"no","param":"mixed $options = &#039;&#039;"}],"returns":"mixed"},"filter_var_array":{"desc":"Gets multiple variables and optionally filters them","params":[{"required":"yes","param":"array $data"},{"required":"no","param":"mixed $definition = &#039;&#039;"}],"returns":"mixed"},"forward_static_call":{"desc":"Call a static method","params":[{"required":"yes","param":"callback $function"},{"required":"no","param":"mixed $parameter = &#039;&#039;"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"mixed"},"forward_static_call_array":{"desc":"Call a static method and pass the arguments as array","params":[{"required":"yes","param":"callback $function"},{"required":"yes","param":"array $parameters"}],"returns":"mixed"},"fscanf":{"desc":"Parses input from a file according to a format","params":[{"required":"yes","param":"resource $handle"},{"required":"yes","param":"string $format"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"mixed"},"ftp_get_option":{"desc":"Retrieves various runtime behaviours of the current FTP stream","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"int $option"}],"returns":"mixed"},"func_get_arg":{"desc":"Return an item from the argument list","params":[{"required":"yes","param":"int $arg_num"}],"returns":"mixed"},"gettimeofday":{"desc":"Get current time","params":[{"required":"no","param":"bool $return_float = &#039;&#039;"}],"returns":"mixed"},"get_browser":{"desc":"Tells what the user&#039;s browser is capable of","params":[{"required":"no","param":"string $user_agent = &#039;&#039;"},{"required":"no","param":"bool $return_array = false"}],"returns":"mixed"},"gupnp_service_action_get":{"desc":"Retrieves the specified action arguments","params":[{"required":"yes","param":"resource $action"},{"required":"yes","param":"string $name"},{"required":"yes","param":"int $type"}],"returns":"mixed"},"gupnp_service_info_get_introspection":{"desc":"Get resource introspection of service","params":[{"required":"yes","param":"resource $proxy"},{"required":"no","param":"mixed $callback = &#039;&#039;"},{"required":"no","param":"mixed $arg = &#039;&#039;"}],"returns":"mixed"},"gupnp_service_proxy_action_get":{"desc":"Send action to the service and get value","params":[{"required":"yes","param":"resource $proxy"},{"required":"yes","param":"string $action"},{"required":"yes","param":"string $name"},{"required":"yes","param":"int $type"}],"returns":"mixed"},"highlight_file":{"desc":"Syntax highlighting of a file","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"bool $return = false"}],"returns":"mixed"},"highlight_string":{"desc":"Syntax highlighting of a string","params":[{"required":"yes","param":"string $str"},{"required":"no","param":"bool $return = false"}],"returns":"mixed"},"hw_GetObject":{"desc":"Object record","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"mixed $objectID"},{"required":"no","param":"string $query = &#039;&#039;"}],"returns":"mixed"},"hw_getremotechildren":{"desc":"Gets children of remote document","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"string $object_record"}],"returns":"mixed"},"ibase_backup":{"desc":"Initiates a backup task in the service manager and returns immediately","params":[{"required":"yes","param":"resource $service_handle"},{"required":"yes","param":"string $source_db"},{"required":"yes","param":"string $dest_file"},{"required":"no","param":"int $options = &#039;&#039;"},{"required":"no","param":"bool $verbose = false"}],"returns":"mixed"},"ibase_blob_close":{"desc":"Close blob","params":[{"required":"yes","param":"resource $blob_handle"}],"returns":"mixed"},"ibase_gen_id":{"desc":"Increments the named generator and returns its new value","params":[{"required":"yes","param":"string $generator"},{"required":"no","param":"int $increment = 1"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"mixed"},"ibase_restore":{"desc":"Initiates a restore task in the service manager and returns immediately","params":[{"required":"yes","param":"resource $service_handle"},{"required":"yes","param":"string $source_file"},{"required":"yes","param":"string $dest_db"},{"required":"no","param":"int $options = &#039;&#039;"},{"required":"no","param":"bool $verbose = false"}],"returns":"mixed"},"iconv_get_encoding":{"desc":"Retrieve internal configuration variables of iconv extension","params":[{"required":"no","param":"string $type = &quot;all&quot;"}],"returns":"mixed"},"imap_timeout":{"desc":"Set or fetch imap timeout","params":[{"required":"yes","param":"int $timeout_type"},{"required":"no","param":"int $timeout = -1"}],"returns":"mixed"},"ingres_prepare":{"desc":"Prepare a query for later execution","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"string $query"}],"returns":"mixed"},"ingres_query":{"desc":"Send an SQL query to Ingres","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"string $query"},{"required":"no","param":"array $params = &#039;&#039;"},{"required":"no","param":"string $types = &#039;&#039;"}],"returns":"mixed"},"ingres_unbuffered_query":{"desc":"Send an unbuffered SQL query to Ingres","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"string $query"},{"required":"no","param":"array $params = &#039;&#039;"},{"required":"no","param":"string $types = &#039;&#039;"}],"returns":"mixed"},"iptcembed":{"desc":"Embeds binary IPTC data into a JPEG image","params":[{"required":"yes","param":"string $iptcdata"},{"required":"yes","param":"string $jpeg_file_name"},{"required":"no","param":"int $spool = &#039;&#039;"}],"returns":"mixed"},"JDDayOfWeek":{"desc":"Returns the day of the week","params":[{"required":"yes","param":"int $julianday"},{"required":"no","param":"int $mode = CAL_DOW_DAYNO"}],"returns":"mixed"},"json_decode":{"desc":"Decodes a JSON string","params":[{"required":"yes","param":"string $json"},{"required":"no","param":"bool $assoc = false"},{"required":"no","param":"int $depth = 512"},{"required":"no","param":"int $options = &#039;&#039;"}],"returns":"mixed"},"key":{"desc":"Fetch a key from an array","params":[{"required":"yes","param":"array $array"}],"returns":"mixed"},"ldap_compare":{"desc":"Compare value of attribute found in entry specified with DN","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"string $dn"},{"required":"yes","param":"string $attribute"},{"required":"yes","param":"string $value"}],"returns":"mixed"},"maxdb_fetch_array":{"desc":"Fetch a result row as an associative, a numeric array, or both","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $resulttype = &#039;&#039;"}],"returns":"mixed"},"maxdb_fetch_field":{"desc":"Returns the next field in the result set","params":[{"required":"yes","param":"resource $result"}],"returns":"mixed"},"maxdb_fetch_fields":{"desc":"Returns an array of resources representing the fields in a result set","params":[{"required":"yes","param":"resource $result"}],"returns":"mixed"},"maxdb_fetch_field_direct":{"desc":"Fetch meta-data for a single field","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $fieldnr"}],"returns":"mixed"},"maxdb_fetch_row":{"desc":"Get a result row as an enumerated array","params":[{"required":"yes","param":"resource $result"}],"returns":"mixed"},"maxdb_insert_id":{"desc":"Returns the auto generated id used in the last query","params":[{"required":"yes","param":"resource $link"}],"returns":"mixed"},"maxdb_query":{"desc":"Performs a query on the database","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"string $query"},{"required":"no","param":"int $resultmode = &#039;&#039;"}],"returns":"mixed"},"maxdb_stmt_prepare":{"desc":"Prepare an SQL statement for execution","params":[{"required":"yes","param":"resource $stmt"},{"required":"yes","param":"string $query"}],"returns":"mixed"},"mb_detect_order":{"desc":"Set/Get character encoding detection order","params":[{"required":"no","param":"mixed $encoding_list = &#039;&#039;"}],"returns":"mixed"},"mb_get_info":{"desc":"Get internal settings of mbstring","params":[{"required":"no","param":"string $type = &quot;all&quot;"}],"returns":"mixed"},"mb_http_input":{"desc":"Detect HTTP input character encoding","params":[{"required":"no","param":"string $type = &quot;&quot;"}],"returns":"mixed"},"mb_http_output":{"desc":"Set/Get HTTP output character encoding","params":[{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"mixed"},"mb_internal_encoding":{"desc":"Set/Get internal character encoding","params":[{"required":"no","param":"string $encoding = mb_internal_encoding("}],"returns":"mixed"},"mb_language":{"desc":"Set/Get current language","params":[{"required":"no","param":"string $language = &#039;&#039;"}],"returns":"mixed"},"microtime":{"desc":"Return current Unix timestamp with microseconds","params":[{"required":"no","param":"bool $get_as_float = &#039;&#039;"}],"returns":"mixed"},"mssql_execute":{"desc":"Executes a stored procedure on a MS SQL server database","params":[{"required":"yes","param":"resource $stmt"},{"required":"no","param":"bool $skip_results = false"}],"returns":"mixed"},"mssql_query":{"desc":"Send MS SQL query","params":[{"required":"yes","param":"string $query"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"},{"required":"no","param":"int $batch_size = &#039;&#039;"}],"returns":"mixed"},"mysqli_fetch_all":{"desc":"Fetches all result rows as an associative array, a numeric array, or both","params":[{"required":"no","param":"int $resulttype = MYSQLI_NUM"},{"required":"yes","param":"mysqli_result $result"}],"returns":"mixed"},"mysqli_fetch_array":{"desc":"Fetch a result row as an associative, a numeric array, or both","params":[{"required":"no","param":"int $resulttype = MYSQLI_BOTH"},{"required":"yes","param":"mysqli_result $result"}],"returns":"mixed"},"mysqli_fetch_row":{"desc":"Get a result row as an enumerated array","params":[{"required":"yes","param":"mysqli_result $result"}],"returns":"mixed"},"mysqli_insert_id":{"desc":"Returns the auto generated id used in the last query","params":[{"required":"yes","param":"mysqli $link"}],"returns":"mixed"},"mysqli_query":{"desc":"Performs a query on the database","params":[{"required":"yes","param":"string $query"},{"required":"no","param":"int $resultmode = &#039;&#039;"},{"required":"yes","param":"mysqli $link"}],"returns":"mixed"},"mysqli_stmt_insert_id":{"desc":"Get the ID generated from the previous INSERT operation","params":[{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"mixed"},"newt_checkbox_tree_get_current":{"desc":"Returns checkbox tree selected item","params":[{"required":"yes","param":"resource $checkboxtree"}],"returns":"mixed"},"newt_listitem_get_data":{"desc":"","params":[{"required":"yes","param":"resource $item"}],"returns":"mixed"},"next":{"desc":"Advance the internal array pointer of an array","params":[{"required":"yes","param":"array $array"}],"returns":"mixed"},"numfmt_parse":{"desc":"Parse a number","params":[{"required":"yes","param":"string $value"},{"required":"no","param":"int $type = &#039;&#039;"},{"required":"no","param":"int $position = &#039;&#039;"},{"required":"yes","param":"NumberFormatter $fmt"}],"returns":"mixed"},"oci_field_type":{"desc":"Returns field&#039;s data type","params":[{"required":"yes","param":"resource $statement"},{"required":"yes","param":"int $field"}],"returns":"mixed"},"oci_result":{"desc":"Returns field&#039;s value from the fetched row","params":[{"required":"yes","param":"resource $statement"},{"required":"yes","param":"mixed $field"}],"returns":"mixed"},"odbc_autocommit":{"desc":"Toggle autocommit behaviour","params":[{"required":"yes","param":"resource $connection_id"},{"required":"no","param":"bool $OnOff = false"}],"returns":"mixed"},"odbc_result":{"desc":"Get result data","params":[{"required":"yes","param":"resource $result_id"},{"required":"yes","param":"mixed $field"}],"returns":"mixed"},"openal_listener_get":{"desc":"Retrieve a listener property","params":[{"required":"yes","param":"int $property"}],"returns":"mixed"},"openal_source_get":{"desc":"Retrieve an OpenAL source property","params":[{"required":"yes","param":"resource $source"},{"required":"yes","param":"int $property"}],"returns":"mixed"},"openssl_csr_new":{"desc":"Generates a CSR","params":[{"required":"yes","param":"array $dn"},{"required":"yes","param":"resource $privkey"},{"required":"no","param":"array $configargs = &#039;&#039;"},{"required":"no","param":"array $extraattribs = &#039;&#039;"}],"returns":"mixed"},"openssl_pkcs7_verify":{"desc":"Verifies the signature of an S/MIME signed message","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"int $flags"},{"required":"no","param":"string $outfilename = &#039;&#039;"},{"required":"no","param":"array $cainfo = &#039;&#039;"},{"required":"no","param":"string $extracerts = &#039;&#039;"},{"required":"no","param":"string $content = &#039;&#039;"}],"returns":"mixed"},"parse_url":{"desc":"Parse a URL and return its components","params":[{"required":"yes","param":"string $url"},{"required":"no","param":"int $component = -1"}],"returns":"mixed"},"pathinfo":{"desc":"Returns information about a file path","params":[{"required":"yes","param":"string $path"},{"required":"no","param":"int $options = PATHINFO_DIRNAME | PATHINFO_BASENAME | PATHINFO_EXTENSION | PATHINFO_FILENAME"}],"returns":"mixed"},"pg_delete":{"desc":"Deletes records","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $table_name"},{"required":"yes","param":"array $assoc_array"},{"required":"no","param":"int $options = PGSQL_DML_EXEC"}],"returns":"mixed"},"pg_field_table":{"desc":"Returns the name or oid of the tables field","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_number"},{"required":"no","param":"bool $oid_only = false"}],"returns":"mixed"},"pg_insert":{"desc":"Insert array into table","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $table_name"},{"required":"yes","param":"array $assoc_array"},{"required":"no","param":"int $options = PGSQL_DML_EXEC"}],"returns":"mixed"},"pg_result_status":{"desc":"Get status of query result","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $type = &#039;&#039;"}],"returns":"mixed"},"pg_select":{"desc":"Select records","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $table_name"},{"required":"yes","param":"array $assoc_array"},{"required":"no","param":"int $options = PGSQL_DML_EXEC"}],"returns":"mixed"},"pg_update":{"desc":"Update table","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $table_name"},{"required":"yes","param":"array $data"},{"required":"yes","param":"array $condition"},{"required":"no","param":"int $options = PGSQL_DML_EXEC"}],"returns":"mixed"},"preg_filter":{"desc":"Perform a regular expression search and replace","params":[{"required":"yes","param":"mixed $pattern"},{"required":"yes","param":"mixed $replacement"},{"required":"yes","param":"mixed $subject"},{"required":"no","param":"int $limit = -1"},{"required":"no","param":"int $count = &#039;&#039;"}],"returns":"mixed"},"preg_replace":{"desc":"Perform a regular expression search and replace","params":[{"required":"yes","param":"mixed $pattern"},{"required":"yes","param":"mixed $replacement"},{"required":"yes","param":"mixed $subject"},{"required":"no","param":"int $limit = -1"},{"required":"no","param":"int $count = &#039;&#039;"}],"returns":"mixed"},"preg_replace_callback":{"desc":"Perform a regular expression search and replace using a callback","params":[{"required":"yes","param":"mixed $pattern"},{"required":"yes","param":"callback $callback"},{"required":"yes","param":"mixed $subject"},{"required":"no","param":"int $limit = -1"},{"required":"no","param":"int $count = &#039;&#039;"}],"returns":"mixed"},"prev":{"desc":"Rewind the internal array pointer","params":[{"required":"yes","param":"array $array"}],"returns":"mixed"},"printer_get_option":{"desc":"Retrieve printer configuration data","params":[{"required":"yes","param":"resource $printer_handle"},{"required":"yes","param":"string $option"}],"returns":"mixed"},"print_r":{"desc":"Prints human-readable information about a variable","params":[{"required":"yes","param":"mixed $expression"},{"required":"no","param":"bool $return = false"}],"returns":"mixed"},"radius_get_attr":{"desc":"Extracts an attribute","params":[{"required":"yes","param":"resource $radius_handle"}],"returns":"mixed"},"readline_info":{"desc":"Gets/sets various internal readline variables","params":[{"required":"no","param":"string $varname = &#039;&#039;"},{"required":"no","param":"string $newvalue = &#039;&#039;"}],"returns":"mixed"},"reset":{"desc":"Set the internal pointer of an array to its first element","params":[{"required":"yes","param":"array $array"}],"returns":"mixed"},"resourcebundle_get":{"desc":"Get data from the bundle","params":[{"required":"yes","param":"string|int $index"},{"required":"yes","param":"ResourceBundle $r"}],"returns":"mixed"},"rpm_get_tag":{"desc":"Retrieves a header tag from an RPM file","params":[{"required":"yes","param":"resource $rpmr"},{"required":"yes","param":"int $tagnum"}],"returns":"mixed"},"runkit_sandbox_output_handler":{"desc":"Specify a function to capture and/or process output from a runkit sandbox","params":[{"required":"yes","param":"object $sandbox"},{"required":"no","param":"mixed $callback = &#039;&#039;"}],"returns":"mixed"},"set_error_handler":{"desc":"Sets a user-defined error handler function","params":[{"required":"yes","param":"callback $error_handler"},{"required":"no","param":"int $error_types = E_ALL | E_STRICT"}],"returns":"mixed"},"shm_get_var":{"desc":"Returns a variable from shared memory","params":[{"required":"yes","param":"resource $shm_identifier"},{"required":"yes","param":"int $variable_key"}],"returns":"mixed"},"socket_get_option":{"desc":"Gets socket options for the socket","params":[{"required":"yes","param":"resource $socket"},{"required":"yes","param":"int $level"},{"required":"yes","param":"int $optname"}],"returns":"mixed"},"sqlite_column":{"desc":"Fetches a column from the current row of a result set","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"mixed $index_or_name"},{"required":"no","param":"bool $decode_binary = true"}],"returns":"mixed"},"sscanf":{"desc":"Parses input from a string according to a format","params":[{"required":"yes","param":"string $str"},{"required":"yes","param":"string $format"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"mixed"},"ssh2_auth_none":{"desc":"Authenticate as &quot;none&quot;","params":[{"required":"yes","param":"resource $session"},{"required":"yes","param":"string $username"}],"returns":"mixed"},"stream_socket_enable_crypto":{"desc":"Turns encryption on/off on an already connected socket","params":[{"required":"yes","param":"resource $stream"},{"required":"yes","param":"bool $enable"},{"required":"no","param":"int $crypto_type = &#039;&#039;"},{"required":"no","param":"resource $session_stream = &#039;&#039;"}],"returns":"mixed"},"str_ireplace":{"desc":"Case-insensitive version of str_replace.","params":[{"required":"yes","param":"mixed $search"},{"required":"yes","param":"mixed $replace"},{"required":"yes","param":"mixed $subject"},{"required":"no","param":"int $count = &#039;&#039;"}],"returns":"mixed"},"str_replace":{"desc":"Replace all occurrences of the search string with the replacement string","params":[{"required":"yes","param":"mixed $search"},{"required":"yes","param":"mixed $replace"},{"required":"yes","param":"mixed $subject"},{"required":"no","param":"int $count = &#039;&#039;"}],"returns":"mixed"},"str_word_count":{"desc":"Return information about words used in a string","params":[{"required":"yes","param":"string $string"},{"required":"no","param":"int $format = &#039;&#039;"},{"required":"no","param":"string $charlist = &#039;&#039;"}],"returns":"mixed"},"substr_replace":{"desc":"Replace text within a portion of a string","params":[{"required":"yes","param":"mixed $string"},{"required":"yes","param":"mixed $replacement"},{"required":"yes","param":"mixed $start"},{"required":"no","param":"mixed $length = &#039;&#039;"}],"returns":"mixed"},"sybase_query":{"desc":"Sends a Sybase query","params":[{"required":"yes","param":"string $query"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"mixed"},"tidy_getopt":{"desc":"Returns the value of the specified configuration option for the tidy document","params":[{"required":"yes","param":"string $option"},{"required":"yes","param":"tidy $object"}],"returns":"mixed"},"time_nanosleep":{"desc":"Delay for a number of seconds and nanoseconds","params":[{"required":"yes","param":"int $seconds"},{"required":"yes","param":"int $nanoseconds"}],"returns":"mixed"},"unserialize":{"desc":"Creates a PHP value from a stored representation","params":[{"required":"yes","param":"string $str"}],"returns":"mixed"},"variant_abs":{"desc":"Returns the absolute value of a variant","params":[{"required":"yes","param":"mixed $val"}],"returns":"mixed"},"variant_add":{"desc":"&quot;Adds&quot; two variant values together and returns the result","params":[{"required":"yes","param":"mixed $left"},{"required":"yes","param":"mixed $right"}],"returns":"mixed"},"variant_and":{"desc":"Performs a bitwise AND operation between two variants","params":[{"required":"yes","param":"mixed $left"},{"required":"yes","param":"mixed $right"}],"returns":"mixed"},"variant_cat":{"desc":"concatenates two variant values together and returns the result","params":[{"required":"yes","param":"mixed $left"},{"required":"yes","param":"mixed $right"}],"returns":"mixed"},"variant_div":{"desc":"Returns the result from dividing two variants","params":[{"required":"yes","param":"mixed $left"},{"required":"yes","param":"mixed $right"}],"returns":"mixed"},"variant_eqv":{"desc":"Performs a bitwise equivalence on two variants","params":[{"required":"yes","param":"mixed $left"},{"required":"yes","param":"mixed $right"}],"returns":"mixed"},"variant_fix":{"desc":"Returns the integer portion of a variant","params":[{"required":"yes","param":"mixed $variant"}],"returns":"mixed"},"variant_idiv":{"desc":"Converts variants to integers and then returns the result from dividing them","params":[{"required":"yes","param":"mixed $left"},{"required":"yes","param":"mixed $right"}],"returns":"mixed"},"variant_imp":{"desc":"Performs a bitwise implication on two variants","params":[{"required":"yes","param":"mixed $left"},{"required":"yes","param":"mixed $right"}],"returns":"mixed"},"variant_int":{"desc":"Returns the integer portion of a variant","params":[{"required":"yes","param":"mixed $variant"}],"returns":"mixed"},"variant_mod":{"desc":"Divides two variants and returns only the remainder","params":[{"required":"yes","param":"mixed $left"},{"required":"yes","param":"mixed $right"}],"returns":"mixed"},"variant_mul":{"desc":"Multiplies the values of the two variants","params":[{"required":"yes","param":"mixed $left"},{"required":"yes","param":"mixed $right"}],"returns":"mixed"},"variant_neg":{"desc":"Performs logical negation on a variant","params":[{"required":"yes","param":"mixed $variant"}],"returns":"mixed"},"variant_not":{"desc":"Performs bitwise not negation on a variant","params":[{"required":"yes","param":"mixed $variant"}],"returns":"mixed"},"variant_or":{"desc":"Performs a logical disjunction on two variants","params":[{"required":"yes","param":"mixed $left"},{"required":"yes","param":"mixed $right"}],"returns":"mixed"},"variant_pow":{"desc":"Returns the result of performing the power function with two variants","params":[{"required":"yes","param":"mixed $left"},{"required":"yes","param":"mixed $right"}],"returns":"mixed"},"variant_round":{"desc":"Rounds a variant to the specified number of decimal places","params":[{"required":"yes","param":"mixed $variant"},{"required":"yes","param":"int $decimals"}],"returns":"mixed"},"variant_sub":{"desc":"Subtracts the value of the right variant from the left variant value","params":[{"required":"yes","param":"mixed $left"},{"required":"yes","param":"mixed $right"}],"returns":"mixed"},"variant_xor":{"desc":"Performs a logical exclusion on two variants","params":[{"required":"yes","param":"mixed $left"},{"required":"yes","param":"mixed $right"}],"returns":"mixed"},"var_export":{"desc":"Outputs or returns a parsable string representation of a variable","params":[{"required":"yes","param":"mixed $expression"},{"required":"no","param":"bool $return = false"}],"returns":"mixed"},"version_compare":{"desc":"Compares two &quot;PHP-standardized&quot; version number strings","params":[{"required":"yes","param":"string $version1"},{"required":"yes","param":"string $version2"},{"required":"no","param":"string $operator = &#039;&#039;"}],"returns":"mixed"},"w32api_invoke_function":{"desc":"Invokes function funcname with the arguments passed after the function name","params":[{"required":"yes","param":"string $funcname"},{"required":"yes","param":"mixed $argument"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"mixed"},"wddx_deserialize":{"desc":"Unserializes a WDDX packet","params":[{"required":"yes","param":"string $packet"}],"returns":"mixed"},"win32_create_service":{"desc":"Creates a new service entry in the SCM database","params":[{"required":"yes","param":"array $details"},{"required":"no","param":"string $machine = &#039;&#039;"}],"returns":"mixed"},"win32_delete_service":{"desc":"Deletes a service entry from the SCM database","params":[{"required":"yes","param":"string $servicename"},{"required":"no","param":"string $machine = &#039;&#039;"}],"returns":"mixed"},"win32_query_service_status":{"desc":"Queries the status of a service","params":[{"required":"yes","param":"string $servicename"},{"required":"no","param":"string $machine = &#039;&#039;"}],"returns":"mixed"},"win32_start_service_ctrl_dispatcher":{"desc":"Registers the script with the SCM, so that it can act as the service with the given name","params":[{"required":"yes","param":"string $name"}],"returns":"mixed"},"wincache_ucache_dec":{"desc":"Decrements the value associated with the key","params":[{"required":"yes","param":"string $key"},{"required":"no","param":"int $dec_by = 1"},{"required":"no","param":"bool $success = &#039;&#039;"}],"returns":"mixed"},"wincache_ucache_get":{"desc":"Gets a variable stored in the user cache","params":[{"required":"yes","param":"mixed $key"},{"required":"no","param":"bool $success = &#039;&#039;"}],"returns":"mixed"},"wincache_ucache_inc":{"desc":"Increments the value associated with the key","params":[{"required":"yes","param":"string $key"},{"required":"no","param":"int $inc_by = 1"},{"required":"no","param":"bool $success = &#039;&#039;"}],"returns":"mixed"},"xdiff_file_merge3":{"desc":"Merge 3 files into one","params":[{"required":"yes","param":"string $old_file"},{"required":"yes","param":"string $new_file1"},{"required":"yes","param":"string $new_file2"},{"required":"yes","param":"string $dest"}],"returns":"mixed"},"xdiff_file_patch":{"desc":"Patch a file with an unified diff","params":[{"required":"yes","param":"string $file"},{"required":"yes","param":"string $patch"},{"required":"yes","param":"string $dest"},{"required":"no","param":"int $flags = DIFF_PATCH_NORMAL"}],"returns":"mixed"},"xdiff_string_merge3":{"desc":"Merge 3 strings into one","params":[{"required":"yes","param":"string $old_data"},{"required":"yes","param":"string $new_data1"},{"required":"yes","param":"string $new_data2"},{"required":"no","param":"string $error = &#039;&#039;"}],"returns":"mixed"},"xmlrpc_decode":{"desc":"Decodes XML into native PHP types","params":[{"required":"yes","param":"string $xml"},{"required":"no","param":"string $encoding = &quot;iso-8859-1&quot;"}],"returns":"mixed"},"xmlrpc_decode_request":{"desc":"Decodes XML into native PHP types","params":[{"required":"yes","param":"string $xml"},{"required":"yes","param":"string $method"},{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"mixed"},"xml_parser_get_option":{"desc":"Get options from an XML parser","params":[{"required":"yes","param":"resource $parser"},{"required":"yes","param":"int $option"}],"returns":"mixed"},"xslt_process":{"desc":"Perform an XSLT transformation","params":[{"required":"yes","param":"resource $xh"},{"required":"yes","param":"string $xmlcontainer"},{"required":"yes","param":"string $xslcontainer"},{"required":"no","param":"string $resultcontainer = &#039;&#039;"},{"required":"no","param":"array $arguments = &#039;&#039;"},{"required":"no","param":"array $parameters = &#039;&#039;"}],"returns":"mixed"},"xslt_setopt":{"desc":"Set options on a given xsl processor","params":[{"required":"yes","param":"resource $processor"},{"required":"yes","param":"int $newmask"}],"returns":"mixed"},"yaml_parse":{"desc":"Parse a YAML stream","params":[{"required":"yes","param":"string $input"},{"required":"no","param":"int $pos = &#039;&#039;"},{"required":"no","param":"int $ndocs = &#039;&#039;"},{"required":"no","param":"array $callbacks = &#039;&#039;"}],"returns":"mixed"},"yaml_parse_file":{"desc":"Parse a YAML stream from a file","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"int $pos = &#039;&#039;"},{"required":"no","param":"int $ndocs = &#039;&#039;"},{"required":"no","param":"array $callbacks = &#039;&#039;"}],"returns":"mixed"},"yaml_parse_url":{"desc":"Parse a Yaml stream from a URL","params":[{"required":"yes","param":"string $url"},{"required":"no","param":"int $pos = &#039;&#039;"},{"required":"no","param":"int $ndocs = &#039;&#039;"},{"required":"no","param":"array $callbacks = &#039;&#039;"}],"returns":"mixed"},"yaz_connect":{"desc":"Prepares for a connection to a Z39.50 server","params":[{"required":"yes","param":"string $zurl"},{"required":"no","param":"mixed $options = &#039;&#039;"}],"returns":"mixed"},"yaz_wait":{"desc":"Wait for Z39.50 requests to complete","params":[{"required":"no","param":"array $options = &#039;&#039;"}],"returns":"mixed"},"zip_open":{"desc":"Open a ZIP file archive","params":[{"required":"yes","param":"string $filename"}],"returns":"mixed"},"zip_read":{"desc":"Read next entry in a ZIP file archive","params":[{"required":"yes","param":"resource $zip"}],"returns":"mixed"},"apache_lookup_uri":{"desc":"Perform a partial request for the specified URI and return all info about it","params":[{"required":"yes","param":"string $filename"}],"returns":"object"},"cairo_matrix_create_scale":{"desc":"Creates a new scaling matrix","params":[{"required":"yes","param":"float $sx"},{"required":"yes","param":"float $sy"}],"returns":"object"},"cairo_matrix_init":{"desc":"Creates a new CairoMatrix object","params":[{"required":"no","param":"float $xx = 1.0"},{"required":"no","param":"float $yx = 0.0"},{"required":"no","param":"float $xy = 0.0"},{"required":"no","param":"float $yy = 1.0"},{"required":"no","param":"float $x0 = 0.0"},{"required":"no","param":"float $y0 = 0.0"}],"returns":"object"},"cairo_matrix_init_identity":{"desc":"Creates a new identity matrix","params":[],"returns":"object"},"cairo_matrix_init_rotate":{"desc":"Creates a new rotated matrix","params":[{"required":"yes","param":"float $radians"}],"returns":"object"},"cairo_matrix_init_scale":{"desc":"Creates a new scaling matrix","params":[{"required":"yes","param":"float $sx"},{"required":"yes","param":"float $sy"}],"returns":"object"},"cairo_matrix_init_translate":{"desc":"Creates a new translation matrix","params":[{"required":"yes","param":"float $tx"},{"required":"yes","param":"float $ty"}],"returns":"object"},"cubrid_fetch_field":{"desc":"Get column information from a result and return as an object","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $field_offset = &#039;&#039;"}],"returns":"object"},"cubrid_fetch_object":{"desc":"Fetche the next row and returns it as an object","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"string $class_name = &#039;&#039;"},{"required":"no","param":"array $params = &#039;&#039;"}],"returns":"object"},"db2_client_info":{"desc":"Returns an object with properties that describe the DB2 database client","params":[{"required":"yes","param":"resource $connection"}],"returns":"object"},"db2_fetch_object":{"desc":"Returns an object with properties representing columns in the fetched row","params":[{"required":"yes","param":"resource $stmt"},{"required":"no","param":"int $row_number = -1"}],"returns":"object"},"db2_server_info":{"desc":"Returns an object with properties that describe the DB2 database server","params":[{"required":"yes","param":"resource $connection"}],"returns":"object"},"dbx_connect":{"desc":"Open a connection/database","params":[{"required":"yes","param":"mixed $module"},{"required":"yes","param":"string $host"},{"required":"yes","param":"string $database"},{"required":"yes","param":"string $username"},{"required":"yes","param":"string $password"},{"required":"no","param":"int $persistent = &#039;&#039;"}],"returns":"object"},"fbsql_fetch_field":{"desc":"Get column information from a result and return as an object","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $field_offset = &#039;&#039;"}],"returns":"object"},"fbsql_fetch_object":{"desc":"Fetch a result row as an object","params":[{"required":"yes","param":"resource $result"}],"returns":"object"},"http_parse_cookie":{"desc":"Parse HTTP cookie","params":[{"required":"yes","param":"string $cookie"},{"required":"no","param":"int $flags = &#039;&#039;"},{"required":"no","param":"array $allowed_extras = &#039;&#039;"}],"returns":"object"},"http_parse_message":{"desc":"Parse HTTP messages","params":[{"required":"yes","param":"string $message"}],"returns":"object"},"http_parse_params":{"desc":"Parse parameter list","params":[{"required":"yes","param":"string $param"},{"required":"no","param":"int $flags = HTTP_PARAMS_DEFAULT"}],"returns":"object"},"http_persistent_handles_count":{"desc":"Stat persistent handles","params":[],"returns":"object"},"ibase_fetch_object":{"desc":"Get an object from a InterBase database","params":[{"required":"yes","param":"resource $result_id"},{"required":"no","param":"int $fetch_flag = &#039;&#039;"}],"returns":"object"},"imap_bodystruct":{"desc":"Read the structure of a specified body section of a specific message","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"int $msg_number"},{"required":"yes","param":"string $section"}],"returns":"object"},"imap_check":{"desc":"Check current mailbox","params":[{"required":"yes","param":"resource $imap_stream"}],"returns":"object"},"imap_fetchstructure":{"desc":"Read the structure of a particular message","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"int $msg_number"},{"required":"no","param":"int $options = &#039;&#039;"}],"returns":"object"},"imap_headerinfo":{"desc":"Read the header of the message","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"int $msg_number"},{"required":"no","param":"int $fromlength = &#039;&#039;"},{"required":"no","param":"int $subjectlength = &#039;&#039;"},{"required":"no","param":"string $defaulthost = &#039;&#039;"}],"returns":"object"},"imap_mailboxmsginfo":{"desc":"Get information about the current mailbox","params":[{"required":"yes","param":"resource $imap_stream"}],"returns":"object"},"imap_rfc822_parse_headers":{"desc":"Parse mail headers from a string","params":[{"required":"yes","param":"string $headers"},{"required":"no","param":"string $defaulthost = &quot;UNKNOWN&quot;"}],"returns":"object"},"imap_status":{"desc":"Returns status information on a mailbox","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"string $mailbox"},{"required":"yes","param":"int $options"}],"returns":"object"},"ingres_fetch_object":{"desc":"Fetch a row of result into an object","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $result_type = &#039;&#039;"}],"returns":"object"},"java_last_exception_get":{"desc":"Get last Java exception","params":[],"returns":"object"},"maxdb_fetch_object":{"desc":"Returns the current row of a result set as an object","params":[{"required":"yes","param":"object $result"}],"returns":"object"},"maxdb_stmt_init":{"desc":"Initializes a statement and returns an resource for use with maxdb_stmt_prepare","params":[{"required":"yes","param":"resource $link"}],"returns":"object"},"maxdb_stmt_store_result":{"desc":"Transfers a result set from a prepared statement","params":[{"required":"yes","param":"resource $stmt"}],"returns":"object"},"maxdb_store_result":{"desc":"Transfers a result set from the last query","params":[{"required":"yes","param":"resource $link"}],"returns":"object"},"msql_fetch_field":{"desc":"Get field information","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $field_offset = &#039;&#039;"}],"returns":"object"},"msql_fetch_object":{"desc":"Fetch row as object","params":[{"required":"yes","param":"resource $result"}],"returns":"object"},"mssql_fetch_field":{"desc":"Get field information","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $field_offset = -1"}],"returns":"object"},"mssql_fetch_object":{"desc":"Fetch row as object","params":[{"required":"yes","param":"resource $result"}],"returns":"object"},"mysqli_fetch_field":{"desc":"Returns the next field in the result set","params":[{"required":"yes","param":"mysqli_result $result"}],"returns":"object"},"mysqli_fetch_field_direct":{"desc":"Fetch meta-data for a single field","params":[{"required":"yes","param":"int $fieldnr"},{"required":"yes","param":"mysqli_result $result"}],"returns":"object"},"mysqli_fetch_object":{"desc":"Returns the current row of a result set as an object","params":[{"required":"no","param":"string $class_name = &#039;&#039;"},{"required":"no","param":"array $params = &#039;&#039;"},{"required":"yes","param":"mysqli_result $result"}],"returns":"object"},"mysqli_get_charset":{"desc":"Returns a character set object","params":[{"required":"yes","param":"mysqli $link"}],"returns":"object"},"mysqli_stmt_get_warnings":{"desc":"Get result of SHOW WARNINGS","params":[{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"object"},"mysql_fetch_field":{"desc":"Get column information from a result and return as an object","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $field_offset = &#039;&#039;"}],"returns":"object"},"mysql_fetch_object":{"desc":"Fetch a result row as an object","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"string $class_name = &#039;&#039;"},{"required":"no","param":"array $params = &#039;&#039;"}],"returns":"object"},"notes_header_info":{"desc":"Open the message msg_number in the specified mailbox on the specified server (leave serv","params":[{"required":"yes","param":"string $server"},{"required":"yes","param":"string $mailbox"},{"required":"yes","param":"int $msg_number"}],"returns":"object"},"oci_fetch_object":{"desc":"Returns the next row from a query as an object","params":[{"required":"yes","param":"resource $statement"}],"returns":"object"},"odbc_fetch_object":{"desc":"Fetch a result row as an object","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $rownumber = &#039;&#039;"}],"returns":"object"},"pg_fetch_object":{"desc":"Fetch a row as an object","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $row = &#039;&#039;"},{"required":"no","param":"int $result_type = PGSQL_ASSOC"},{"required":"no","param":"string $class_name = &#039;&#039;"},{"required":"no","param":"array $params = &#039;&#039;"}],"returns":"object"},"simplexml_load_file":{"desc":"Interprets an XML file into an object","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"string $class_name = &quot;SimpleXMLElement&quot;"},{"required":"no","param":"int $options = &#039;&#039;"},{"required":"no","param":"string $ns = &#039;&#039;"},{"required":"no","param":"bool $is_prefix = false"}],"returns":"object"},"simplexml_load_string":{"desc":"Interprets a string of XML into an object","params":[{"required":"yes","param":"string $data"},{"required":"no","param":"string $class_name = &quot;SimpleXMLElement&quot;"},{"required":"no","param":"int $options = &#039;&#039;"},{"required":"no","param":"string $ns = &#039;&#039;"},{"required":"no","param":"bool $is_prefix = false"}],"returns":"object"},"sqlite_fetch_object":{"desc":"Fetches the next row from a result set as an object","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"string $class_name = &#039;&#039;"},{"required":"no","param":"array $ctor_params = &#039;&#039;"},{"required":"no","param":"bool $decode_binary = true"}],"returns":"object"},"stream_bucket_make_writeable":{"desc":"Return a bucket object from the brigade for operating on","params":[{"required":"yes","param":"resource $brigade"}],"returns":"object"},"stream_bucket_new":{"desc":"Create a new bucket for use on the current stream","params":[{"required":"yes","param":"resource $stream"},{"required":"yes","param":"string $buffer"}],"returns":"object"},"sybase_fetch_field":{"desc":"Get field information from a result","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $field_offset = -1"}],"returns":"object"},"sybase_fetch_object":{"desc":"Fetch a row as an object","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"mixed $object = &#039;&#039;"}],"returns":"object"},"bbcode_create":{"desc":"Create a BBCode Resource","params":[{"required":"no","param":"array $bbcode_initial_tags = &#039;&#039;"}],"returns":"resource"},"bzopen":{"desc":"Opens a bzip2 compressed file","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"string $mode"}],"returns":"resource"},"crack_opendict":{"desc":"Opens a new CrackLib dictionary","params":[{"required":"yes","param":"string $dictionary"}],"returns":"resource"},"cubrid_connect":{"desc":"Open a connection to a CUBRID Server","params":[{"required":"yes","param":"string $host"},{"required":"yes","param":"int $port"},{"required":"yes","param":"string $dbname"},{"required":"no","param":"string $userid = &#039;&#039;"},{"required":"no","param":"string $passwd = &#039;&#039;"}],"returns":"resource"},"cubrid_connect_with_url":{"desc":"Establish the environment for connecting to CUBRID server","params":[{"required":"yes","param":"string $conn_url"},{"required":"no","param":"string $userid = &#039;&#039;"},{"required":"no","param":"string $passwd = &#039;&#039;"}],"returns":"resource"},"cubrid_prepare":{"desc":"Prepare an SQL statement for execution","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $prepare_stmt"},{"required":"no","param":"int $option = &#039;&#039;"}],"returns":"resource"},"cubrid_query":{"desc":"Send a CUBRID query","params":[{"required":"yes","param":"string $query"},{"required":"no","param":"resource $conn_identifier = &#039;&#039;"}],"returns":"resource"},"cubrid_unbuffered_query":{"desc":"Perform a query without fetching the results into memory","params":[{"required":"yes","param":"string $query"},{"required":"no","param":"resource $conn_identifier = &#039;&#039;"}],"returns":"resource"},"curl_copy_handle":{"desc":"Copy a cURL handle along with all of its preferences","params":[{"required":"yes","param":"resource $ch"}],"returns":"resource"},"curl_init":{"desc":"Initialize a cURL session","params":[{"required":"no","param":"string $url = &#039;&#039;"}],"returns":"resource"},"curl_multi_init":{"desc":"Returns a new cURL multi handle","params":[],"returns":"resource"},"cyrus_connect":{"desc":"Connect to a Cyrus IMAP server","params":[{"required":"no","param":"string $host = &#039;&#039;"},{"required":"no","param":"string $port = &#039;&#039;"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"resource"},"db2_columns":{"desc":"Returns a result set listing the columns and associated metadata for a table","params":[{"required":"yes","param":"resource $connection"},{"required":"no","param":"string $qualifier = &#039;&#039;"},{"required":"no","param":"string $schema = &#039;&#039;"},{"required":"no","param":"string $table-name = &#039;&#039;"},{"required":"no","param":"string $column-name = &#039;&#039;"}],"returns":"resource"},"db2_column_privileges":{"desc":"Returns a result set listing the columns and associated privileges for a table","params":[{"required":"yes","param":"resource $connection"},{"required":"no","param":"string $qualifier = &#039;&#039;"},{"required":"no","param":"string $schema = &#039;&#039;"},{"required":"no","param":"string $table-name = &#039;&#039;"},{"required":"no","param":"string $column-name = &#039;&#039;"}],"returns":"resource"},"db2_connect":{"desc":"Returns a connection to a database","params":[{"required":"yes","param":"string $database"},{"required":"yes","param":"string $username"},{"required":"yes","param":"string $password"},{"required":"no","param":"array $options = &#039;&#039;"}],"returns":"resource"},"db2_exec":{"desc":"Executes an SQL statement directly","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $statement"},{"required":"no","param":"array $options = &#039;&#039;"}],"returns":"resource"},"db2_foreign_keys":{"desc":"Returns a result set listing the foreign keys for a table","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $qualifier"},{"required":"yes","param":"string $schema"},{"required":"yes","param":"string $table-name"}],"returns":"resource"},"db2_next_result":{"desc":"Requests the next result set from a stored procedure","params":[{"required":"yes","param":"resource $stmt"}],"returns":"resource"},"db2_pconnect":{"desc":"Returns a persistent connection to a database","params":[{"required":"yes","param":"string $database"},{"required":"yes","param":"string $username"},{"required":"yes","param":"string $password"},{"required":"no","param":"array $options = &#039;&#039;"}],"returns":"resource"},"db2_prepare":{"desc":"Prepares an SQL statement to be executed","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $statement"},{"required":"no","param":"array $options = &#039;&#039;"}],"returns":"resource"},"db2_primary_keys":{"desc":"Returns a result set listing primary keys for a table","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $qualifier"},{"required":"yes","param":"string $schema"},{"required":"yes","param":"string $table-name"}],"returns":"resource"},"db2_procedures":{"desc":"Returns a result set listing the stored procedures registered in a database","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $qualifier"},{"required":"yes","param":"string $schema"},{"required":"yes","param":"string $procedure"}],"returns":"resource"},"db2_procedure_columns":{"desc":"Returns a result set listing stored procedure parameters","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $qualifier"},{"required":"yes","param":"string $schema"},{"required":"yes","param":"string $procedure"},{"required":"yes","param":"string $parameter"}],"returns":"resource"},"db2_special_columns":{"desc":"Returns a result set listing the unique row identifier columns for a table","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $qualifier"},{"required":"yes","param":"string $schema"},{"required":"yes","param":"string $table_name"},{"required":"yes","param":"int $scope"}],"returns":"resource"},"db2_statistics":{"desc":"Returns a result set listing the index and statistics for a table","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $qualifier"},{"required":"yes","param":"string $schema"},{"required":"yes","param":"string $table-name"},{"required":"yes","param":"bool $unique"}],"returns":"resource"},"db2_tables":{"desc":"Returns a result set listing the tables and associated metadata in a database","params":[{"required":"yes","param":"resource $connection"},{"required":"no","param":"string $qualifier = &#039;&#039;"},{"required":"no","param":"string $schema = &#039;&#039;"},{"required":"no","param":"string $table-name = &#039;&#039;"},{"required":"no","param":"string $table-type = &#039;&#039;"}],"returns":"resource"},"db2_table_privileges":{"desc":"Returns a result set listing the tables and associated privileges in a database","params":[{"required":"yes","param":"resource $connection"},{"required":"no","param":"string $qualifier = &#039;&#039;"},{"required":"no","param":"string $schema = &#039;&#039;"},{"required":"no","param":"string $table_name = &#039;&#039;"}],"returns":"resource"},"dba_open":{"desc":"Open database","params":[{"required":"yes","param":"string $path"},{"required":"yes","param":"string $mode"},{"required":"no","param":"string $handler = &#039;&#039;"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"resource"},"dba_popen":{"desc":"Open database persistently","params":[{"required":"yes","param":"string $path"},{"required":"yes","param":"string $mode"},{"required":"no","param":"string $handler = &#039;&#039;"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"resource"},"dbplus_aql":{"desc":"Perform AQL query","params":[{"required":"yes","param":"string $query"},{"required":"no","param":"string $server = &#039;&#039;"},{"required":"no","param":"string $dbpath = &#039;&#039;"}],"returns":"resource"},"dbplus_open":{"desc":"Open relation file","params":[{"required":"yes","param":"string $name"}],"returns":"resource"},"dbplus_rcreate":{"desc":"Creates a new DB++ relation","params":[{"required":"yes","param":"string $name"},{"required":"yes","param":"mixed $domlist"},{"required":"no","param":"bool $overwrite = &#039;&#039;"}],"returns":"resource"},"dbplus_ropen":{"desc":"Open relation file local","params":[{"required":"yes","param":"string $name"}],"returns":"resource"},"dbplus_rquery":{"desc":"Perform local (raw) AQL query","params":[{"required":"yes","param":"string $query"},{"required":"no","param":"string $dbpath = &#039;&#039;"}],"returns":"resource"},"dbplus_sql":{"desc":"Perform SQL query","params":[{"required":"yes","param":"string $query"},{"required":"no","param":"string $server = &#039;&#039;"},{"required":"no","param":"string $dbpath = &#039;&#039;"}],"returns":"resource"},"dio_open":{"desc":"Opens a file (creating it if necessary) at a lower level than the C library input/ouput stream functions allow.","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"int $flags"},{"required":"no","param":"int $mode = &#039;&#039;"}],"returns":"resource"},"enchant_broker_init":{"desc":"create a new broker object capable of requesting","params":[],"returns":"resource"},"enchant_broker_request_dict":{"desc":"create a new dictionary using a tag","params":[{"required":"yes","param":"resource $broker"},{"required":"yes","param":"string $tag"}],"returns":"resource"},"enchant_broker_request_pwl_dict":{"desc":"creates a dictionary using a PWL file","params":[{"required":"yes","param":"resource $broker"},{"required":"yes","param":"string $filename"}],"returns":"resource"},"event_base_new":{"desc":"Create and initialize new event base","params":[],"returns":"resource"},"event_buffer_new":{"desc":"Create new buffered event","params":[{"required":"yes","param":"resource $stream"},{"required":"yes","param":"mixed $readcb"},{"required":"yes","param":"mixed $writecb"},{"required":"yes","param":"mixed $errorcb"},{"required":"no","param":"mixed $arg = &#039;&#039;"}],"returns":"resource"},"event_new":{"desc":"Create new event","params":[],"returns":"resource"},"expect_popen":{"desc":"Execute command via Bourne shell, and open the PTY stream to the process","params":[{"required":"yes","param":"string $command"}],"returns":"resource"},"fam_monitor_collection":{"desc":"Monitor a collection of files in a directory for changes","params":[{"required":"yes","param":"resource $fam"},{"required":"yes","param":"string $dirname"},{"required":"yes","param":"int $depth"},{"required":"yes","param":"string $mask"}],"returns":"resource"},"fam_monitor_directory":{"desc":"Monitor a directory for changes","params":[{"required":"yes","param":"resource $fam"},{"required":"yes","param":"string $dirname"}],"returns":"resource"},"fam_monitor_file":{"desc":"Monitor a regular file for changes","params":[{"required":"yes","param":"resource $fam"},{"required":"yes","param":"string $filename"}],"returns":"resource"},"fam_open":{"desc":"Open connection to FAM daemon","params":[{"required":"no","param":"string $appname = &#039;&#039;"}],"returns":"resource"},"fbsql_connect":{"desc":"Open a connection to a FrontBase Server","params":[{"required":"no","param":"string $hostname = ini_get(&quot;fbsql.default_host&quot;)"},{"required":"no","param":"string $username = ini_get(&quot;fbsql.default_user&quot;)"},{"required":"no","param":"string $password = ini_get(&quot;fbsql.default_password&quot;"}],"returns":"resource"},"fbsql_db_query":{"desc":"Send a FrontBase query","params":[{"required":"yes","param":"string $database"},{"required":"yes","param":"string $query"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"resource"},"fbsql_list_dbs":{"desc":"List databases available on a FrontBase server","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"resource"},"fbsql_list_fields":{"desc":"List FrontBase result fields","params":[{"required":"yes","param":"string $database_name"},{"required":"yes","param":"string $table_name"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"resource"},"fbsql_list_tables":{"desc":"List tables in a FrontBase database","params":[{"required":"yes","param":"string $database"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"resource"},"fbsql_pconnect":{"desc":"Open a persistent connection to a FrontBase Server","params":[{"required":"no","param":"string $hostname = ini_get(&quot;fbsql.default_host&quot;)"},{"required":"no","param":"string $username = ini_get(&quot;fbsql.default_user&quot;)"},{"required":"no","param":"string $password = ini_get(&quot;fbsql.default_password&quot;"}],"returns":"resource"},"fbsql_query":{"desc":"Send a FrontBase query","params":[{"required":"yes","param":"string $query"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"},{"required":"no","param":"int $batch_size = &#039;&#039;"}],"returns":"resource"},"fdf_create":{"desc":"Create a new FDF document","params":[],"returns":"resource"},"fdf_open":{"desc":"Open a FDF document","params":[{"required":"yes","param":"string $filename"}],"returns":"resource"},"fdf_open_string":{"desc":"Read a FDF document from a string","params":[{"required":"yes","param":"string $fdf_data"}],"returns":"resource"},"finfo_open":{"desc":"Create a new fileinfo resource","params":[{"required":"no","param":"int $options = FILEINFO_NONE"},{"required":"no","param":"string $magic_file = &#039;&#039;"}],"returns":"resource"},"fopen":{"desc":"Opens file or URL","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"string $mode"},{"required":"no","param":"bool $use_include_path = false"},{"required":"no","param":"resource $context = &#039;&#039;"}],"returns":"resource"},"fsockopen":{"desc":"Open Internet or Unix domain socket connection","params":[{"required":"yes","param":"string $hostname"},{"required":"no","param":"int $port = -1"},{"required":"no","param":"int $errno = &#039;&#039;"},{"required":"no","param":"string $errstr = &#039;&#039;"},{"required":"no","param":"float $timeout = ini_get(&quot;default_socket_timeout&quot;"}],"returns":"resource"},"ftp_close":{"desc":"Closes an FTP connection","params":[{"required":"yes","param":"resource $ftp_stream"}],"returns":"resource"},"ftp_connect":{"desc":"Opens an FTP connection","params":[{"required":"yes","param":"string $host"},{"required":"no","param":"int $port = 21"},{"required":"no","param":"int $timeout = 90"}],"returns":"resource"},"ftp_ssl_connect":{"desc":"Opens an Secure SSL-FTP connection","params":[{"required":"yes","param":"string $host"},{"required":"no","param":"int $port = 21"},{"required":"no","param":"int $timeout = 90"}],"returns":"resource"},"gmp_abs":{"desc":"Absolute value","params":[{"required":"yes","param":"resource $a"}],"returns":"resource"},"gmp_add":{"desc":"Add numbers","params":[{"required":"yes","param":"resource $a"},{"required":"yes","param":"resource $b"}],"returns":"resource"},"gmp_and":{"desc":"Bitwise AND","params":[{"required":"yes","param":"resource $a"},{"required":"yes","param":"resource $b"}],"returns":"resource"},"gmp_com":{"desc":"Calculates one&#039;s complement","params":[{"required":"yes","param":"resource $a"}],"returns":"resource"},"gmp_divexact":{"desc":"Exact division of numbers","params":[{"required":"yes","param":"resource $n"},{"required":"yes","param":"resource $d"}],"returns":"resource"},"gmp_div_q":{"desc":"Divide numbers","params":[{"required":"yes","param":"resource $a"},{"required":"yes","param":"resource $b"},{"required":"no","param":"int $round = GMP_ROUND_ZERO"}],"returns":"resource"},"gmp_div_r":{"desc":"Remainder of the division of numbers","params":[{"required":"yes","param":"resource $n"},{"required":"yes","param":"resource $d"},{"required":"no","param":"int $round = GMP_ROUND_ZERO"}],"returns":"resource"},"gmp_fact":{"desc":"Factorial","params":[{"required":"yes","param":"mixed $a"}],"returns":"resource"},"gmp_gcd":{"desc":"Calculate GCD","params":[{"required":"yes","param":"resource $a"},{"required":"yes","param":"resource $b"}],"returns":"resource"},"gmp_init":{"desc":"Create GMP number","params":[{"required":"yes","param":"mixed $number"},{"required":"no","param":"int $base = &#039;&#039;"}],"returns":"resource"},"gmp_invert":{"desc":"Inverse by modulo","params":[{"required":"yes","param":"resource $a"},{"required":"yes","param":"resource $b"}],"returns":"resource"},"gmp_mod":{"desc":"Modulo operation","params":[{"required":"yes","param":"resource $n"},{"required":"yes","param":"resource $d"}],"returns":"resource"},"gmp_mul":{"desc":"Multiply numbers","params":[{"required":"yes","param":"resource $a"},{"required":"yes","param":"resource $b"}],"returns":"resource"},"gmp_neg":{"desc":"Negate number","params":[{"required":"yes","param":"resource $a"}],"returns":"resource"},"gmp_nextprime":{"desc":"Find next prime number","params":[{"required":"yes","param":"int $a"}],"returns":"resource"},"gmp_or":{"desc":"Bitwise OR","params":[{"required":"yes","param":"resource $a"},{"required":"yes","param":"resource $b"}],"returns":"resource"},"gmp_pow":{"desc":"Raise number into power","params":[{"required":"yes","param":"resource $base"},{"required":"yes","param":"int $exp"}],"returns":"resource"},"gmp_powm":{"desc":"Raise number into power with modulo","params":[{"required":"yes","param":"resource $base"},{"required":"yes","param":"resource $exp"},{"required":"yes","param":"resource $mod"}],"returns":"resource"},"gmp_random":{"desc":"Random number","params":[{"required":"no","param":"int $limiter = 20"}],"returns":"resource"},"gmp_sqrt":{"desc":"Calculate square root","params":[{"required":"yes","param":"resource $a"}],"returns":"resource"},"gmp_sub":{"desc":"Subtract numbers","params":[{"required":"yes","param":"resource $a"},{"required":"yes","param":"resource $b"}],"returns":"resource"},"gmp_xor":{"desc":"Bitwise XOR","params":[{"required":"yes","param":"resource $a"},{"required":"yes","param":"resource $b"}],"returns":"resource"},"gnupg_init":{"desc":"Initialize a connection","params":[],"returns":"resource"},"gupnp_context_new":{"desc":"Create a new context","params":[{"required":"no","param":"string $host_ip = &#039;&#039;"},{"required":"no","param":"int $port = &#039;&#039;"}],"returns":"resource"},"gupnp_control_point_new":{"desc":"Create a new control point","params":[{"required":"yes","param":"resource $context"},{"required":"yes","param":"string $target"}],"returns":"resource"},"gupnp_device_info_get_service":{"desc":"Get the service with type","params":[{"required":"yes","param":"resource $root_device"},{"required":"yes","param":"string $type"}],"returns":"resource"},"gupnp_root_device_new":{"desc":"Create a new root device","params":[{"required":"yes","param":"resource $context"},{"required":"yes","param":"string $location"},{"required":"yes","param":"string $description_dir"}],"returns":"resource"},"gzopen":{"desc":"Open gz-file","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"string $mode"},{"required":"no","param":"int $use_include_path = &#039;&#039;"}],"returns":"resource"},"hash_copy":{"desc":"Copy hashing context","params":[{"required":"yes","param":"resource $context"}],"returns":"resource"},"hash_init":{"desc":"Initialize an incremental hashing context","params":[{"required":"yes","param":"string $algo"},{"required":"no","param":"int $options = &#039;&#039;"},{"required":"no","param":"string $key = &#039;&#039;"}],"returns":"resource"},"http_get_request_body_stream":{"desc":"Get request body as stream","params":[],"returns":"resource"},"ibase_blob_create":{"desc":"Create a new blob for adding data","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"resource"},"ibase_blob_open":{"desc":"Open blob for retrieving data parts","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"string $blob_id"}],"returns":"resource"},"ibase_connect":{"desc":"Open a connection to an InterBase database","params":[{"required":"no","param":"string $database = &#039;&#039;"},{"required":"no","param":"string $username = &#039;&#039;"},{"required":"no","param":"string $password = &#039;&#039;"},{"required":"no","param":"string $charset = &#039;&#039;"},{"required":"no","param":"int $buffers = &#039;&#039;"},{"required":"no","param":"int $dialect = &#039;&#039;"},{"required":"no","param":"string $role = &#039;&#039;"},{"required":"no","param":"int $sync = &#039;&#039;"}],"returns":"resource"},"ibase_execute":{"desc":"Execute a previously prepared query","params":[{"required":"yes","param":"resource $query"},{"required":"no","param":"mixed $bind_arg = &#039;&#039;"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"resource"},"ibase_pconnect":{"desc":"Open a persistent connection to an InterBase database","params":[{"required":"no","param":"string $database = &#039;&#039;"},{"required":"no","param":"string $username = &#039;&#039;"},{"required":"no","param":"string $password = &#039;&#039;"},{"required":"no","param":"string $charset = &#039;&#039;"},{"required":"no","param":"int $buffers = &#039;&#039;"},{"required":"no","param":"int $dialect = &#039;&#039;"},{"required":"no","param":"string $role = &#039;&#039;"},{"required":"no","param":"int $sync = &#039;&#039;"}],"returns":"resource"},"ibase_prepare":{"desc":"Prepare a query for later binding of parameter placeholders and execution","params":[{"required":"yes","param":"string $query"},{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"string $trans"}],"returns":"resource"},"ibase_query":{"desc":"Execute a query on an InterBase database","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"},{"required":"yes","param":"string $query"},{"required":"no","param":"int $bind_args = &#039;&#039;"}],"returns":"resource"},"ibase_service_attach":{"desc":"Connect to the service manager","params":[{"required":"yes","param":"string $host"},{"required":"yes","param":"string $dba_username"},{"required":"yes","param":"string $dba_password"}],"returns":"resource"},"ibase_set_event_handler":{"desc":"Register a callback function to be called when events are posted","params":[{"required":"yes","param":"callback $event_handler"},{"required":"yes","param":"string $event_name1"},{"required":"no","param":"string $event_name2 = &#039;&#039;"},{"required":"no","param":"string $... = &#039;&#039;"},{"required":"yes","param":"resource $connection"}],"returns":"resource"},"ibase_trans":{"desc":"Begin a transaction","params":[{"required":"no","param":"int $trans_args = &#039;&#039;"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"resource"},"ifx_connect":{"desc":"Open Informix server connection","params":[{"required":"no","param":"string $database = &#039;&#039;"},{"required":"no","param":"string $userid = &#039;&#039;"},{"required":"no","param":"string $password = &#039;&#039;"}],"returns":"resource"},"ifx_pconnect":{"desc":"Open persistent Informix connection","params":[{"required":"no","param":"string $database = &#039;&#039;"},{"required":"no","param":"string $userid = &#039;&#039;"},{"required":"no","param":"string $password = &#039;&#039;"}],"returns":"resource"},"ifx_prepare":{"desc":"Prepare an SQL-statement for execution","params":[{"required":"yes","param":"string $query"},{"required":"yes","param":"resource $link_identifier"},{"required":"no","param":"int $cursor_def = &#039;&#039;"},{"required":"yes","param":"mixed $blobidarray"}],"returns":"resource"},"ifx_query":{"desc":"Send Informix query","params":[{"required":"yes","param":"string $query"},{"required":"yes","param":"resource $link_identifier"},{"required":"no","param":"int $cursor_type = &#039;&#039;"},{"required":"no","param":"mixed $blobidarray = &#039;&#039;"}],"returns":"resource"},"imagecreate":{"desc":"Create a new palette based image","params":[{"required":"yes","param":"int $width"},{"required":"yes","param":"int $height"}],"returns":"resource"},"imagecreatefromgd":{"desc":"Create a new image from GD file or URL","params":[{"required":"yes","param":"string $filename"}],"returns":"resource"},"imagecreatefromgd2":{"desc":"Create a new image from GD2 file or URL","params":[{"required":"yes","param":"string $filename"}],"returns":"resource"},"imagecreatefromgd2part":{"desc":"Create a new image from a given part of GD2 file or URL","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"int $srcX"},{"required":"yes","param":"int $srcY"},{"required":"yes","param":"int $width"},{"required":"yes","param":"int $height"}],"returns":"resource"},"imagecreatefromgif":{"desc":"Create a new image from file or URL","params":[{"required":"yes","param":"string $filename"}],"returns":"resource"},"imagecreatefromjpeg":{"desc":"Create a new image from file or URL","params":[{"required":"yes","param":"string $filename"}],"returns":"resource"},"imagecreatefrompng":{"desc":"Create a new image from file or URL","params":[{"required":"yes","param":"string $filename"}],"returns":"resource"},"imagecreatefromstring":{"desc":"Create a new image from the image stream in the string","params":[{"required":"yes","param":"string $data"}],"returns":"resource"},"imagecreatefromwbmp":{"desc":"Create a new image from file or URL","params":[{"required":"yes","param":"string $filename"}],"returns":"resource"},"imagecreatefromxbm":{"desc":"Create a new image from file or URL","params":[{"required":"yes","param":"string $filename"}],"returns":"resource"},"imagecreatefromxpm":{"desc":"Create a new image from file or URL","params":[{"required":"yes","param":"string $filename"}],"returns":"resource"},"imagecreatetruecolor":{"desc":"Create a new true color image","params":[{"required":"yes","param":"int $width"},{"required":"yes","param":"int $height"}],"returns":"resource"},"imagegrabscreen":{"desc":"Captures the whole screen","params":[],"returns":"resource"},"imagegrabwindow":{"desc":"Captures a window","params":[{"required":"yes","param":"int $window_handle"},{"required":"no","param":"int $client_area = &#039;&#039;"}],"returns":"resource"},"imagepsloadfont":{"desc":"Load a PostScript Type 1 font from file","params":[{"required":"yes","param":"string $filename"}],"returns":"resource"},"imagerotate":{"desc":"Rotate an image with a given angle","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"float $angle"},{"required":"yes","param":"int $bgd_color"},{"required":"no","param":"int $ignore_transparent = &#039;&#039;"}],"returns":"resource"},"imap_open":{"desc":"Open an IMAP stream to a mailbox","params":[{"required":"yes","param":"string $mailbox"},{"required":"yes","param":"string $username"},{"required":"yes","param":"string $password"},{"required":"no","param":"int $options = NIL"},{"required":"no","param":"int $n_retries = &#039;&#039;"},{"required":"no","param":"array $params = &#039;&#039;"}],"returns":"resource"},"ingres_connect":{"desc":"Open a connection to an Ingres database","params":[{"required":"no","param":"string $database = &#039;&#039;"},{"required":"no","param":"string $username = &#039;&#039;"},{"required":"no","param":"string $password = &#039;&#039;"},{"required":"no","param":"array $options = &#039;&#039;"}],"returns":"resource"},"ingres_pconnect":{"desc":"Open a persistent connection to an Ingres database","params":[{"required":"no","param":"string $database = &#039;&#039;"},{"required":"no","param":"string $username = &#039;&#039;"},{"required":"no","param":"string $password = &#039;&#039;"},{"required":"no","param":"array $options = &#039;&#039;"}],"returns":"resource"},"inotify_init":{"desc":"Initialize an inotify instance","params":[],"returns":"resource"},"is_scalar":{"desc":"Finds whether a variable is a scalar","params":[{"required":"yes","param":"mixed $var"}],"returns":"resource"},"kadm5_init_with_password":{"desc":"Opens a connection to the KADM5 library","params":[{"required":"yes","param":"string $admin_server"},{"required":"yes","param":"string $realm"},{"required":"yes","param":"string $principal"},{"required":"yes","param":"string $password"}],"returns":"resource"},"ldap_connect":{"desc":"Connect to an LDAP server","params":[{"required":"no","param":"string $hostname = &#039;&#039;"},{"required":"no","param":"int $port = 389"}],"returns":"resource"},"ldap_first_entry":{"desc":"Return first result id","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"resource $result_identifier"}],"returns":"resource"},"ldap_first_reference":{"desc":"Return first reference","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"resource $result"}],"returns":"resource"},"ldap_list":{"desc":"Single-level search","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"string $base_dn"},{"required":"yes","param":"string $filter"},{"required":"no","param":"array $attributes = &#039;&#039;"},{"required":"no","param":"int $attrsonly = &#039;&#039;"},{"required":"no","param":"int $sizelimit = &#039;&#039;"},{"required":"no","param":"int $timelimit = &#039;&#039;"},{"required":"no","param":"int $deref = &#039;&#039;"}],"returns":"resource"},"ldap_next_entry":{"desc":"Get next result entry","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"resource $result_entry_identifier"}],"returns":"resource"},"ldap_next_reference":{"desc":"Get next reference","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"resource $entry"}],"returns":"resource"},"ldap_read":{"desc":"Read an entry","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"string $base_dn"},{"required":"yes","param":"string $filter"},{"required":"no","param":"array $attributes = &#039;&#039;"},{"required":"no","param":"int $attrsonly = &#039;&#039;"},{"required":"no","param":"int $sizelimit = &#039;&#039;"},{"required":"no","param":"int $timelimit = &#039;&#039;"},{"required":"no","param":"int $deref = &#039;&#039;"}],"returns":"resource"},"ldap_search":{"desc":"Search LDAP tree","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"string $base_dn"},{"required":"yes","param":"string $filter"},{"required":"no","param":"array $attributes = &#039;&#039;"},{"required":"no","param":"int $attrsonly = &#039;&#039;"},{"required":"no","param":"int $sizelimit = &#039;&#039;"},{"required":"no","param":"int $timelimit = &#039;&#039;"},{"required":"no","param":"int $deref = &#039;&#039;"}],"returns":"resource"},"mailparse_msg_create":{"desc":"Create a mime mail resource","params":[],"returns":"resource"},"mailparse_msg_get_part":{"desc":"Returns a handle on a given section in a mimemessage","params":[{"required":"yes","param":"resource $mimemail"},{"required":"yes","param":"string $mimesection"}],"returns":"resource"},"mailparse_msg_parse_file":{"desc":"Parses a file","params":[{"required":"yes","param":"string $filename"}],"returns":"resource"},"maxdb_connect":{"desc":"Open a new connection to the MaxDB server","params":[{"required":"no","param":"string $host = &#039;&#039;"},{"required":"no","param":"string $username = &#039;&#039;"},{"required":"no","param":"string $passwd = &#039;&#039;"},{"required":"no","param":"string $dbname = &#039;&#039;"},{"required":"no","param":"int $port = &#039;&#039;"},{"required":"no","param":"string $socket = &#039;&#039;"}],"returns":"resource"},"maxdb_embedded_connect":{"desc":"Open a connection to an embedded MaxDB server","params":[{"required":"no","param":"string $dbname = &#039;&#039;"}],"returns":"resource"},"maxdb_init":{"desc":"Initializes MaxDB and returns an resource for use with maxdb_real_connect","params":[],"returns":"resource"},"maxdb_stmt_result_metadata":{"desc":"Returns result set metadata from a prepared statement","params":[{"required":"yes","param":"resource $stmt"}],"returns":"resource"},"maxdb_use_result":{"desc":"Initiate a result set retrieval","params":[{"required":"yes","param":"resource $link"}],"returns":"resource"},"mcrypt_module_open":{"desc":"Opens the module of the algorithm and the mode to be used","params":[{"required":"yes","param":"string $algorithm"},{"required":"yes","param":"string $algorithm_directory"},{"required":"yes","param":"string $mode"},{"required":"yes","param":"string $mode_directory"}],"returns":"resource"},"msg_get_queue":{"desc":"Create or attach to a message queue","params":[{"required":"yes","param":"int $key"},{"required":"no","param":"int $perms = &#039;&#039;"}],"returns":"resource"},"msql_connect":{"desc":"Open mSQL connection","params":[{"required":"no","param":"string $hostname = &#039;&#039;"}],"returns":"resource"},"msql_db_query":{"desc":"Send mSQL query","params":[{"required":"yes","param":"string $database"},{"required":"yes","param":"string $query"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"resource"},"msql_list_dbs":{"desc":"List mSQL databases on server","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"resource"},"msql_list_fields":{"desc":"List result fields","params":[{"required":"yes","param":"string $database"},{"required":"yes","param":"string $tablename"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"resource"},"msql_list_tables":{"desc":"List tables in an mSQL database","params":[{"required":"yes","param":"string $database"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"resource"},"msql_pconnect":{"desc":"Open persistent mSQL connection","params":[{"required":"no","param":"string $hostname = &#039;&#039;"}],"returns":"resource"},"msql_query":{"desc":"Send mSQL query","params":[{"required":"yes","param":"string $query"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"resource"},"mssql_connect":{"desc":"Open MS SQL server connection","params":[{"required":"no","param":"string $servername = &#039;&#039;"},{"required":"no","param":"string $username = &#039;&#039;"},{"required":"no","param":"string $password = &#039;&#039;"},{"required":"no","param":"bool $new_link = false"}],"returns":"resource"},"mssql_init":{"desc":"Initializes a stored procedure or a remote stored procedure","params":[{"required":"yes","param":"string $sp_name"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"resource"},"mssql_pconnect":{"desc":"Open persistent MS SQL connection","params":[{"required":"no","param":"string $servername = &#039;&#039;"},{"required":"no","param":"string $username = &#039;&#039;"},{"required":"no","param":"string $password = &#039;&#039;"},{"required":"no","param":"bool $new_link = false"}],"returns":"resource"},"mysql_connect":{"desc":"Open a connection to a MySQL Server","params":[{"required":"no","param":"string $server = ini_get(&quot;mysql.default_host&quot;)"},{"required":"no","param":"string $username = ini_get(&quot;mysql.default_user&quot;)"},{"required":"no","param":"string $password = ini_get(&quot;mysql.default_password&quot;)"},{"required":"no","param":"bool $new_link = false"},{"required":"no","param":"int $client_flags = &#039;&#039;"}],"returns":"resource"},"mysql_db_query":{"desc":"Send a MySQL query","params":[{"required":"yes","param":"string $database"},{"required":"yes","param":"string $query"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"resource"},"mysql_list_dbs":{"desc":"List databases available on a MySQL server","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"resource"},"mysql_list_fields":{"desc":"List MySQL table fields","params":[{"required":"yes","param":"string $database_name"},{"required":"yes","param":"string $table_name"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"resource"},"mysql_list_processes":{"desc":"List MySQL processes","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"resource"},"mysql_list_tables":{"desc":"List tables in a MySQL database","params":[{"required":"yes","param":"string $database"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"resource"},"mysql_pconnect":{"desc":"Open a persistent connection to a MySQL server","params":[{"required":"no","param":"string $server = ini_get(&quot;mysql.default_host&quot;)"},{"required":"no","param":"string $username = ini_get(&quot;mysql.default_user&quot;)"},{"required":"no","param":"string $password = ini_get(&quot;mysql.default_password&quot;)"},{"required":"no","param":"int $client_flags = &#039;&#039;"}],"returns":"resource"},"mysql_query":{"desc":"Send a MySQL query","params":[{"required":"yes","param":"string $query"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"resource"},"mysql_unbuffered_query":{"desc":"Send an SQL query to MySQL without fetching and buffering the result rows.","params":[{"required":"yes","param":"string $query"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"resource"},"m_initconn":{"desc":"Create and initialize an MCVE_CONN structure","params":[],"returns":"resource"},"ncurses_newpad":{"desc":"Creates a new pad (window)","params":[{"required":"yes","param":"int $rows"},{"required":"yes","param":"int $cols"}],"returns":"resource"},"ncurses_newwin":{"desc":"Create a new window","params":[{"required":"yes","param":"int $rows"},{"required":"yes","param":"int $cols"},{"required":"yes","param":"int $y"},{"required":"yes","param":"int $x"}],"returns":"resource"},"ncurses_new_panel":{"desc":"Create a new panel and associate it with window","params":[{"required":"yes","param":"resource $window"}],"returns":"resource"},"ncurses_panel_above":{"desc":"Returns the panel above panel","params":[{"required":"yes","param":"resource $panel"}],"returns":"resource"},"ncurses_panel_below":{"desc":"Returns the panel below panel","params":[{"required":"yes","param":"resource $panel"}],"returns":"resource"},"ncurses_panel_window":{"desc":"Returns the window associated with panel","params":[{"required":"yes","param":"resource $panel"}],"returns":"resource"},"newt_button":{"desc":"Create a new button","params":[{"required":"yes","param":"int $left"},{"required":"yes","param":"int $top"},{"required":"yes","param":"string $text"}],"returns":"resource"},"newt_button_bar":{"desc":"This function returns a grid containing the buttons created.","params":[{"required":"yes","param":"array $buttons"}],"returns":"resource"},"newt_checkbox":{"desc":"","params":[{"required":"yes","param":"int $left"},{"required":"yes","param":"int $top"},{"required":"yes","param":"string $text"},{"required":"yes","param":"string $def_value"},{"required":"no","param":"string $seq = &#039;&#039;"}],"returns":"resource"},"newt_checkbox_tree":{"desc":"","params":[{"required":"yes","param":"int $left"},{"required":"yes","param":"int $top"},{"required":"yes","param":"int $height"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"resource"},"newt_checkbox_tree_multi":{"desc":"","params":[{"required":"yes","param":"int $left"},{"required":"yes","param":"int $top"},{"required":"yes","param":"int $height"},{"required":"yes","param":"string $seq"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"resource"},"newt_compact_button":{"desc":"","params":[{"required":"yes","param":"int $left"},{"required":"yes","param":"int $top"},{"required":"yes","param":"string $text"}],"returns":"resource"},"newt_create_grid":{"desc":"","params":[{"required":"yes","param":"int $cols"},{"required":"yes","param":"int $rows"}],"returns":"resource"},"newt_entry":{"desc":"","params":[{"required":"yes","param":"int $left"},{"required":"yes","param":"int $top"},{"required":"yes","param":"int $width"},{"required":"no","param":"string $init_value = &#039;&#039;"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"resource"},"newt_form":{"desc":"Create a form","params":[{"required":"no","param":"resource $vert_bar = &#039;&#039;"},{"required":"no","param":"string $help = &#039;&#039;"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"resource"},"newt_form_get_current":{"desc":"","params":[{"required":"yes","param":"resource $form"}],"returns":"resource"},"newt_grid_basic_window":{"desc":"","params":[{"required":"yes","param":"resource $text"},{"required":"yes","param":"resource $middle"},{"required":"yes","param":"resource $buttons"}],"returns":"resource"},"newt_grid_h_close_stacked":{"desc":"","params":[{"required":"yes","param":"int $element1_type"},{"required":"yes","param":"resource $element1"},{"required":"no","param":"resource $... = &#039;&#039;"}],"returns":"resource"},"newt_grid_h_stacked":{"desc":"","params":[{"required":"yes","param":"int $element1_type"},{"required":"yes","param":"resource $element1"},{"required":"no","param":"resource $... = &#039;&#039;"}],"returns":"resource"},"newt_grid_simple_window":{"desc":"","params":[{"required":"yes","param":"resource $text"},{"required":"yes","param":"resource $middle"},{"required":"yes","param":"resource $buttons"}],"returns":"resource"},"newt_grid_v_close_stacked":{"desc":"","params":[{"required":"yes","param":"int $element1_type"},{"required":"yes","param":"resource $element1"},{"required":"no","param":"resource $... = &#039;&#039;"}],"returns":"resource"},"newt_grid_v_stacked":{"desc":"","params":[{"required":"yes","param":"int $element1_type"},{"required":"yes","param":"resource $element1"},{"required":"no","param":"resource $... = &#039;&#039;"}],"returns":"resource"},"newt_label":{"desc":"","params":[{"required":"yes","param":"int $left"},{"required":"yes","param":"int $top"},{"required":"yes","param":"string $text"}],"returns":"resource"},"newt_listbox":{"desc":"","params":[{"required":"yes","param":"int $left"},{"required":"yes","param":"int $top"},{"required":"yes","param":"int $height"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"resource"},"newt_listitem":{"desc":"","params":[{"required":"yes","param":"int $left"},{"required":"yes","param":"int $top"},{"required":"yes","param":"string $text"},{"required":"yes","param":"bool $is_default"},{"required":"yes","param":"resouce $prev_item"},{"required":"yes","param":"mixed $data"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"resource"},"newt_radiobutton":{"desc":"","params":[{"required":"yes","param":"int $left"},{"required":"yes","param":"int $top"},{"required":"yes","param":"string $text"},{"required":"yes","param":"bool $is_default"},{"required":"no","param":"resource $prev_button = &#039;&#039;"}],"returns":"resource"},"newt_radio_get_current":{"desc":"","params":[{"required":"yes","param":"resource $set_member"}],"returns":"resource"},"newt_run_form":{"desc":"Runs a form","params":[{"required":"yes","param":"resource $form"}],"returns":"resource"},"newt_scale":{"desc":"","params":[{"required":"yes","param":"int $left"},{"required":"yes","param":"int $top"},{"required":"yes","param":"int $width"},{"required":"yes","param":"int $full_value"}],"returns":"resource"},"newt_textbox":{"desc":"","params":[{"required":"yes","param":"int $left"},{"required":"yes","param":"int $top"},{"required":"yes","param":"int $width"},{"required":"yes","param":"int $height"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"resource"},"newt_textbox_reflowed":{"desc":"","params":[{"required":"yes","param":"int $left"},{"required":"yes","param":"int $top"},{"required":"yes","param":"char $*text"},{"required":"yes","param":"int $width"},{"required":"yes","param":"int $flex_down"},{"required":"yes","param":"int $flex_up"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"resource"},"newt_vertical_scrollbar":{"desc":"","params":[{"required":"yes","param":"int $left"},{"required":"yes","param":"int $top"},{"required":"yes","param":"int $height"},{"required":"no","param":"int $normal_colorset = &#039;&#039;"},{"required":"no","param":"int $thumb_colorset = &#039;&#039;"}],"returns":"resource"},"oci_connect":{"desc":"Connect to an Oracle database","params":[{"required":"yes","param":"string $username"},{"required":"yes","param":"string $password"},{"required":"no","param":"string $connection_string = &#039;&#039;"},{"required":"no","param":"string $character_set = &#039;&#039;"},{"required":"no","param":"int $session_mode = &#039;&#039;"}],"returns":"resource"},"oci_new_connect":{"desc":"Connect to the Oracle server using a unique connection","params":[{"required":"yes","param":"string $username"},{"required":"yes","param":"string $password"},{"required":"no","param":"string $connection_string = &#039;&#039;"},{"required":"no","param":"string $character_set = &#039;&#039;"},{"required":"no","param":"int $session_mode = &#039;&#039;"}],"returns":"resource"},"oci_new_cursor":{"desc":"Allocates and returns a new cursor (statement handle)","params":[{"required":"yes","param":"resource $connection"}],"returns":"resource"},"oci_parse":{"desc":"Prepares an Oracle statement for execution","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $sql_text"}],"returns":"resource"},"oci_password_change":{"desc":"Changes password of Oracle&#039;s user","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"string $username"},{"required":"yes","param":"string $old_password"},{"required":"yes","param":"string $new_password"},{"required":"yes","param":"string $dbname"}],"returns":"resource"},"oci_pconnect":{"desc":"Connect to an Oracle database using a persistent connection","params":[{"required":"yes","param":"string $username"},{"required":"yes","param":"string $password"},{"required":"no","param":"string $connection_string = &#039;&#039;"},{"required":"no","param":"string $character_set = &#039;&#039;"},{"required":"no","param":"int $session_mode = &#039;&#039;"}],"returns":"resource"},"odbc_columnprivileges":{"desc":"Lists columns and associated privileges for the given table","params":[{"required":"yes","param":"resource $connection_id"},{"required":"yes","param":"string $qualifier"},{"required":"yes","param":"string $owner"},{"required":"yes","param":"string $table_name"},{"required":"yes","param":"string $column_name"}],"returns":"resource"},"odbc_columns":{"desc":"Lists the column names in specified tables","params":[{"required":"yes","param":"resource $connection_id"},{"required":"no","param":"string $qualifier = &#039;&#039;"},{"required":"no","param":"string $schema = &#039;&#039;"},{"required":"no","param":"string $table_name = &#039;&#039;"},{"required":"no","param":"string $column_name = &#039;&#039;"}],"returns":"resource"},"odbc_connect":{"desc":"Connect to a datasource","params":[{"required":"yes","param":"string $dsn"},{"required":"yes","param":"string $user"},{"required":"yes","param":"string $password"},{"required":"no","param":"int $cursor_type = &#039;&#039;"}],"returns":"resource"},"odbc_exec":{"desc":"Prepare and execute an SQL statement","params":[{"required":"yes","param":"resource $connection_id"},{"required":"yes","param":"string $query_string"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"resource"},"odbc_foreignkeys":{"desc":"Retrieves a list of foreign keys","params":[{"required":"yes","param":"resource $connection_id"},{"required":"yes","param":"string $pk_qualifier"},{"required":"yes","param":"string $pk_owner"},{"required":"yes","param":"string $pk_table"},{"required":"yes","param":"string $fk_qualifier"},{"required":"yes","param":"string $fk_owner"},{"required":"yes","param":"string $fk_table"}],"returns":"resource"},"odbc_gettypeinfo":{"desc":"Retrieves information about data types supported by the data source","params":[{"required":"yes","param":"resource $connection_id"},{"required":"no","param":"int $data_type = &#039;&#039;"}],"returns":"resource"},"odbc_pconnect":{"desc":"Open a persistent database connection","params":[{"required":"yes","param":"string $dsn"},{"required":"yes","param":"string $user"},{"required":"yes","param":"string $password"},{"required":"no","param":"int $cursor_type = &#039;&#039;"}],"returns":"resource"},"odbc_prepare":{"desc":"Prepares a statement for execution","params":[{"required":"yes","param":"resource $connection_id"},{"required":"yes","param":"string $query_string"}],"returns":"resource"},"odbc_primarykeys":{"desc":"Gets the primary keys for a table","params":[{"required":"yes","param":"resource $connection_id"},{"required":"yes","param":"string $qualifier"},{"required":"yes","param":"string $owner"},{"required":"yes","param":"string $table"}],"returns":"resource"},"odbc_procedurecolumns":{"desc":"Retrieve information about parameters to procedures","params":[{"required":"yes","param":"resource $connection_id"},{"required":"yes","param":"string $qualifier"},{"required":"yes","param":"string $owner"},{"required":"yes","param":"string $proc"},{"required":"yes","param":"string $column"}],"returns":"resource"},"odbc_procedures":{"desc":"Get the list of procedures stored in a specific data source","params":[{"required":"yes","param":"resource $connection_id"},{"required":"yes","param":"string $qualifier"},{"required":"yes","param":"string $owner"},{"required":"yes","param":"string $name"}],"returns":"resource"},"odbc_specialcolumns":{"desc":"Retrieves special columns","params":[{"required":"yes","param":"resource $connection_id"},{"required":"yes","param":"int $type"},{"required":"yes","param":"string $qualifier"},{"required":"yes","param":"string $owner"},{"required":"yes","param":"string $table"},{"required":"yes","param":"int $scope"},{"required":"yes","param":"int $nullable"}],"returns":"resource"},"odbc_statistics":{"desc":"Retrieve statistics about a table","params":[{"required":"yes","param":"resource $connection_id"},{"required":"yes","param":"string $qualifier"},{"required":"yes","param":"string $owner"},{"required":"yes","param":"string $table_name"},{"required":"yes","param":"int $unique"},{"required":"yes","param":"int $accuracy"}],"returns":"resource"},"odbc_tableprivileges":{"desc":"Lists tables and the privileges associated with each table","params":[{"required":"yes","param":"resource $connection_id"},{"required":"yes","param":"string $qualifier"},{"required":"yes","param":"string $owner"},{"required":"yes","param":"string $name"}],"returns":"resource"},"odbc_tables":{"desc":"Get the list of table names stored in a specific data source","params":[{"required":"yes","param":"resource $connection_id"},{"required":"no","param":"string $qualifier = &#039;&#039;"},{"required":"no","param":"string $owner = &#039;&#039;"},{"required":"no","param":"string $name = &#039;&#039;"},{"required":"no","param":"string $types = &#039;&#039;"}],"returns":"resource"},"openal_buffer_create":{"desc":"Generate OpenAL buffer","params":[],"returns":"resource"},"openal_context_create":{"desc":"Create an audio processing context","params":[{"required":"yes","param":"resource $device"}],"returns":"resource"},"openal_device_open":{"desc":"Initialize the OpenAL audio layer","params":[{"required":"no","param":"string $device_desc = &#039;&#039;"}],"returns":"resource"},"openal_source_create":{"desc":"Generate a source resource","params":[],"returns":"resource"},"openal_stream":{"desc":"Begin streaming on a source","params":[{"required":"yes","param":"resource $source"},{"required":"yes","param":"int $format"},{"required":"yes","param":"int $rate"}],"returns":"resource"},"opendir":{"desc":"Open directory handle","params":[{"required":"yes","param":"string $path"},{"required":"no","param":"resource $context = &#039;&#039;"}],"returns":"resource"},"openssl_csr_get_public_key":{"desc":"Returns the public key of a CERT","params":[{"required":"yes","param":"mixed $csr"},{"required":"no","param":"bool $use_shortnames = true"}],"returns":"resource"},"openssl_csr_sign":{"desc":"Sign a CSR with another certificate (or itself) and generate a certificate","params":[{"required":"yes","param":"mixed $csr"},{"required":"yes","param":"mixed $cacert"},{"required":"yes","param":"mixed $priv_key"},{"required":"yes","param":"int $days"},{"required":"no","param":"array $configargs = &#039;&#039;"},{"required":"no","param":"int $serial = &#039;&#039;"}],"returns":"resource"},"openssl_pkey_get_private":{"desc":"Get a private key","params":[{"required":"yes","param":"mixed $key"},{"required":"no","param":"string $passphrase = &quot;&quot;"}],"returns":"resource"},"openssl_pkey_get_public":{"desc":"Extract public key from certificate and prepare it for use","params":[{"required":"yes","param":"mixed $certificate"}],"returns":"resource"},"openssl_pkey_new":{"desc":"Generates a new private key","params":[{"required":"no","param":"array $configargs = &#039;&#039;"}],"returns":"resource"},"openssl_x509_read":{"desc":"Parse an X.509 certificate and return a resource identifier for it","params":[{"required":"yes","param":"mixed $x509certdata"}],"returns":"resource"},"PDF_new":{"desc":"Create PDFlib object","params":[],"returns":"resource"},"pfsockopen":{"desc":"Open persistent Internet or Unix domain socket connection","params":[{"required":"yes","param":"string $hostname"},{"required":"no","param":"int $port = -1"},{"required":"no","param":"int $errno = &#039;&#039;"},{"required":"no","param":"string $errstr = &#039;&#039;"},{"required":"no","param":"float $timeout = ini_get(&quot;default_socket_timeout&quot;"}],"returns":"resource"},"pg_connect":{"desc":"Open a PostgreSQL connection","params":[{"required":"yes","param":"string $connection_string"},{"required":"no","param":"int $connect_type = &#039;&#039;"}],"returns":"resource"},"pg_execute":{"desc":"Sends a request to execute a prepared statement with given parameters, and waits for the result.","params":[{"required":"no","param":"resource $connection = &#039;&#039;"},{"required":"yes","param":"string $stmtname"},{"required":"yes","param":"array $params"}],"returns":"resource"},"pg_free_result":{"desc":"Free result memory","params":[{"required":"yes","param":"resource $result"}],"returns":"resource"},"pg_get_result":{"desc":"Get asynchronous query result","params":[{"required":"no","param":"resource $connection = &#039;&#039;"}],"returns":"resource"},"pg_lo_open":{"desc":"Open a large object","params":[{"required":"yes","param":"resource $connection"},{"required":"yes","param":"int $oid"},{"required":"yes","param":"string $mode"}],"returns":"resource"},"pg_pconnect":{"desc":"Open a persistent PostgreSQL connection","params":[{"required":"yes","param":"string $connection_string"},{"required":"no","param":"int $connect_type = &#039;&#039;"}],"returns":"resource"},"pg_prepare":{"desc":"Submits a request to create a prepared statement with the given parameters, and waits for completion.","params":[{"required":"no","param":"resource $connection = &#039;&#039;"},{"required":"yes","param":"string $stmtname"},{"required":"yes","param":"string $query"}],"returns":"resource"},"pg_query":{"desc":"Execute a query","params":[{"required":"no","param":"resource $connection = &#039;&#039;"},{"required":"yes","param":"string $query"}],"returns":"resource"},"pg_query_params":{"desc":"Submits a command to the server and waits for the result, with the ability to pass parameters separately from the SQL command text.","params":[{"required":"no","param":"resource $connection = &#039;&#039;"},{"required":"yes","param":"string $query"},{"required":"yes","param":"array $params"}],"returns":"resource"},"popen":{"desc":"Opens process file pointer","params":[{"required":"yes","param":"string $command"},{"required":"yes","param":"string $mode"}],"returns":"resource"},"printer_create_brush":{"desc":"Create a new brush","params":[{"required":"yes","param":"int $style"},{"required":"yes","param":"string $color"}],"returns":"resource"},"printer_create_font":{"desc":"Create a new font","params":[{"required":"yes","param":"string $face"},{"required":"yes","param":"int $height"},{"required":"yes","param":"int $width"},{"required":"yes","param":"int $font_weight"},{"required":"yes","param":"bool $italic"},{"required":"yes","param":"bool $underline"},{"required":"yes","param":"bool $strikeout"},{"required":"yes","param":"int $orientation"}],"returns":"resource"},"printer_create_pen":{"desc":"Create a new pen","params":[{"required":"yes","param":"int $style"},{"required":"yes","param":"int $width"},{"required":"yes","param":"string $color"}],"returns":"resource"},"printer_open":{"desc":"Opens a connection to a printer","params":[{"required":"no","param":"string $printername = &#039;&#039;"}],"returns":"resource"},"proc_open":{"desc":"Execute a command and open file pointers for input/output","params":[{"required":"yes","param":"string $cmd"},{"required":"yes","param":"array $descriptorspec"},{"required":"yes","param":"array $pipes"},{"required":"no","param":"string $cwd = &#039;&#039;"},{"required":"no","param":"array $env = &#039;&#039;"},{"required":"no","param":"array $other_options = &#039;&#039;"}],"returns":"resource"},"ps_new":{"desc":"Creates a new PostScript document object","params":[],"returns":"resource"},"px_new":{"desc":"Create a new paradox object","params":[],"returns":"resource"},"radius_acct_open":{"desc":"Creates a Radius handle for accounting","params":[],"returns":"resource"},"radius_auth_open":{"desc":"Creates a Radius handle for authentication","params":[],"returns":"resource"},"rpm_open":{"desc":"Opens an RPM file","params":[{"required":"yes","param":"string $filename"}],"returns":"resource"},"sem_get":{"desc":"Get a semaphore id","params":[{"required":"yes","param":"int $key"},{"required":"no","param":"int $max_acquire = 1"},{"required":"no","param":"int $perm = 0666"},{"required":"no","param":"int $auto_release = 1"}],"returns":"resource"},"shm_attach":{"desc":"Creates or open a shared memory segment","params":[{"required":"yes","param":"int $key"},{"required":"no","param":"int $memsize = &#039;&#039;"},{"required":"no","param":"int $perm = &#039;&#039;"}],"returns":"resource"},"socket_accept":{"desc":"Accepts a connection on a socket","params":[{"required":"yes","param":"resource $socket"}],"returns":"resource"},"socket_create":{"desc":"Create a socket (endpoint for communication)","params":[{"required":"yes","param":"int $domain"},{"required":"yes","param":"int $type"},{"required":"yes","param":"int $protocol"}],"returns":"resource"},"socket_create_listen":{"desc":"Opens a socket on port to accept connections","params":[{"required":"yes","param":"int $port"},{"required":"no","param":"int $backlog = 128"}],"returns":"resource"},"sqlite_open":{"desc":"Opens an SQLite database and create the database if it does not exist","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"int $mode = 0666"},{"required":"no","param":"string $error_message = &#039;&#039;"}],"returns":"resource"},"sqlite_popen":{"desc":"Opens a persistent handle to an SQLite database and create the database if it does not exist","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"int $mode = 0666"},{"required":"no","param":"string $error_message = &#039;&#039;"}],"returns":"resource"},"ssh2_connect":{"desc":"Connect to an SSH server","params":[{"required":"yes","param":"string $host"},{"required":"no","param":"int $port = 22"},{"required":"no","param":"array $methods = &#039;&#039;"},{"required":"no","param":"array $callbacks = &#039;&#039;"}],"returns":"resource"},"ssh2_exec":{"desc":"Execute a command on a remote server","params":[{"required":"yes","param":"resource $session"},{"required":"yes","param":"string $command"},{"required":"no","param":"string $pty = &#039;&#039;"},{"required":"no","param":"array $env = &#039;&#039;"},{"required":"no","param":"int $width = 80"},{"required":"no","param":"int $height = 25"},{"required":"no","param":"int $width_height_type = SSH2_TERM_UNIT_CHARS"}],"returns":"resource"},"ssh2_fetch_stream":{"desc":"Fetch an extended data stream","params":[{"required":"yes","param":"resource $channel"},{"required":"yes","param":"int $streamid"}],"returns":"resource"},"ssh2_publickey_init":{"desc":"Initialize Publickey subsystem","params":[{"required":"yes","param":"resource $session"}],"returns":"resource"},"ssh2_sftp":{"desc":"Initialize SFTP subsystem","params":[{"required":"yes","param":"resource $session"}],"returns":"resource"},"ssh2_shell":{"desc":"Request an interactive shell","params":[{"required":"yes","param":"resource $session"},{"required":"no","param":"string $term_type = &quot;vanilla&quot;"},{"required":"no","param":"array $env = &#039;&#039;"},{"required":"no","param":"int $width = 80"},{"required":"no","param":"int $height = 25"},{"required":"no","param":"int $width_height_type = SSH2_TERM_UNIT_CHARS"}],"returns":"resource"},"ssh2_tunnel":{"desc":"Open a tunnel through a remote server","params":[{"required":"yes","param":"resource $session"},{"required":"yes","param":"string $host"},{"required":"yes","param":"int $port"}],"returns":"resource"},"stomp_connect":{"desc":"Opens a connection","params":[{"required":"no","param":"string $broker = ini_get(&quot;stomp.default_broker_uri&quot;)"},{"required":"no","param":"string $username = &#039;&#039;"},{"required":"no","param":"string $password = &#039;&#039;"},{"required":"no","param":"array $headers = &#039;&#039;"}],"returns":"resource"},"stream_context_create":{"desc":"Create a streams context","params":[{"required":"no","param":"array $options = &#039;&#039;"},{"required":"no","param":"array $params = &#039;&#039;"}],"returns":"resource"},"stream_context_get_default":{"desc":"Retreive the default streams context","params":[{"required":"no","param":"array $options = &#039;&#039;"}],"returns":"resource"},"stream_context_set_default":{"desc":"Set the default streams context","params":[{"required":"yes","param":"array $options"}],"returns":"resource"},"stream_filter_append":{"desc":"Attach a filter to a stream","params":[{"required":"yes","param":"resource $stream"},{"required":"yes","param":"string $filtername"},{"required":"no","param":"int $read_write = &#039;&#039;"},{"required":"no","param":"mixed $params = &#039;&#039;"}],"returns":"resource"},"stream_filter_prepend":{"desc":"Attach a filter to a stream","params":[{"required":"yes","param":"resource $stream"},{"required":"yes","param":"string $filtername"},{"required":"no","param":"int $read_write = &#039;&#039;"},{"required":"no","param":"mixed $params = &#039;&#039;"}],"returns":"resource"},"stream_socket_accept":{"desc":"Accept a connection on a socket created by stream_socket_server","params":[{"required":"yes","param":"resource $server_socket"},{"required":"no","param":"float $timeout = ini_get(&quot;default_socket_timeout&quot;)"},{"required":"no","param":"string $peername = &#039;&#039;"}],"returns":"resource"},"stream_socket_client":{"desc":"Open Internet or Unix domain socket connection","params":[{"required":"yes","param":"string $remote_socket"},{"required":"no","param":"int $errno = &#039;&#039;"},{"required":"no","param":"string $errstr = &#039;&#039;"},{"required":"no","param":"float $timeout = ini_get(&quot;default_socket_timeout&quot;)"},{"required":"no","param":"int $flags = STREAM_CLIENT_CONNECT"},{"required":"no","param":"resource $context = &#039;&#039;"}],"returns":"resource"},"stream_socket_server":{"desc":"Create an Internet or Unix domain server socket","params":[{"required":"yes","param":"string $local_socket"},{"required":"no","param":"int $errno = &#039;&#039;"},{"required":"no","param":"string $errstr = &#039;&#039;"},{"required":"no","param":"int $flags = STREAM_SERVER_BIND | STREAM_SERVER_LISTEN"},{"required":"no","param":"resource $context = &#039;&#039;"}],"returns":"resource"},"svn_fs_apply_text":{"desc":"Creates and returns a stream that will be used to replace","params":[{"required":"yes","param":"resource $root"},{"required":"yes","param":"string $path"}],"returns":"resource"},"svn_fs_begin_txn2":{"desc":"Create a new transaction","params":[{"required":"yes","param":"resource $repos"},{"required":"yes","param":"int $rev"}],"returns":"resource"},"svn_fs_file_contents":{"desc":"Returns a stream to access the contents of a file from a given version of the fs","params":[{"required":"yes","param":"resource $fsroot"},{"required":"yes","param":"string $path"}],"returns":"resource"},"svn_fs_revision_root":{"desc":"Get a handle on a specific version of the repository root","params":[{"required":"yes","param":"resource $fs"},{"required":"yes","param":"int $revnum"}],"returns":"resource"},"svn_fs_txn_root":{"desc":"Creates and returns a transaction root","params":[{"required":"yes","param":"resource $txn"}],"returns":"resource"},"svn_repos_create":{"desc":"Create a new subversion repository at path","params":[{"required":"yes","param":"string $path"},{"required":"no","param":"array $config = &#039;&#039;"},{"required":"no","param":"array $fsconfig = &#039;&#039;"}],"returns":"resource"},"svn_repos_fs":{"desc":"Gets a handle on the filesystem for a repository","params":[{"required":"yes","param":"resource $repos"}],"returns":"resource"},"svn_repos_fs_begin_txn_for_commit":{"desc":"Create a new transaction","params":[{"required":"yes","param":"resource $repos"},{"required":"yes","param":"int $rev"},{"required":"yes","param":"string $author"},{"required":"yes","param":"string $log_msg"}],"returns":"resource"},"svn_repos_open":{"desc":"Open a shared lock on a repository.","params":[{"required":"yes","param":"string $path"}],"returns":"resource"},"sybase_connect":{"desc":"Opens a Sybase server connection","params":[{"required":"no","param":"string $servername = &#039;&#039;"},{"required":"no","param":"string $username = &#039;&#039;"},{"required":"no","param":"string $password = &#039;&#039;"},{"required":"no","param":"string $charset = &#039;&#039;"},{"required":"no","param":"string $appname = &#039;&#039;"},{"required":"no","param":"bool $new = false"}],"returns":"resource"},"sybase_pconnect":{"desc":"Open persistent Sybase connection","params":[{"required":"no","param":"string $servername = &#039;&#039;"},{"required":"no","param":"string $username = &#039;&#039;"},{"required":"no","param":"string $password = &#039;&#039;"},{"required":"no","param":"string $charset = &#039;&#039;"},{"required":"no","param":"string $appname = &#039;&#039;"}],"returns":"resource"},"sybase_unbuffered_query":{"desc":"Send a Sybase query and do not block","params":[{"required":"yes","param":"string $query"},{"required":"yes","param":"resource $link_identifier"},{"required":"no","param":"bool $store_result = &#039;&#039;"}],"returns":"resource"},"tmpfile":{"desc":"Creates a temporary file","params":[],"returns":"resource"},"udm_alloc_agent":{"desc":"Allocate mnoGoSearch session","params":[{"required":"yes","param":"string $dbaddr"},{"required":"no","param":"string $dbmode = &#039;&#039;"}],"returns":"resource"},"udm_alloc_agent_array":{"desc":"Allocate mnoGoSearch session","params":[{"required":"yes","param":"array $databases"}],"returns":"resource"},"udm_find":{"desc":"Perform search","params":[{"required":"yes","param":"resource $agent"},{"required":"yes","param":"string $query"}],"returns":"resource"},"w32api_init_dtype":{"desc":"Creates an instance of the data type typename and fills it with the values passed","params":[{"required":"yes","param":"string $typename"},{"required":"yes","param":"mixed $value"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"resource"},"wddx_packet_start":{"desc":"Starts a new WDDX packet with structure inside it","params":[{"required":"no","param":"string $comment = &#039;&#039;"}],"returns":"resource"},"xmlrpc_server_create":{"desc":"Creates an xmlrpc server","params":[],"returns":"resource"},"xml_parser_create":{"desc":"Create an XML parser","params":[{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"resource"},"xml_parser_create_ns":{"desc":"Create an XML parser with namespace support","params":[{"required":"no","param":"string $encoding = &#039;&#039;"},{"required":"no","param":"string $separator = &#039;:&#039;"}],"returns":"resource"},"xslt_create":{"desc":"Create a new XSLT processor","params":[],"returns":"resource"},"addcslashes":{"desc":"Quote string with slashes in a C style","params":[{"required":"yes","param":"string $str"},{"required":"yes","param":"string $charlist"}],"returns":"string"},"addslashes":{"desc":"Quote string with slashes","params":[{"required":"yes","param":"string $str"}],"returns":"string"},"apache_getenv":{"desc":"Get an Apache subprocess_env variable","params":[{"required":"yes","param":"string $variable"},{"required":"no","param":"bool $walk_to_top = &#039;&#039;"}],"returns":"string"},"apache_get_version":{"desc":"Fetch Apache version","params":[],"returns":"string"},"apache_note":{"desc":"Get and set apache request notes","params":[{"required":"yes","param":"string $note_name"},{"required":"no","param":"string $note_value = &#039;&#039;"}],"returns":"string"},"apc_bin_dump":{"desc":"Get a binary dump of the given files and user variables","params":[{"required":"no","param":"array $files = &#039;&#039;"},{"required":"no","param":"array $user_vars = &#039;&#039;"}],"returns":"string"},"apd_set_pprof_trace":{"desc":"Starts the session debugging","params":[{"required":"no","param":"string $dump_directory = &#039;&#039;"},{"required":"no","param":"string $fragment = &quot;pprof&quot;"}],"returns":"string"},"array_flip":{"desc":"Exchanges all keys with their associated values in an array","params":[{"required":"yes","param":"array $trans"}],"returns":"string"},"array_multisort":{"desc":"Sort multiple or multi-dimensional arrays","params":[{"required":"yes","param":"array $arr"},{"required":"no","param":"mixed $arg = SORT_REGULAR"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"string"},"base64_decode":{"desc":"Decodes data encoded with MIME base64","params":[{"required":"yes","param":"string $data"},{"required":"no","param":"bool $strict = false"}],"returns":"string"},"base64_encode":{"desc":"Encodes data with MIME base64","params":[{"required":"yes","param":"string $data"}],"returns":"string"},"basename":{"desc":"Returns trailing name component of path","params":[{"required":"yes","param":"string $path"},{"required":"no","param":"string $suffix = &#039;&#039;"}],"returns":"string"},"base_convert":{"desc":"Convert a number between arbitrary bases","params":[{"required":"yes","param":"string $number"},{"required":"yes","param":"int $frombase"},{"required":"yes","param":"int $tobase"}],"returns":"string"},"bbcode_parse":{"desc":"Parse a string following a given rule set","params":[{"required":"yes","param":"resource $bbcode_container"},{"required":"yes","param":"string $to_parse"}],"returns":"string"},"bcadd":{"desc":"Add two arbitrary precision numbers","params":[{"required":"yes","param":"string $left_operand"},{"required":"yes","param":"string $right_operand"},{"required":"no","param":"int $scale = &#039;&#039;"}],"returns":"string"},"bcdiv":{"desc":"Divide two arbitrary precision numbers","params":[{"required":"yes","param":"string $left_operand"},{"required":"yes","param":"string $right_operand"},{"required":"no","param":"int $scale = &#039;&#039;"}],"returns":"string"},"bcmod":{"desc":"Get modulus of an arbitrary precision number","params":[{"required":"yes","param":"string $left_operand"},{"required":"yes","param":"string $modulus"}],"returns":"string"},"bcmul":{"desc":"Multiply two arbitrary precision number","params":[{"required":"yes","param":"string $left_operand"},{"required":"yes","param":"string $right_operand"},{"required":"no","param":"int $scale = &#039;&#039;"}],"returns":"string"},"bcpow":{"desc":"Raise an arbitrary precision number to another","params":[{"required":"yes","param":"string $left_operand"},{"required":"yes","param":"string $right_operand"},{"required":"no","param":"int $scale = &#039;&#039;"}],"returns":"string"},"bcpowmod":{"desc":"Raise an arbitrary precision number to another, reduced by a specified modulus","params":[{"required":"yes","param":"string $left_operand"},{"required":"yes","param":"string $right_operand"},{"required":"yes","param":"string $modulus"},{"required":"no","param":"int $scale = &#039;&#039;"}],"returns":"string"},"bcsqrt":{"desc":"Get the square root of an arbitrary precision number","params":[{"required":"yes","param":"string $operand"},{"required":"no","param":"int $scale = &#039;&#039;"}],"returns":"string"},"bcsub":{"desc":"Subtract one arbitrary precision number from another","params":[{"required":"yes","param":"string $left_operand"},{"required":"yes","param":"string $right_operand"},{"required":"no","param":"int $scale = &#039;&#039;"}],"returns":"string"},"bin2hex":{"desc":"Convert binary data into hexadecimal representation","params":[{"required":"yes","param":"string $str"}],"returns":"string"},"bindtextdomain":{"desc":"Sets the path for a domain","params":[{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $directory"}],"returns":"string"},"bind_textdomain_codeset":{"desc":"Specify the character encoding in which the messages from the DOMAIN message catalog will be returned","params":[{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $codeset"}],"returns":"string"},"bson_encode":{"desc":"Serializes a PHP variable into a BSON string","params":[{"required":"yes","param":"mixed $anything"}],"returns":"string"},"bzerrstr":{"desc":"Returns a bzip2 error string","params":[{"required":"yes","param":"resource $bz"}],"returns":"string"},"bzread":{"desc":"Binary safe bzip2 file read","params":[{"required":"yes","param":"resource $bz"},{"required":"no","param":"int $length = 1024"}],"returns":"string"},"cairo_image_surface_get_data":{"desc":"Description","params":[{"required":"yes","param":"CairoImageSurface $surface"}],"returns":"string"},"cairo_ps_level_to_string":{"desc":"Description","params":[{"required":"yes","param":"int $level"}],"returns":"string"},"cairo_status_to_string":{"desc":"Retrieves the current status as string","params":[{"required":"yes","param":"int $status"}],"returns":"string"},"cairo_svg_version_to_string":{"desc":"Description","params":[{"required":"yes","param":"int $version"}],"returns":"string"},"cairo_version_string":{"desc":"Retrieves cairo version as string","params":[],"returns":"string"},"calculhmac":{"desc":"Obtain a hmac key (needs 2 arguments)","params":[{"required":"yes","param":"string $clent"},{"required":"yes","param":"string $data"}],"returns":"string"},"calcul_hmac":{"desc":"Obtain a hmac key (needs 8 arguments)","params":[{"required":"yes","param":"string $clent"},{"required":"yes","param":"string $siretcode"},{"required":"yes","param":"string $price"},{"required":"yes","param":"string $reference"},{"required":"yes","param":"string $validity"},{"required":"yes","param":"string $taxation"},{"required":"yes","param":"string $devise"},{"required":"yes","param":"string $language"}],"returns":"string"},"chr":{"desc":"Return a specific character","params":[{"required":"yes","param":"int $ascii"}],"returns":"string"},"chunk_split":{"desc":"Split a string into smaller chunks","params":[{"required":"yes","param":"string $body"},{"required":"no","param":"int $chunklen = 76"},{"required":"no","param":"string $end = &quot;rn&quot;"}],"returns":"string"},"collator_get_error_message":{"desc":"Get text for collator&#039;s last error code","params":[{"required":"yes","param":"Collator $coll"}],"returns":"string"},"collator_get_locale":{"desc":"Get the locale name of the collator","params":[{"required":"yes","param":"int $type"},{"required":"yes","param":"Collator $coll"}],"returns":"string"},"collator_get_sort_key":{"desc":"Get sorting key for a string","params":[{"required":"yes","param":"string $str"},{"required":"yes","param":"Collator $coll"}],"returns":"string"},"com_create_guid":{"desc":"Generate a globally unique identifier (GUID)","params":[],"returns":"string"},"convert_cyr_string":{"desc":"Convert from one Cyrillic character set to another","params":[{"required":"yes","param":"string $str"},{"required":"yes","param":"string $from"},{"required":"yes","param":"string $to"}],"returns":"string"},"convert_uudecode":{"desc":"Decode a uuencoded string","params":[{"required":"yes","param":"string $data"}],"returns":"string"},"convert_uuencode":{"desc":"Uuencode a string","params":[{"required":"yes","param":"string $data"}],"returns":"string"},"crack_getlastmessage":{"desc":"Returns the message from the last obscure check","params":[],"returns":"string"},"create_function":{"desc":"Create an anonymous (lambda-style) function","params":[{"required":"yes","param":"string $args"},{"required":"yes","param":"string $code"}],"returns":"string"},"crypt":{"desc":"One-way string hashing","params":[{"required":"yes","param":"string $str"},{"required":"no","param":"string $salt = &#039;&#039;"}],"returns":"string"},"ctype_alnum":{"desc":"Check for alphanumeric character(s)","params":[{"required":"yes","param":"string $text"}],"returns":"string"},"ctype_alpha":{"desc":"Check for alphabetic character(s)","params":[{"required":"yes","param":"string $text"}],"returns":"string"},"ctype_cntrl":{"desc":"Check for control character(s)","params":[{"required":"yes","param":"string $text"}],"returns":"string"},"ctype_digit":{"desc":"Check for numeric character(s)","params":[{"required":"yes","param":"string $text"}],"returns":"string"},"ctype_graph":{"desc":"Check for any printable character(s) except space","params":[{"required":"yes","param":"string $text"}],"returns":"string"},"ctype_lower":{"desc":"Check for lowercase character(s)","params":[{"required":"yes","param":"string $text"}],"returns":"string"},"ctype_print":{"desc":"Check for printable character(s)","params":[{"required":"yes","param":"string $text"}],"returns":"string"},"ctype_punct":{"desc":"Check for any printable character which is not whitespace or an alphanumeric character","params":[{"required":"yes","param":"string $text"}],"returns":"string"},"ctype_space":{"desc":"Check for whitespace character(s)","params":[{"required":"yes","param":"string $text"}],"returns":"string"},"ctype_upper":{"desc":"Check for uppercase character(s)","params":[{"required":"yes","param":"string $text"}],"returns":"string"},"ctype_xdigit":{"desc":"Check for character(s) representing a hexadecimal digit","params":[{"required":"yes","param":"string $text"}],"returns":"string"},"cubrid_client_encoding":{"desc":"Return the current CUBRID connection charset","params":[{"required":"no","param":"resource $conn_identifier = &#039;&#039;"}],"returns":"string"},"cubrid_current_oid":{"desc":"Get OID of the current cursor location","params":[{"required":"yes","param":"resource $req_identifier"}],"returns":"string"},"cubrid_db_name":{"desc":"Get db name from results of cubrid_list_dbs","params":[{"required":"yes","param":"array $result"},{"required":"yes","param":"int $index"}],"returns":"string"},"cubrid_error":{"desc":"Get the error message","params":[{"required":"no","param":"resource $connection = &#039;&#039;"}],"returns":"string"},"cubrid_error_msg":{"desc":"Get last error message for the most recent function call","params":[],"returns":"string"},"cubrid_field_flags":{"desc":"Return a string with the flags of the given field offset","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_offset"}],"returns":"string"},"cubrid_field_name":{"desc":"Return the name of the specified field index","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_offset"}],"returns":"string"},"cubrid_field_table":{"desc":"Return the name of the table of the specified field","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_offset"}],"returns":"string"},"cubrid_field_type":{"desc":"Return the type of the column corresponding to the given field offset","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_offset"}],"returns":"string"},"cubrid_get_charset":{"desc":"Return the current CUBRID connection charset","params":[{"required":"yes","param":"resource $conn_identifier"}],"returns":"string"},"cubrid_get_class_name":{"desc":"Get the class name using OID","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $oid"}],"returns":"string"},"cubrid_get_client_info":{"desc":"Return the client library version","params":[],"returns":"string"},"cubrid_get_server_info":{"desc":"Return the CUBRID server version","params":[{"required":"yes","param":"resource $conn_identifier"}],"returns":"string"},"cubrid_insert_id":{"desc":"Return the ID generated for the lastest updated AUTO_INCREMENT column","params":[{"required":"no","param":"resource $conn_identifier = &#039;&#039;"}],"returns":"string"},"cubrid_lob_size":{"desc":"Get BLOB/CLOB data size","params":[{"required":"yes","param":"resource $lob_identifier"}],"returns":"string"},"cubrid_new_glo":{"desc":"Create a glo instance","params":[{"required":"yes","param":"resource $conn_identifier"},{"required":"yes","param":"string $class_name"},{"required":"yes","param":"string $file_name"}],"returns":"string"},"cubrid_real_escape_string":{"desc":"Escape special characters in a string for use in an SQL statement","params":[{"required":"yes","param":"string $unescaped_string"},{"required":"no","param":"resource $conn_identifier = &#039;&#039;"}],"returns":"string"},"cubrid_result":{"desc":"Return the value of a specific field in a specific row","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $row"},{"required":"no","param":"mixed $field = &#039;&#039;"}],"returns":"string"},"cubrid_version":{"desc":"Get the CUBRID PHP module&#039;s version","params":[],"returns":"string"},"curl_error":{"desc":"Return a string containing the last error for the current session","params":[{"required":"yes","param":"resource $ch"}],"returns":"string"},"curl_multi_getcontent":{"desc":"Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set","params":[{"required":"yes","param":"resource $ch"}],"returns":"string"},"date":{"desc":"Format a local time/date","params":[{"required":"yes","param":"string $format"},{"required":"no","param":"int $timestamp = &#039;&#039;"}],"returns":"string"},"datefmt_format":{"desc":"Format the date/time value as a string","params":[{"required":"yes","param":"mixed $value"},{"required":"yes","param":"IntlDateFormatter $fmt"}],"returns":"string"},"datefmt_get_error_message":{"desc":"Get the error text from the last operation.","params":[{"required":"yes","param":"IntlDateFormatter $fmt"}],"returns":"string"},"datefmt_get_locale":{"desc":"Get the locale used by formatter","params":[{"required":"no","param":"int $which = &#039;&#039;"},{"required":"yes","param":"IntlDateFormatter $fmt"}],"returns":"string"},"datefmt_get_pattern":{"desc":"Get the pattern used for the IntlDateFormatter","params":[{"required":"yes","param":"IntlDateFormatter $fmt"}],"returns":"string"},"datefmt_get_timezone_id":{"desc":"Get the timezone-id used for the IntlDateFormatter","params":[{"required":"yes","param":"IntlDateFormatter $fmt"}],"returns":"string"},"date_default_timezone_get":{"desc":"Gets the default timezone used by all date/time functions in a script","params":[],"returns":"string"},"db2_conn_error":{"desc":"Returns a string containing the SQLSTATE returned by the last connection attempt","params":[{"required":"no","param":"resource $connection = &#039;&#039;"}],"returns":"string"},"db2_conn_errormsg":{"desc":"Returns the last connection error message and SQLCODE value","params":[{"required":"no","param":"resource $connection = &#039;&#039;"}],"returns":"string"},"db2_escape_string":{"desc":"Used to escape certain characters","params":[{"required":"yes","param":"string $string_literal"}],"returns":"string"},"db2_field_name":{"desc":"Returns the name of the column in the result set","params":[{"required":"yes","param":"resource $stmt"},{"required":"yes","param":"mixed $column"}],"returns":"string"},"db2_field_type":{"desc":"Returns the data type of the indicated column in a result set","params":[{"required":"yes","param":"resource $stmt"},{"required":"yes","param":"mixed $column"}],"returns":"string"},"db2_get_option":{"desc":"Retrieves an option value for a statement resource or a connection resource","params":[{"required":"yes","param":"resource $resource"},{"required":"yes","param":"string $option"}],"returns":"string"},"db2_last_insert_id":{"desc":"Returns the auto generated ID of the last insert query that successfully executed on this connection","params":[{"required":"yes","param":"resource $resource"}],"returns":"string"},"db2_lob_read":{"desc":"Gets a user defined size of LOB files with each invocation","params":[{"required":"yes","param":"resource $stmt"},{"required":"yes","param":"int $colnum"},{"required":"yes","param":"int $length"}],"returns":"string"},"db2_stmt_error":{"desc":"Returns a string containing the SQLSTATE returned by an SQL statement","params":[{"required":"no","param":"resource $stmt = &#039;&#039;"}],"returns":"string"},"db2_stmt_errormsg":{"desc":"Returns a string containing the last SQL statement error message","params":[{"required":"no","param":"resource $stmt = &#039;&#039;"}],"returns":"string"},"dba_fetch":{"desc":"Fetch data specified by key","params":[{"required":"yes","param":"string $key"},{"required":"yes","param":"resource $handle"},{"required":"yes","param":"int $skip"}],"returns":"string"},"dba_firstkey":{"desc":"Fetch first key","params":[{"required":"yes","param":"resource $handle"}],"returns":"string"},"dba_nextkey":{"desc":"Fetch next key","params":[{"required":"yes","param":"resource $handle"}],"returns":"string"},"dbplus_chdir":{"desc":"Get/Set database virtual current directory","params":[{"required":"no","param":"string $newdir = &#039;&#039;"}],"returns":"string"},"dbplus_errcode":{"desc":"Get error string for given errorcode or last error","params":[{"required":"no","param":"int $errno = &#039;&#039;"}],"returns":"string"},"dbplus_tcl":{"desc":"Execute TCL code on server side","params":[{"required":"yes","param":"int $sid"},{"required":"yes","param":"string $script"}],"returns":"string"},"dbx_error":{"desc":"Report the error message of the latest function call in the module","params":[{"required":"yes","param":"object $link_identifier"}],"returns":"string"},"dbx_escape_string":{"desc":"Escape a string so it can safely be used in an sql-statement","params":[{"required":"yes","param":"object $link_identifier"},{"required":"yes","param":"string $text"}],"returns":"string"},"dcgettext":{"desc":"Overrides the domain for a single lookup","params":[{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $message"},{"required":"yes","param":"int $category"}],"returns":"string"},"dcngettext":{"desc":"Plural version of dcgettext","params":[{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $msgid1"},{"required":"yes","param":"string $msgid2"},{"required":"yes","param":"int $n"},{"required":"yes","param":"int $category"}],"returns":"string"},"decbin":{"desc":"Decimal to binary","params":[{"required":"yes","param":"int $number"}],"returns":"string"},"dechex":{"desc":"Decimal to hexadecimal","params":[{"required":"yes","param":"int $number"}],"returns":"string"},"decoct":{"desc":"Decimal to octal","params":[{"required":"yes","param":"int $number"}],"returns":"string"},"dgettext":{"desc":"Override the current domain","params":[{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $message"}],"returns":"string"},"dio_read":{"desc":"Reads bytes from a file descriptor","params":[{"required":"yes","param":"resource $fd"},{"required":"no","param":"int $len = 1024"}],"returns":"string"},"dirname":{"desc":"Returns parent directory&#039;s path","params":[{"required":"yes","param":"string $path"}],"returns":"string"},"dngettext":{"desc":"Plural version of dgettext","params":[{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $msgid1"},{"required":"yes","param":"string $msgid2"},{"required":"yes","param":"int $n"}],"returns":"string"},"domxml_version":{"desc":"Gets the XML library version","params":[],"returns":"string"},"enchant_broker_get_error":{"desc":"Returns the last error of the broker","params":[{"required":"yes","param":"resource $broker"}],"returns":"string"},"enchant_dict_get_error":{"desc":"Returns the last error of the current spelling-session","params":[{"required":"yes","param":"resource $dict"}],"returns":"string"},"eregi_replace":{"desc":"Replace regular expression case insensitive","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"string $replacement"},{"required":"yes","param":"string $string"}],"returns":"string"},"ereg_replace":{"desc":"Replace regular expression","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"string $replacement"},{"required":"yes","param":"string $string"}],"returns":"string"},"escapeshellarg":{"desc":"Escape a string to be used as a shell argument","params":[{"required":"yes","param":"string $arg"}],"returns":"string"},"escapeshellcmd":{"desc":"Escape shell metacharacters","params":[{"required":"yes","param":"string $command"}],"returns":"string"},"event_buffer_read":{"desc":"Read data from a buffered event","params":[{"required":"yes","param":"resource $bevent"},{"required":"yes","param":"int $data_size"}],"returns":"string"},"exec":{"desc":"Execute an external program","params":[{"required":"yes","param":"string $command"},{"required":"no","param":"array $output = &#039;&#039;"},{"required":"no","param":"int $return_var = &#039;&#039;"}],"returns":"string"},"exif_tagname":{"desc":"Get the header name for an index","params":[{"required":"yes","param":"int $index"}],"returns":"string"},"exif_thumbnail":{"desc":"Retrieve the embedded thumbnail of a TIFF or JPEG image","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"int $width = &#039;&#039;"},{"required":"no","param":"int $height = &#039;&#039;"},{"required":"no","param":"int $imagetype = &#039;&#039;"}],"returns":"string"},"fbsql_create_blob":{"desc":"Create a BLOB","params":[{"required":"yes","param":"string $blob_data"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"string"},"fbsql_create_clob":{"desc":"Create a CLOB","params":[{"required":"yes","param":"string $clob_data"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"string"},"fbsql_database":{"desc":"Get or set the database name used with a connection","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"no","param":"string $database = &#039;&#039;"}],"returns":"string"},"fbsql_database_password":{"desc":"Sets or retrieves the password for a FrontBase database","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"no","param":"string $database_password = &#039;&#039;"}],"returns":"string"},"fbsql_error":{"desc":"Returns the error message from previous operation","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"string"},"fbsql_field_flags":{"desc":"Get the flags associated with the specified field in a result","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $field_offset = &#039;&#039;"}],"returns":"string"},"fbsql_field_name":{"desc":"Get the name of the specified field in a result","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $field_index = &#039;&#039;"}],"returns":"string"},"fbsql_field_table":{"desc":"Get name of the table the specified field is in","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $field_offset = &#039;&#039;"}],"returns":"string"},"fbsql_field_type":{"desc":"Get the type of the specified field in a result","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $field_offset = &#039;&#039;"}],"returns":"string"},"fbsql_hostname":{"desc":"Get or set the host name used with a connection","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"no","param":"string $host_name = &#039;&#039;"}],"returns":"string"},"fbsql_password":{"desc":"Get or set the user password used with a connection","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"no","param":"string $password = &#039;&#039;"}],"returns":"string"},"fbsql_read_blob":{"desc":"Read a BLOB from the database","params":[{"required":"yes","param":"string $blob_handle"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"string"},"fbsql_read_clob":{"desc":"Read a CLOB from the database","params":[{"required":"yes","param":"string $clob_handle"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"string"},"fbsql_table_name":{"desc":"Get table name of field","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $index"}],"returns":"string"},"fbsql_username":{"desc":"Get or set the username for the connection","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"no","param":"string $username = &#039;&#039;"}],"returns":"string"},"fdf_error":{"desc":"Return error description for FDF error code","params":[{"required":"no","param":"int $error_code = -1"}],"returns":"string"},"fdf_get_encoding":{"desc":"Get the value of the /Encoding key","params":[{"required":"yes","param":"resource $fdf_document"}],"returns":"string"},"fdf_get_file":{"desc":"Get the value of the /F key","params":[{"required":"yes","param":"resource $fdf_document"}],"returns":"string"},"fdf_get_status":{"desc":"Get the value of the /STATUS key","params":[{"required":"yes","param":"resource $fdf_document"}],"returns":"string"},"fdf_get_version":{"desc":"Gets version number for FDF API or file","params":[{"required":"no","param":"resource $fdf_document = &#039;&#039;"}],"returns":"string"},"fdf_next_field_name":{"desc":"Get the next field name","params":[{"required":"yes","param":"resource $fdf_document"},{"required":"no","param":"string $fieldname = &#039;&#039;"}],"returns":"string"},"fdf_save_string":{"desc":"Returns the FDF document as a string","params":[{"required":"yes","param":"resource $fdf_document"}],"returns":"string"},"fgetc":{"desc":"Gets character from file pointer","params":[{"required":"yes","param":"resource $handle"}],"returns":"string"},"fgets":{"desc":"Gets line from file pointer","params":[{"required":"yes","param":"resource $handle"},{"required":"no","param":"int $length = &#039;&#039;"}],"returns":"string"},"fgetss":{"desc":"Gets line from file pointer and strip HTML tags","params":[{"required":"yes","param":"resource $handle"},{"required":"no","param":"int $length = &#039;&#039;"},{"required":"no","param":"string $allowable_tags = &#039;&#039;"}],"returns":"string"},"filepro_fieldname":{"desc":"Gets the name of a field","params":[{"required":"yes","param":"int $field_number"}],"returns":"string"},"filepro_fieldtype":{"desc":"Gets the type of a field","params":[{"required":"yes","param":"int $field_number"}],"returns":"string"},"filepro_retrieve":{"desc":"Retrieves data from a filePro database","params":[{"required":"yes","param":"int $row_number"},{"required":"yes","param":"int $field_number"}],"returns":"string"},"filetype":{"desc":"Gets file type","params":[{"required":"yes","param":"string $filename"}],"returns":"string"},"file_get_contents":{"desc":"Reads entire file into a string","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"bool $use_include_path = false"},{"required":"no","param":"resource $context = &#039;&#039;"},{"required":"no","param":"int $offset = -1"},{"required":"no","param":"int $maxlen = &#039;&#039;"}],"returns":"string"},"finfo_buffer":{"desc":"Return information about a string buffer","params":[{"required":"yes","param":"resource $finfo"},{"required":"yes","param":"string $string"},{"required":"no","param":"int $options = FILEINFO_NONE"},{"required":"no","param":"resource $context = &#039;&#039;"}],"returns":"string"},"finfo_file":{"desc":"Return information about a file","params":[{"required":"yes","param":"resource $finfo"},{"required":"yes","param":"string $file_name"},{"required":"no","param":"int $options = FILEINFO_NONE"},{"required":"no","param":"resource $context = &#039;&#039;"}],"returns":"string"},"fread":{"desc":"Binary-safe file read","params":[{"required":"yes","param":"resource $handle"},{"required":"yes","param":"int $length"}],"returns":"string"},"fribidi_log2vis":{"desc":"Convert a logical string to a visual one","params":[{"required":"yes","param":"string $str"},{"required":"yes","param":"string $direction"},{"required":"yes","param":"int $charset"}],"returns":"string"},"ftp_mkdir":{"desc":"Creates a directory","params":[{"required":"yes","param":"resource $ftp_stream"},{"required":"yes","param":"string $directory"}],"returns":"string"},"ftp_pwd":{"desc":"Returns the current directory name","params":[{"required":"yes","param":"resource $ftp_stream"}],"returns":"string"},"ftp_systype":{"desc":"Returns the system type identifier of the remote FTP server","params":[{"required":"yes","param":"resource $ftp_stream"}],"returns":"string"},"gearman_job_handle":{"desc":"Get the job handle","params":[],"returns":"string"},"geoip_continent_code_by_name":{"desc":"Get the two letter continent code","params":[{"required":"yes","param":"string $hostname"}],"returns":"string"},"geoip_country_code3_by_name":{"desc":"Get the three letter country code","params":[{"required":"yes","param":"string $hostname"}],"returns":"string"},"geoip_country_code_by_name":{"desc":"Get the two letter country code","params":[{"required":"yes","param":"string $hostname"}],"returns":"string"},"geoip_country_name_by_name":{"desc":"Get the full country name","params":[{"required":"yes","param":"string $hostname"}],"returns":"string"},"geoip_database_info":{"desc":"Get GeoIP Database information","params":[{"required":"no","param":"int $database = GEOIP_COUNTRY_EDITION"}],"returns":"string"},"geoip_db_filename":{"desc":"Returns the filename of the corresponding GeoIP Database","params":[{"required":"yes","param":"int $database"}],"returns":"string"},"geoip_isp_by_name":{"desc":"Get the Internet Service Provider (ISP) name","params":[{"required":"yes","param":"string $hostname"}],"returns":"string"},"geoip_org_by_name":{"desc":"Get the organization name","params":[{"required":"yes","param":"string $hostname"}],"returns":"string"},"geoip_region_name_by_code":{"desc":"Returns the region name for some country and region code combo","params":[{"required":"yes","param":"string $country_code"},{"required":"yes","param":"string $region_code"}],"returns":"string"},"geoip_time_zone_by_country_and_region":{"desc":"Returns the time zone for some country and region code combo","params":[{"required":"yes","param":"string $country_code"},{"required":"no","param":"string $region_code = &#039;&#039;"}],"returns":"string"},"getcwd":{"desc":"Gets the current working directory","params":[],"returns":"string"},"getenv":{"desc":"Gets the value of an environment variable","params":[{"required":"yes","param":"string $varname"}],"returns":"string"},"gethostbyaddr":{"desc":"Get the Internet host name corresponding to a given IP address","params":[{"required":"yes","param":"string $ip_address"}],"returns":"string"},"gethostbyname":{"desc":"Get the IPv4 address corresponding to a given Internet host name","params":[{"required":"yes","param":"string $hostname"}],"returns":"string"},"gethostname":{"desc":"Gets the host name","params":[],"returns":"string"},"getprotobynumber":{"desc":"Get protocol name associated with protocol number","params":[{"required":"yes","param":"int $number"}],"returns":"string"},"getservbyport":{"desc":"Get Internet service which corresponds to port and protocol","params":[{"required":"yes","param":"int $port"},{"required":"yes","param":"string $protocol"}],"returns":"string"},"gettext":{"desc":"Lookup a message in the current domain","params":[{"required":"yes","param":"string $message"}],"returns":"string"},"gettype":{"desc":"Get the type of a variable","params":[{"required":"yes","param":"mixed $var"}],"returns":"string"},"get_called_class":{"desc":"the &quot;Late Static Binding&quot; class name","params":[],"returns":"string"},"get_cfg_var":{"desc":"Gets the value of a PHP configuration option","params":[{"required":"yes","param":"string $option"}],"returns":"string"},"get_class":{"desc":"Returns the name of the class of an object","params":[{"required":"no","param":"object $object = &#039;&#039;"}],"returns":"string"},"get_current_user":{"desc":"Gets the name of the owner of the current PHP script","params":[],"returns":"string"},"get_include_path":{"desc":"Gets the current include_path configuration option","params":[],"returns":"string"},"get_parent_class":{"desc":"Retrieves the parent class name for object or class","params":[{"required":"no","param":"mixed $object = &#039;&#039;"}],"returns":"string"},"get_resource_type":{"desc":"Returns the resource type","params":[{"required":"yes","param":"resource $handle"}],"returns":"string"},"gmdate":{"desc":"Format a GMT/UTC date/time","params":[{"required":"yes","param":"string $format"},{"required":"no","param":"int $timestamp = &#039;&#039;"}],"returns":"string"},"gmp_strval":{"desc":"Convert GMP number to string","params":[{"required":"yes","param":"resource $gmpnumber"},{"required":"no","param":"int $base = &#039;&#039;"}],"returns":"string"},"gmstrftime":{"desc":"Format a GMT/UTC time/date according to locale settings","params":[{"required":"yes","param":"string $format"},{"required":"no","param":"int $timestamp = time("}],"returns":"string"},"gnupg_decrypt":{"desc":"Decrypts a given text","params":[{"required":"yes","param":"resource $identifier"},{"required":"yes","param":"string $text"}],"returns":"string"},"gnupg_encrypt":{"desc":"Encrypts a given text","params":[{"required":"yes","param":"resource $identifier"},{"required":"yes","param":"string $plaintext"}],"returns":"string"},"gnupg_encryptsign":{"desc":"Encrypts and signs a given text","params":[{"required":"yes","param":"resource $identifier"},{"required":"yes","param":"string $plaintext"}],"returns":"string"},"gnupg_export":{"desc":"Exports a key","params":[{"required":"yes","param":"resource $identifier"},{"required":"yes","param":"string $fingerprint"}],"returns":"string"},"gnupg_geterror":{"desc":"Returns the errortext, if a function fails","params":[{"required":"yes","param":"resource $identifier"}],"returns":"string"},"gnupg_sign":{"desc":"Signs a given text","params":[{"required":"yes","param":"resource $identifier"},{"required":"yes","param":"string $plaintext"}],"returns":"string"},"grapheme_extract":{"desc":"Function to extract a sequence of default grapheme clusters from a text buffer, which must be encoded in UTF-8.","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"int $size"},{"required":"no","param":"int $extract_type = &#039;&#039;"},{"required":"no","param":"int $start = &#039;&#039;"},{"required":"no","param":"int $next = &#039;&#039;"}],"returns":"string"},"grapheme_stristr":{"desc":"Returns part of haystack string from the first occurrence of case-insensitive needle to the end of haystack.","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"bool $before_needle = false"}],"returns":"string"},"grapheme_strstr":{"desc":"Returns part of haystack string from the first occurrence of needle to the end of haystack.","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"bool $before_needle = false"}],"returns":"string"},"gupnp_context_get_host_ip":{"desc":"Get the IP address","params":[{"required":"yes","param":"resource $context"}],"returns":"string"},"gupnp_root_device_get_relative_location":{"desc":"Get the relative location of root device.","params":[{"required":"yes","param":"resource $root_device"}],"returns":"string"},"gzcompress":{"desc":"Compress a string","params":[{"required":"yes","param":"string $data"},{"required":"no","param":"int $level = -1"}],"returns":"string"},"gzdecode":{"desc":"Decodes a gzip compressed string","params":[{"required":"yes","param":"string $data"},{"required":"no","param":"int $length = &#039;&#039;"}],"returns":"string"},"gzdeflate":{"desc":"Deflate a string","params":[{"required":"yes","param":"string $data"},{"required":"no","param":"int $level = -1"}],"returns":"string"},"gzencode":{"desc":"Create a gzip compressed string","params":[{"required":"yes","param":"string $data"},{"required":"no","param":"int $level = -1"},{"required":"no","param":"int $encoding_mode = FORCE_GZIP"}],"returns":"string"},"gzgetc":{"desc":"Get character from gz-file pointer","params":[{"required":"yes","param":"resource $zp"}],"returns":"string"},"gzgets":{"desc":"Get line from file pointer","params":[{"required":"yes","param":"resource $zp"},{"required":"yes","param":"int $length"}],"returns":"string"},"gzgetss":{"desc":"Get line from gz-file pointer and strip HTML tags","params":[{"required":"yes","param":"resource $zp"},{"required":"yes","param":"int $length"},{"required":"no","param":"string $allowable_tags = &#039;&#039;"}],"returns":"string"},"gzinflate":{"desc":"Inflate a deflated string","params":[{"required":"yes","param":"string $data"},{"required":"no","param":"int $length = &#039;&#039;"}],"returns":"string"},"gzread":{"desc":"Binary-safe gz-file read","params":[{"required":"yes","param":"resource $zp"},{"required":"yes","param":"int $length"}],"returns":"string"},"gzuncompress":{"desc":"Uncompress a compressed string","params":[{"required":"yes","param":"string $data"},{"required":"no","param":"int $length = &#039;&#039;"}],"returns":"string"},"hash":{"desc":"Generate a hash value (message digest)","params":[{"required":"yes","param":"string $algo"},{"required":"yes","param":"string $data"},{"required":"no","param":"bool $raw_output = false"}],"returns":"string"},"hash_file":{"desc":"Generate a hash value using the contents of a given file","params":[{"required":"yes","param":"string $algo"},{"required":"yes","param":"string $filename"},{"required":"no","param":"bool $raw_output = false"}],"returns":"string"},"hash_final":{"desc":"Finalize an incremental hash and return resulting digest","params":[{"required":"yes","param":"resource $context"},{"required":"no","param":"bool $raw_output = false"}],"returns":"string"},"hash_hmac":{"desc":"Generate a keyed hash value using the HMAC method","params":[{"required":"yes","param":"string $algo"},{"required":"yes","param":"string $data"},{"required":"yes","param":"string $key"},{"required":"no","param":"bool $raw_output = false"}],"returns":"string"},"hash_hmac_file":{"desc":"Generate a keyed hash value using the HMAC method and the contents of a given file","params":[{"required":"yes","param":"string $algo"},{"required":"yes","param":"string $filename"},{"required":"yes","param":"string $key"},{"required":"no","param":"bool $raw_output = false"}],"returns":"string"},"hebrev":{"desc":"Convert logical Hebrew text to visual text","params":[{"required":"yes","param":"string $hebrew_text"},{"required":"no","param":"int $max_chars_per_line = &#039;&#039;"}],"returns":"string"},"hebrevc":{"desc":"Convert logical Hebrew text to visual text with newline conversion","params":[{"required":"yes","param":"string $hebrew_text"},{"required":"no","param":"int $max_chars_per_line = &#039;&#039;"}],"returns":"string"},"htmlentities":{"desc":"Convert all applicable characters to HTML entities","params":[{"required":"yes","param":"string $string"},{"required":"no","param":"int $flags = ENT_COMPAT"},{"required":"no","param":"string $charset = &#039;&#039;"},{"required":"no","param":"bool $double_encode = true"}],"returns":"string"},"htmlspecialchars":{"desc":"Convert special characters to HTML entities","params":[{"required":"yes","param":"string $string"},{"required":"no","param":"int $flags = ENT_COMPAT"},{"required":"no","param":"string $charset = &#039;&#039;"},{"required":"no","param":"bool $double_encode = true"}],"returns":"string"},"htmlspecialchars_decode":{"desc":"Convert special HTML entities back to characters","params":[{"required":"yes","param":"string $string"},{"required":"no","param":"int $quote_style = ENT_COMPAT"}],"returns":"string"},"html_entity_decode":{"desc":"Convert all HTML entities to their applicable characters","params":[{"required":"yes","param":"string $string"},{"required":"no","param":"int $quote_style = ENT_COMPAT"},{"required":"no","param":"string $charset = &#039;UTF-8&#039;"}],"returns":"string"},"http_build_cookie":{"desc":"Build cookie string","params":[{"required":"yes","param":"array $cookie"}],"returns":"string"},"http_build_query":{"desc":"Generate URL-encoded query string","params":[{"required":"yes","param":"mixed $query_data"},{"required":"no","param":"string $numeric_prefix = &#039;&#039;"},{"required":"no","param":"string $arg_separator = &#039;&#039;"},{"required":"no","param":"int $enc_type = &#039;&#039;"}],"returns":"string"},"http_build_str":{"desc":"Build query string","params":[{"required":"yes","param":"array $query"},{"required":"no","param":"string $prefix = &#039;&#039;"},{"required":"no","param":"string $arg_separator = ini_get(&quot;arg_separator.output&quot;"}],"returns":"string"},"http_build_url":{"desc":"Build a URL","params":[{"required":"no","param":"mixed $url = &#039;&#039;"},{"required":"no","param":"mixed $parts = &#039;&#039;"},{"required":"no","param":"int $flags = HTTP_URL_REPLACE"},{"required":"no","param":"array $new_url = &#039;&#039;"}],"returns":"string"},"http_chunked_decode":{"desc":"Decode chunked-encoded data","params":[{"required":"yes","param":"string $encoded"}],"returns":"string"},"http_date":{"desc":"Compose HTTP RFC compliant date","params":[{"required":"no","param":"int $timestamp = &#039;&#039;"}],"returns":"string"},"http_deflate":{"desc":"Deflate data","params":[{"required":"yes","param":"string $data"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"string"},"http_get":{"desc":"Perform GET request","params":[{"required":"yes","param":"string $url"},{"required":"no","param":"array $options = &#039;&#039;"},{"required":"no","param":"array $info = &#039;&#039;"}],"returns":"string"},"http_get_request_body":{"desc":"Get request body as string","params":[],"returns":"string"},"http_head":{"desc":"Perform HEAD request","params":[{"required":"yes","param":"string $url"},{"required":"no","param":"array $options = &#039;&#039;"},{"required":"no","param":"array $info = &#039;&#039;"}],"returns":"string"},"http_inflate":{"desc":"Inflate data","params":[{"required":"yes","param":"string $data"}],"returns":"string"},"http_negotiate_charset":{"desc":"Negotiate clients preferred character set","params":[{"required":"yes","param":"array $supported"},{"required":"no","param":"array $result = &#039;&#039;"}],"returns":"string"},"http_negotiate_content_type":{"desc":"Negotiate clients preferred content type","params":[{"required":"yes","param":"array $supported"},{"required":"no","param":"array $result = &#039;&#039;"}],"returns":"string"},"http_negotiate_language":{"desc":"Negotiate clients preferred language","params":[{"required":"yes","param":"array $supported"},{"required":"no","param":"array $result = &#039;&#039;"}],"returns":"string"},"http_persistent_handles_clean":{"desc":"Clean up persistent handles","params":[{"required":"no","param":"string $ident = &#039;&#039;"}],"returns":"string"},"http_persistent_handles_ident":{"desc":"Get/set ident of persistent handles","params":[{"required":"no","param":"string $ident = &#039;&#039;"}],"returns":"string"},"http_post_data":{"desc":"Perform POST request with pre-encoded data","params":[{"required":"yes","param":"string $url"},{"required":"yes","param":"string $data"},{"required":"no","param":"array $options = &#039;&#039;"},{"required":"no","param":"array $info = &#039;&#039;"}],"returns":"string"},"http_post_fields":{"desc":"Perform POST request with data to be encoded","params":[{"required":"yes","param":"string $url"},{"required":"yes","param":"array $data"},{"required":"no","param":"array $files = &#039;&#039;"},{"required":"no","param":"array $options = &#039;&#039;"},{"required":"no","param":"array $info = &#039;&#039;"}],"returns":"string"},"http_put_data":{"desc":"Perform PUT request with data","params":[{"required":"yes","param":"string $url"},{"required":"yes","param":"string $data"},{"required":"no","param":"array $options = &#039;&#039;"},{"required":"no","param":"array $info = &#039;&#039;"}],"returns":"string"},"http_put_file":{"desc":"Perform PUT request with file","params":[{"required":"yes","param":"string $url"},{"required":"yes","param":"string $file"},{"required":"no","param":"array $options = &#039;&#039;"},{"required":"no","param":"array $info = &#039;&#039;"}],"returns":"string"},"http_put_stream":{"desc":"Perform PUT request with stream","params":[{"required":"yes","param":"string $url"},{"required":"yes","param":"resource $stream"},{"required":"no","param":"array $options = &#039;&#039;"},{"required":"no","param":"array $info = &#039;&#039;"}],"returns":"string"},"http_request":{"desc":"Perform custom request","params":[{"required":"yes","param":"int $method"},{"required":"yes","param":"string $url"},{"required":"no","param":"string $body = &#039;&#039;"},{"required":"no","param":"array $options = &#039;&#039;"},{"required":"no","param":"array $info = &#039;&#039;"}],"returns":"string"},"http_request_body_encode":{"desc":"Encode request body","params":[{"required":"yes","param":"array $fields"},{"required":"yes","param":"array $files"}],"returns":"string"},"http_request_method_name":{"desc":"Get request method name","params":[{"required":"yes","param":"int $method"}],"returns":"string"},"hw_Array2Objrec":{"desc":"Convert attributes from object array to object record","params":[{"required":"yes","param":"array $object_array"}],"returns":"string"},"hw_DocByAnchorObj":{"desc":"Object record object belonging to anchor","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $anchorID"}],"returns":"string"},"hw_Document_Attributes":{"desc":"Object record of hw_document","params":[{"required":"yes","param":"int $hw_document"}],"returns":"string"},"hw_Document_BodyTag":{"desc":"Body tag of hw_document","params":[{"required":"yes","param":"int $hw_document"},{"required":"no","param":"string $prefix = &#039;&#039;"}],"returns":"string"},"hw_Document_Content":{"desc":"Returns content of hw_document","params":[{"required":"yes","param":"int $hw_document"}],"returns":"string"},"hw_dummy":{"desc":"Hyperwave dummy function","params":[{"required":"yes","param":"int $link"},{"required":"yes","param":"int $id"},{"required":"yes","param":"int $msgid"}],"returns":"string"},"hw_ErrorMsg":{"desc":"Returns error message","params":[{"required":"yes","param":"int $connection"}],"returns":"string"},"hw_GetAndLock":{"desc":"Return object record and lock object","params":[{"required":"yes","param":"int $connection"},{"required":"yes","param":"int $objectID"}],"returns":"string"},"hw_getrellink":{"desc":"Get link from source to dest relative to rootid","params":[{"required":"yes","param":"int $link"},{"required":"yes","param":"int $rootid"},{"required":"yes","param":"int $sourceid"},{"required":"yes","param":"int $destid"}],"returns":"string"},"hw_getusername":{"desc":"Name of currently logged in user","params":[{"required":"yes","param":"int $connection"}],"returns":"string"},"hw_Identify":{"desc":"Identifies as user","params":[{"required":"yes","param":"int $link"},{"required":"yes","param":"string $username"},{"required":"yes","param":"string $password"}],"returns":"string"},"hw_Info":{"desc":"Info about connection","params":[{"required":"yes","param":"int $connection"}],"returns":"string"},"hw_stat":{"desc":"Returns status string","params":[{"required":"yes","param":"int $link"}],"returns":"string"},"ibase_blob_get":{"desc":"Get len bytes data from open blob","params":[{"required":"yes","param":"resource $blob_handle"},{"required":"yes","param":"int $len"}],"returns":"string"},"ibase_blob_import":{"desc":"Create blob, copy file in it, and close it","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"resource $file_handle"}],"returns":"string"},"ibase_db_info":{"desc":"Request statistics about a database","params":[{"required":"yes","param":"resource $service_handle"},{"required":"yes","param":"string $db"},{"required":"yes","param":"int $action"},{"required":"no","param":"int $argument = &#039;&#039;"}],"returns":"string"},"ibase_errmsg":{"desc":"Return error messages","params":[],"returns":"string"},"ibase_server_info":{"desc":"Request information about a database server","params":[{"required":"yes","param":"resource $service_handle"},{"required":"yes","param":"int $action"}],"returns":"string"},"ibase_wait_event":{"desc":"Wait for an event to be posted by the database","params":[{"required":"yes","param":"string $event_name1"},{"required":"no","param":"string $event_name2 = &#039;&#039;"},{"required":"no","param":"string $... = &#039;&#039;"},{"required":"yes","param":"resource $connection"}],"returns":"string"},"iconv":{"desc":"Convert string to requested character encoding","params":[{"required":"yes","param":"string $in_charset"},{"required":"yes","param":"string $out_charset"},{"required":"yes","param":"string $str"}],"returns":"string"},"iconv_mime_decode":{"desc":"Decodes a MIME header field","params":[{"required":"yes","param":"string $encoded_header"},{"required":"no","param":"int $mode = &#039;&#039;"},{"required":"no","param":"string $charset = ini_get(&quot;iconv.internal_encoding&quot;"}],"returns":"string"},"iconv_mime_encode":{"desc":"Composes a MIME header field","params":[{"required":"yes","param":"string $field_name"},{"required":"yes","param":"string $field_value"},{"required":"no","param":"array $preferences = &#039;&#039;"}],"returns":"string"},"iconv_substr":{"desc":"Cut out part of a string","params":[{"required":"yes","param":"string $str"},{"required":"yes","param":"int $offset"},{"required":"no","param":"int $length = iconv_strlen($str"},{"required":"yes","param":"$charset)"},{"required":"no","param":"string $charset = ini_get(&quot;iconv.internal_encoding&quot;"}],"returns":"string"},"id3_get_frame_long_name":{"desc":"Get the long name of an ID3v2 frame","params":[{"required":"yes","param":"string $frameId"}],"returns":"string"},"id3_get_frame_short_name":{"desc":"Get the short name of an ID3v2 frame","params":[{"required":"yes","param":"string $frameId"}],"returns":"string"},"id3_get_genre_name":{"desc":"Get the name for a genre id","params":[{"required":"yes","param":"int $genre_id"}],"returns":"string"},"idn_to_ascii":{"desc":"Convert domain name to IDNA ASCII form.","params":[{"required":"yes","param":"string $domain"},{"required":"no","param":"int $options = &#039;&#039;"}],"returns":"string"},"idn_to_utf8":{"desc":"Convert domain name from IDNA ASCII to Unicode.","params":[{"required":"yes","param":"string $domain"},{"required":"no","param":"int $options = &#039;&#039;"}],"returns":"string"},"ifxus_read_slob":{"desc":"Reads nbytes of the slob object","params":[{"required":"yes","param":"int $bid"},{"required":"yes","param":"int $nbytes"}],"returns":"string"},"ifx_error":{"desc":"Returns error code of last Informix call","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"string"},"ifx_errormsg":{"desc":"Returns error message of last Informix call","params":[{"required":"no","param":"int $errorcode = &#039;&#039;"}],"returns":"string"},"ifx_get_blob":{"desc":"Return the content of a blob object","params":[{"required":"yes","param":"int $bid"}],"returns":"string"},"ifx_get_char":{"desc":"Return the content of the char object","params":[{"required":"yes","param":"int $bid"}],"returns":"string"},"iis_get_script_map":{"desc":"Gets script mapping on a virtual directory for a specific extension","params":[{"required":"yes","param":"int $server_instance"},{"required":"yes","param":"string $virtual_path"},{"required":"yes","param":"string $script_extension"}],"returns":"string"},"image_type_to_extension":{"desc":"Get file extension for image type","params":[{"required":"yes","param":"int $imagetype"},{"required":"no","param":"bool $include_dot = &#039;&#039;"}],"returns":"string"},"image_type_to_mime_type":{"desc":"Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype","params":[{"required":"yes","param":"int $imagetype"}],"returns":"string"},"imap_8bit":{"desc":"Convert an 8bit string to a quoted-printable string","params":[{"required":"yes","param":"string $string"}],"returns":"string"},"imap_base64":{"desc":"Decode BASE64 encoded text","params":[{"required":"yes","param":"string $text"}],"returns":"string"},"imap_binary":{"desc":"Convert an 8bit string to a base64 string","params":[{"required":"yes","param":"string $string"}],"returns":"string"},"imap_body":{"desc":"Read the message body","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"int $msg_number"},{"required":"no","param":"int $options = &#039;&#039;"}],"returns":"string"},"imap_fetchbody":{"desc":"Fetch a particular section of the body of the message","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"int $msg_number"},{"required":"yes","param":"string $section"},{"required":"no","param":"int $options = &#039;&#039;"}],"returns":"string"},"imap_fetchheader":{"desc":"Returns header for a message","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"int $msg_number"},{"required":"no","param":"int $options = &#039;&#039;"}],"returns":"string"},"imap_fetchmime":{"desc":"Fetch MIME headers for a particular section of the message","params":[{"required":"yes","param":"resource $imap_stream"},{"required":"yes","param":"int $msg_number"},{"required":"yes","param":"string $section"},{"required":"no","param":"int $options = &#039;&#039;"}],"returns":"string"},"imap_last_error":{"desc":"Gets the last IMAP error that occurred during this page request","params":[],"returns":"string"},"imap_mail_compose":{"desc":"Create a MIME message based on given envelope and body sections","params":[{"required":"yes","param":"array $envelope"},{"required":"yes","param":"array $body"}],"returns":"string"},"imap_qprint":{"desc":"Convert a quoted-printable string to an 8 bit string","params":[{"required":"yes","param":"string $string"}],"returns":"string"},"imap_rfc822_write_address":{"desc":"Returns a properly formatted email address given the mailbox, host, and personal info","params":[{"required":"yes","param":"string $mailbox"},{"required":"yes","param":"string $host"},{"required":"yes","param":"string $personal"}],"returns":"string"},"imap_utf7_decode":{"desc":"Decodes a modified UTF-7 encoded string","params":[{"required":"yes","param":"string $text"}],"returns":"string"},"imap_utf7_encode":{"desc":"Converts ISO-8859-1 string to modified UTF-7 text","params":[{"required":"yes","param":"string $data"}],"returns":"string"},"imap_utf8":{"desc":"Converts MIME-encoded text to UTF-8","params":[{"required":"yes","param":"string $mime_encoded_text"}],"returns":"string"},"implode":{"desc":"Join array elements with a string","params":[{"required":"yes","param":"string $glue"},{"required":"yes","param":"array $pieces"}],"returns":"string"},"inet_ntop":{"desc":"Converts a packed internet address to a human readable representation","params":[{"required":"yes","param":"string $in_addr"}],"returns":"string"},"inet_pton":{"desc":"Converts a human readable IP address to its packed in_addr representation","params":[{"required":"yes","param":"string $address"}],"returns":"string"},"ingres_charset":{"desc":"Returns the installation character set","params":[{"required":"yes","param":"resource $link"}],"returns":"string"},"ingres_cursor":{"desc":"Get a cursor name for a given result resource","params":[{"required":"yes","param":"resource $result"}],"returns":"string"},"ingres_error":{"desc":"Get a meaningful error message for the last error generated","params":[{"required":"no","param":"resource $link = &#039;&#039;"}],"returns":"string"},"ingres_errsqlstate":{"desc":"Get the last SQLSTATE error code generated","params":[{"required":"no","param":"resource $link = &#039;&#039;"}],"returns":"string"},"ingres_escape_string":{"desc":"Escape special characters for use in a query","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"string $source_string"}],"returns":"string"},"ingres_field_name":{"desc":"Get the name of a field in a query result","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $index"}],"returns":"string"},"ingres_field_type":{"desc":"Get the type of a field in a query result","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $index"}],"returns":"string"},"ini_get":{"desc":"Gets the value of a configuration option","params":[{"required":"yes","param":"string $varname"}],"returns":"string"},"ini_set":{"desc":"Sets the value of a configuration option","params":[{"required":"yes","param":"string $varname"},{"required":"yes","param":"string $newvalue"}],"returns":"string"},"intl_error_name":{"desc":"Get symbolic name for a given error code","params":[{"required":"yes","param":"int $error_code"}],"returns":"string"},"intl_get_error_message":{"desc":"Get description of the last error","params":[],"returns":"string"},"JDMonthName":{"desc":"Returns a month name","params":[{"required":"yes","param":"int $julianday"},{"required":"yes","param":"int $mode"}],"returns":"string"},"JDToFrench":{"desc":"Converts a Julian Day Count to the French Republican Calendar","params":[{"required":"yes","param":"int $juliandaycount"}],"returns":"string"},"JDToGregorian":{"desc":"Converts Julian Day Count to Gregorian date","params":[{"required":"yes","param":"int $julianday"}],"returns":"string"},"jdtojewish":{"desc":"Converts a Julian day count to a Jewish calendar date","params":[{"required":"yes","param":"int $juliandaycount"},{"required":"no","param":"bool $hebrew = false"},{"required":"no","param":"int $fl = &#039;&#039;"}],"returns":"string"},"JDToJulian":{"desc":"Converts a Julian Day Count to a Julian Calendar Date","params":[{"required":"yes","param":"int $julianday"}],"returns":"string"},"json_encode":{"desc":"Returns the JSON representation of a value","params":[{"required":"yes","param":"mixed $value"},{"required":"no","param":"int $options = &#039;&#039;"}],"returns":"string"},"judy_version":{"desc":"Return or print the current PHP Judy version","params":[],"returns":"string"},"lcfirst":{"desc":"Make a string&#039;s first character lowercase","params":[{"required":"yes","param":"string $str"}],"returns":"string"},"ldap_8859_to_t61":{"desc":"Translate 8859 characters to t61 characters","params":[{"required":"yes","param":"string $value"}],"returns":"string"},"ldap_dn2ufn":{"desc":"Convert DN to User Friendly Naming format","params":[{"required":"yes","param":"string $dn"}],"returns":"string"},"ldap_err2str":{"desc":"Convert LDAP error number into string error message","params":[{"required":"yes","param":"int $errno"}],"returns":"string"},"ldap_error":{"desc":"Return the LDAP error message of the last LDAP command","params":[{"required":"yes","param":"resource $link_identifier"}],"returns":"string"},"ldap_first_attribute":{"desc":"Return first attribute","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"resource $result_entry_identifier"}],"returns":"string"},"ldap_get_dn":{"desc":"Get the DN of a result entry","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"resource $result_entry_identifier"}],"returns":"string"},"ldap_next_attribute":{"desc":"Get the next attribute in result","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"resource $result_entry_identifier"}],"returns":"string"},"ldap_t61_to_8859":{"desc":"Translate t61 characters to 8859 characters","params":[{"required":"yes","param":"string $value"}],"returns":"string"},"locale_accept_from_http":{"desc":"Tries to find out best available locale based on HTTP &quot;Accept-Language&quot; header","params":[{"required":"yes","param":"string $header"}],"returns":"string"},"locale_compose":{"desc":"Returns a correctly ordered and delimited locale ID","params":[{"required":"yes","param":"array $subtags"}],"returns":"string"},"locale_get_default":{"desc":"Gets the default locale value from the INTL global &#039;default_locale&#039;","params":[],"returns":"string"},"locale_get_display_language":{"desc":"Returns an appropriately localized display name for language of the inputlocale","params":[{"required":"yes","param":"string $locale"},{"required":"no","param":"string $in_locale = &#039;&#039;"}],"returns":"string"},"locale_get_display_name":{"desc":"Returns an appropriately localized display name for the input locale","params":[{"required":"yes","param":"string $locale"},{"required":"no","param":"string $in_locale = &#039;&#039;"}],"returns":"string"},"locale_get_display_region":{"desc":"Returns an appropriately localized display name for region of the input locale","params":[{"required":"yes","param":"string $locale"},{"required":"no","param":"string $in_locale = &#039;&#039;"}],"returns":"string"},"locale_get_display_script":{"desc":"Returns an appropriately localized display name for script of the input locale","params":[{"required":"yes","param":"string $locale"},{"required":"no","param":"string $in_locale = &#039;&#039;"}],"returns":"string"},"locale_get_display_variant":{"desc":"Returns an appropriately localized display name for variants of the input locale","params":[{"required":"yes","param":"string $locale"},{"required":"no","param":"string $in_locale = &#039;&#039;"}],"returns":"string"},"locale_get_primary_language":{"desc":"Gets the primary language for the input locale","params":[{"required":"yes","param":"string $locale"}],"returns":"string"},"locale_get_region":{"desc":"Gets the region for the input locale","params":[{"required":"yes","param":"string $locale"}],"returns":"string"},"locale_get_script":{"desc":"Gets the script for the input locale","params":[{"required":"yes","param":"string $locale"}],"returns":"string"},"locale_lookup":{"desc":"Searches the language tag list for the best match to the language","params":[{"required":"yes","param":"array $langtag"},{"required":"yes","param":"string $locale"},{"required":"no","param":"bool $canonicalize = false"},{"required":"no","param":"string $default = &#039;&#039;"}],"returns":"string"},"long2ip":{"desc":"Converts an (IPv4) Internet network address into a string in Internet standard dotted format","params":[{"required":"yes","param":"string $proper_address"}],"returns":"string"},"ltrim":{"desc":"Strip whitespace (or other characters) from the beginning of a string","params":[{"required":"yes","param":"string $str"},{"required":"no","param":"string $charlist = &#039;&#039;"}],"returns":"string"},"lzf_compress":{"desc":"LZF compression","params":[{"required":"yes","param":"string $data"}],"returns":"string"},"lzf_decompress":{"desc":"LZF decompression","params":[{"required":"yes","param":"string $data"}],"returns":"string"},"mailparse_determine_best_xfer_encoding":{"desc":"Gets the best way of encoding","params":[{"required":"yes","param":"resource $fp"}],"returns":"string"},"mailparse_msg_extract_part_file":{"desc":"Extracts/decodes a message section","params":[{"required":"yes","param":"resource $mimemail"},{"required":"yes","param":"mixed $filename"},{"required":"no","param":"callback $callbackfunc = &#039;&#039;"}],"returns":"string"},"mailparse_msg_extract_whole_part_file":{"desc":"Extracts a message section including headers without decoding the transfer encoding","params":[{"required":"yes","param":"resource $mimemail"},{"required":"yes","param":"string $filename"},{"required":"no","param":"callback $callbackfunc = &#039;&#039;"}],"returns":"string"},"maxdb_character_set_name":{"desc":"Returns the default character set for the database connection","params":[{"required":"yes","param":"resource $link"}],"returns":"string"},"maxdb_connect_error":{"desc":"Returns a string description of the last connect error","params":[],"returns":"string"},"maxdb_error":{"desc":"Returns a string description of the last error","params":[{"required":"yes","param":"resource $link"}],"returns":"string"},"maxdb_get_client_info":{"desc":"Returns the MaxDB client version as a string","params":[],"returns":"string"},"maxdb_get_host_info":{"desc":"Returns a string representing the type of connection used","params":[{"required":"yes","param":"resource $link"}],"returns":"string"},"maxdb_get_proto_info":{"desc":"Returns the version of the MaxDB protocol used","params":[{"required":"yes","param":"resource $link"}],"returns":"string"},"maxdb_get_server_info":{"desc":"Returns the version of the MaxDB server","params":[{"required":"yes","param":"resource $link"}],"returns":"string"},"maxdb_info":{"desc":"Retrieves information about the most recently executed query","params":[{"required":"yes","param":"resource $link"}],"returns":"string"},"maxdb_real_escape_string":{"desc":"Escapes special characters in a string for use in an SQL statement, taking into account the current charset of the connection","params":[{"required":"yes","param":"resource $link"},{"required":"yes","param":"string $escapestr"}],"returns":"string"},"maxdb_sqlstate":{"desc":"Returns the SQLSTATE error from previous MaxDB operation","params":[{"required":"yes","param":"resource $link"}],"returns":"string"},"maxdb_stat":{"desc":"Gets the current system status","params":[{"required":"yes","param":"resource $link"}],"returns":"string"},"maxdb_stmt_error":{"desc":"Returns a string description for last statement error","params":[{"required":"yes","param":"resource $stmt"}],"returns":"string"},"maxdb_stmt_sqlstate":{"desc":"Returns SQLSTATE error from previous statement operation","params":[{"required":"yes","param":"resource $stmt"}],"returns":"string"},"mb_convert_case":{"desc":"Perform case folding on a string","params":[{"required":"yes","param":"string $str"},{"required":"yes","param":"int $mode"},{"required":"no","param":"string $encoding = mb_internal_encoding("}],"returns":"string"},"mb_convert_encoding":{"desc":"Convert character encoding","params":[{"required":"yes","param":"string $str"},{"required":"yes","param":"string $to_encoding"},{"required":"no","param":"mixed $from_encoding = &#039;&#039;"}],"returns":"string"},"mb_convert_kana":{"desc":"Convert &quot;kana&quot; one from another (&quot;zen-kaku&quot;, &quot;han-kaku&quot; and more)","params":[{"required":"yes","param":"string $str"},{"required":"no","param":"string $option = &quot;KV&quot;"},{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"string"},"mb_convert_variables":{"desc":"Convert character code in variable(s)","params":[{"required":"yes","param":"string $to_encoding"},{"required":"yes","param":"mixed $from_encoding"},{"required":"yes","param":"mixed $vars"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"string"},"mb_decode_mimeheader":{"desc":"Decode string in MIME header field","params":[{"required":"yes","param":"string $str"}],"returns":"string"},"mb_decode_numericentity":{"desc":"Decode HTML numeric string reference to character","params":[{"required":"yes","param":"string $str"},{"required":"yes","param":"array $convmap"},{"required":"yes","param":"string $encoding"}],"returns":"string"},"mb_detect_encoding":{"desc":"Detect character encoding","params":[{"required":"yes","param":"string $str"},{"required":"no","param":"mixed $encoding_list = mb_detect_order()"},{"required":"no","param":"bool $strict = false"}],"returns":"string"},"mb_encode_mimeheader":{"desc":"Encode string for MIME header","params":[{"required":"yes","param":"string $str"},{"required":"no","param":"string $charset = &#039;&#039;"},{"required":"no","param":"string $transfer_encoding = &#039;&#039;"},{"required":"no","param":"string $linefeed = &#039;&#039;"},{"required":"no","param":"int $indent = &#039;&#039;"}],"returns":"string"},"mb_encode_numericentity":{"desc":"Encode character to HTML numeric string reference","params":[{"required":"yes","param":"string $str"},{"required":"yes","param":"array $convmap"},{"required":"yes","param":"string $encoding"}],"returns":"string"},"mb_eregi_replace":{"desc":"Replace regular expression with multibyte support ignoring case","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"string $replace"},{"required":"yes","param":"string $string"},{"required":"no","param":"string $option = &quot;msri&quot;"}],"returns":"string"},"mb_ereg_replace":{"desc":"Replace regular expression with multibyte support","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"string $replacement"},{"required":"yes","param":"string $string"},{"required":"no","param":"string $option = &quot;msr&quot;"}],"returns":"string"},"mb_output_handler":{"desc":"Callback function converts character encoding in output buffer","params":[{"required":"yes","param":"string $contents"},{"required":"yes","param":"int $status"}],"returns":"string"},"mb_preferred_mime_name":{"desc":"Get MIME charset string","params":[{"required":"yes","param":"string $encoding"}],"returns":"string"},"mb_regex_encoding":{"desc":"Returns current encoding for multibyte regex as string","params":[{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"string"},"mb_regex_set_options":{"desc":"Set/Get the default options for mbregex functions","params":[{"required":"no","param":"string $options = &quot;msr&quot;"}],"returns":"string"},"mb_strcut":{"desc":"Get part of string","params":[{"required":"yes","param":"string $str"},{"required":"yes","param":"int $start"},{"required":"no","param":"int $length = &#039;&#039;"},{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"string"},"mb_strimwidth":{"desc":"Get truncated string with specified width","params":[{"required":"yes","param":"string $str"},{"required":"yes","param":"int $start"},{"required":"yes","param":"int $width"},{"required":"no","param":"string $trimmarker = &#039;&#039;"},{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"string"},"mb_stristr":{"desc":"Finds first occurrence of a string within another, case insensitive","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"bool $part = false"},{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"string"},"mb_strlen":{"desc":"Get string length","params":[{"required":"yes","param":"string $str"},{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"string"},"mb_strpos":{"desc":"Find position of first occurrence of string in a string","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"int $offset = &#039;&#039;"},{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"string"},"mb_strrchr":{"desc":"Finds the last occurrence of a character in a string within another","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"bool $part = false"},{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"string"},"mb_strrichr":{"desc":"Finds the last occurrence of a character in a string within another, case insensitive","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"bool $part = false"},{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"string"},"mb_strstr":{"desc":"Finds first occurrence of a string within another","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"bool $part = false"},{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"string"},"mb_strtolower":{"desc":"Make a string lowercase","params":[{"required":"yes","param":"string $str"},{"required":"no","param":"string $encoding = mb_internal_encoding("}],"returns":"string"},"mb_strtoupper":{"desc":"Make a string uppercase","params":[{"required":"yes","param":"string $str"},{"required":"no","param":"string $encoding = mb_internal_encoding("}],"returns":"string"},"mb_strwidth":{"desc":"Return width of string","params":[{"required":"yes","param":"string $str"},{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"string"},"mb_substr":{"desc":"Get part of string","params":[{"required":"yes","param":"string $str"},{"required":"yes","param":"int $start"},{"required":"no","param":"int $length = &#039;&#039;"},{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"string"},"mb_substr_count":{"desc":"Count the number of substring occurrences","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"string"},"mcrypt_cbc":{"desc":"Encrypts/decrypts data in CBC mode","params":[{"required":"yes","param":"string $cipher"},{"required":"yes","param":"string $key"},{"required":"yes","param":"string $data"},{"required":"yes","param":"int $mode"},{"required":"no","param":"string $iv = &#039;&#039;"}],"returns":"string"},"mcrypt_cfb":{"desc":"Encrypts/decrypts data in CFB mode","params":[{"required":"yes","param":"string $cipher"},{"required":"yes","param":"string $key"},{"required":"yes","param":"string $data"},{"required":"yes","param":"int $mode"},{"required":"no","param":"string $iv = &#039;&#039;"}],"returns":"string"},"mcrypt_create_iv":{"desc":"Creates an initialization vector (IV) from a random source","params":[{"required":"yes","param":"int $size"},{"required":"no","param":"int $source = MCRYPT_DEV_RANDOM"}],"returns":"string"},"mcrypt_decrypt":{"desc":"Decrypts crypttext with given parameters","params":[{"required":"yes","param":"string $cipher"},{"required":"yes","param":"string $key"},{"required":"yes","param":"string $data"},{"required":"yes","param":"string $mode"},{"required":"no","param":"string $iv = &#039;&#039;"}],"returns":"string"},"mcrypt_ecb":{"desc":"Deprecated: Encrypts/decrypts data in ECB mode","params":[{"required":"yes","param":"string $cipher"},{"required":"yes","param":"string $key"},{"required":"yes","param":"string $data"},{"required":"yes","param":"int $mode"},{"required":"no","param":"string $iv = &#039;&#039;"}],"returns":"string"},"mcrypt_encrypt":{"desc":"Encrypts plaintext with given parameters","params":[{"required":"yes","param":"string $cipher"},{"required":"yes","param":"string $key"},{"required":"yes","param":"string $data"},{"required":"yes","param":"string $mode"},{"required":"no","param":"string $iv = &#039;&#039;"}],"returns":"string"},"mcrypt_enc_get_algorithms_name":{"desc":"Returns the name of the opened algorithm","params":[{"required":"yes","param":"resource $td"}],"returns":"string"},"mcrypt_enc_get_modes_name":{"desc":"Returns the name of the opened mode","params":[{"required":"yes","param":"resource $td"}],"returns":"string"},"mcrypt_generic":{"desc":"This function encrypts data","params":[{"required":"yes","param":"resource $td"},{"required":"yes","param":"string $data"}],"returns":"string"},"mcrypt_get_cipher_name":{"desc":"Gets the name of the specified cipher","params":[{"required":"yes","param":"string $cipher"}],"returns":"string"},"mcrypt_ofb":{"desc":"Encrypts/decrypts data in OFB mode","params":[{"required":"yes","param":"string $cipher"},{"required":"yes","param":"string $key"},{"required":"yes","param":"string $data"},{"required":"yes","param":"int $mode"},{"required":"no","param":"string $iv = &#039;&#039;"}],"returns":"string"},"md5":{"desc":"Calculate the md5 hash of a string","params":[{"required":"yes","param":"string $str"},{"required":"no","param":"bool $raw_output = false"}],"returns":"string"},"md5_file":{"desc":"Calculates the md5 hash of a given file","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"bool $raw_output = false"}],"returns":"string"},"mdecrypt_generic":{"desc":"Decrypts data","params":[{"required":"yes","param":"resource $td"},{"required":"yes","param":"string $data"}],"returns":"string"},"metaphone":{"desc":"Calculate the metaphone key of a string","params":[{"required":"yes","param":"string $str"},{"required":"no","param":"int $phonemes = &#039;&#039;"}],"returns":"string"},"mhash":{"desc":"Computes hash","params":[{"required":"yes","param":"int $hash"},{"required":"yes","param":"string $data"},{"required":"no","param":"string $key = &#039;&#039;"}],"returns":"string"},"mhash_get_hash_name":{"desc":"Gets the name of the specified hash","params":[{"required":"yes","param":"int $hash"}],"returns":"string"},"mhash_keygen_s2k":{"desc":"Generates a key","params":[{"required":"yes","param":"int $hash"},{"required":"yes","param":"string $password"},{"required":"yes","param":"string $salt"},{"required":"yes","param":"int $bytes"}],"returns":"string"},"mime_content_type":{"desc":"Detect MIME Content-type for a file (deprecated)","params":[{"required":"yes","param":"string $filename"}],"returns":"string"},"money_format":{"desc":"Formats a number as a currency string","params":[{"required":"yes","param":"string $format"},{"required":"yes","param":"float $number"}],"returns":"string"},"mqseries_strerror":{"desc":"Returns the error message corresponding to a result code (MQRC).","params":[{"required":"yes","param":"int $reason"}],"returns":"string"},"msession_get":{"desc":"Get value from session","params":[{"required":"yes","param":"string $session"},{"required":"yes","param":"string $name"},{"required":"yes","param":"string $value"}],"returns":"string"},"msession_get_data":{"desc":"Get data session unstructured data","params":[{"required":"yes","param":"string $session"}],"returns":"string"},"msession_inc":{"desc":"Increment value in session","params":[{"required":"yes","param":"string $session"},{"required":"yes","param":"string $name"}],"returns":"string"},"msession_plugin":{"desc":"Call an escape function within the msession personality plugin","params":[{"required":"yes","param":"string $session"},{"required":"yes","param":"string $val"},{"required":"no","param":"string $param = &#039;&#039;"}],"returns":"string"},"msession_randstr":{"desc":"Get random string","params":[{"required":"yes","param":"int $param"}],"returns":"string"},"msession_uniq":{"desc":"Get unique id","params":[{"required":"yes","param":"int $param"},{"required":"no","param":"string $classname = &#039;&#039;"},{"required":"no","param":"string $data = &#039;&#039;"}],"returns":"string"},"msgfmt_format":{"desc":"Format the message","params":[{"required":"yes","param":"array $args"},{"required":"yes","param":"MessageFormatter $fmt"}],"returns":"string"},"msgfmt_format_message":{"desc":"Quick format message","params":[{"required":"yes","param":"string $locale"},{"required":"yes","param":"string $pattern"},{"required":"yes","param":"array $args"}],"returns":"string"},"msgfmt_get_error_message":{"desc":"Get the error text from the last operation","params":[{"required":"yes","param":"MessageFormatter $fmt"}],"returns":"string"},"msgfmt_get_locale":{"desc":"Get the locale for which the formatter was created.","params":[{"required":"yes","param":"NumberFormatter $formatter"}],"returns":"string"},"msgfmt_get_pattern":{"desc":"Get the pattern used by the formatter","params":[{"required":"yes","param":"MessageFormatter $fmt"}],"returns":"string"},"msql_error":{"desc":"Returns error message of last msql call","params":[],"returns":"string"},"msql_field_flags":{"desc":"Get field flags","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_offset"}],"returns":"string"},"msql_field_name":{"desc":"Get the name of the specified field in a result","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_offset"}],"returns":"string"},"msql_field_type":{"desc":"Get field type","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_offset"}],"returns":"string"},"msql_result":{"desc":"Get result data","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $row"},{"required":"no","param":"mixed $field = &#039;&#039;"}],"returns":"string"},"mssql_field_name":{"desc":"Get the name of a field","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $offset = -1"}],"returns":"string"},"mssql_field_type":{"desc":"Gets the type of a field","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"int $offset = -1"}],"returns":"string"},"mssql_get_last_message":{"desc":"Returns the last message from the server","params":[],"returns":"string"},"mssql_guid_string":{"desc":"Converts a 16 byte binary GUID to a string","params":[{"required":"yes","param":"string $binary"},{"required":"no","param":"bool $short_format = false"}],"returns":"string"},"mssql_result":{"desc":"Get result data","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $row"},{"required":"yes","param":"mixed $field"}],"returns":"string"},"mysqli_character_set_name":{"desc":"Returns the default character set for the database connection","params":[{"required":"yes","param":"mysqli $link"}],"returns":"string"},"mysqli_connect_error":{"desc":"Returns a string description of the last connect error","params":[],"returns":"string"},"mysqli_error":{"desc":"Returns a string description of the last error","params":[{"required":"yes","param":"mysqli $link"}],"returns":"string"},"mysqli_get_client_info":{"desc":"Returns the MySQL client version as a string","params":[{"required":"yes","param":"mysqli $link"}],"returns":"string"},"mysqli_get_host_info":{"desc":"Returns a string representing the type of connection used","params":[{"required":"yes","param":"mysqli $link"}],"returns":"string"},"mysqli_get_server_info":{"desc":"Returns the version of the MySQL server","params":[{"required":"yes","param":"mysqli $link"}],"returns":"string"},"mysqli_info":{"desc":"Retrieves information about the most recently executed query","params":[{"required":"yes","param":"mysqli $link"}],"returns":"string"},"mysqli_real_escape_string":{"desc":"Escapes special characters in a string for use in an SQL statement, taking into account the current charset of the connection","params":[{"required":"yes","param":"string $escapestr"},{"required":"yes","param":"mysqli $link"}],"returns":"string"},"mysqli_sqlstate":{"desc":"Returns the SQLSTATE error from previous MySQL operation","params":[{"required":"yes","param":"mysqli $link"}],"returns":"string"},"mysqli_stat":{"desc":"Gets the current system status","params":[{"required":"yes","param":"mysqli $link"}],"returns":"string"},"mysqli_stmt_error":{"desc":"Returns a string description for last statement error","params":[{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"string"},"mysqli_stmt_sqlstate":{"desc":"Returns SQLSTATE error from previous statement operation","params":[{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"string"},"mysql_client_encoding":{"desc":"Returns the name of the character set","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"string"},"mysql_db_name":{"desc":"Get result data","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $row"},{"required":"no","param":"mixed $field = &#039;&#039;"}],"returns":"string"},"mysql_error":{"desc":"Returns the text of the error message from previous MySQL operation","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"string"},"mysql_escape_string":{"desc":"Escapes a string for use in a mysql_query","params":[{"required":"yes","param":"string $unescaped_string"}],"returns":"string"},"mysql_field_flags":{"desc":"Get the flags associated with the specified field in a result","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_offset"}],"returns":"string"},"mysql_field_name":{"desc":"Get the name of the specified field in a result","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_offset"}],"returns":"string"},"mysql_field_table":{"desc":"Get name of the table the specified field is in","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_offset"}],"returns":"string"},"mysql_field_type":{"desc":"Get the type of the specified field in a result","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_offset"}],"returns":"string"},"mysql_get_client_info":{"desc":"Get MySQL client info","params":[],"returns":"string"},"mysql_get_host_info":{"desc":"Get MySQL host info","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"string"},"mysql_get_server_info":{"desc":"Get MySQL server info","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"string"},"mysql_info":{"desc":"Get information about the most recent query","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"string"},"mysql_real_escape_string":{"desc":"Escapes special characters in a string for use in an SQL statement","params":[{"required":"yes","param":"string $unescaped_string"},{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"string"},"mysql_result":{"desc":"Get result data","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $row"},{"required":"no","param":"mixed $field = &#039;&#039;"}],"returns":"string"},"mysql_stat":{"desc":"Get current system status","params":[{"required":"no","param":"resource $link_identifier = &#039;&#039;"}],"returns":"string"},"mysql_tablename":{"desc":"Get table name of field","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $i"}],"returns":"string"},"m_connectionerror":{"desc":"Get a textual representation of why a connection failed","params":[{"required":"yes","param":"resource $conn"}],"returns":"string"},"m_getcell":{"desc":"Get a specific cell from a comma delimited response by column name","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $identifier"},{"required":"yes","param":"string $column"},{"required":"yes","param":"int $row"}],"returns":"string"},"m_getcellbynum":{"desc":"Get a specific cell from a comma delimited response by column number","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $identifier"},{"required":"yes","param":"int $column"},{"required":"yes","param":"int $row"}],"returns":"string"},"m_getcommadelimited":{"desc":"Get the RAW comma delimited data returned from MCVE","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $identifier"}],"returns":"string"},"m_getheader":{"desc":"Get the name of the column in a comma-delimited response","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $identifier"},{"required":"yes","param":"int $column_num"}],"returns":"string"},"m_responseparam":{"desc":"Get a custom response parameter","params":[{"required":"yes","param":"resource $conn"},{"required":"yes","param":"int $identifier"},{"required":"yes","param":"string $key"}],"returns":"string"},"m_sslcert_gen_hash":{"desc":"Generate hash for SSL client certificate verification","params":[{"required":"yes","param":"string $filename"}],"returns":"string"},"ncurses_erasechar":{"desc":"Returns current erase character","params":[],"returns":"string"},"ncurses_inch":{"desc":"Get character and attribute at current position","params":[],"returns":"string"},"ncurses_killchar":{"desc":"Returns current line kill character","params":[],"returns":"string"},"ncurses_longname":{"desc":"Returns terminals description","params":[],"returns":"string"},"ncurses_termname":{"desc":"Returns terminals (short)-name","params":[],"returns":"string"},"newt_checkbox_get_value":{"desc":"Retreives value of checkox resource","params":[{"required":"yes","param":"resource $checkbox"}],"returns":"string"},"newt_checkbox_tree_get_entry_value":{"desc":"","params":[{"required":"yes","param":"resource $checkboxtree"},{"required":"yes","param":"mixed $data"}],"returns":"string"},"newt_entry_get_value":{"desc":"","params":[{"required":"yes","param":"resource $entry"}],"returns":"string"},"newt_listbox_get_current":{"desc":"","params":[{"required":"yes","param":"resource $listbox"}],"returns":"string"},"newt_reflow_text":{"desc":"","params":[{"required":"yes","param":"string $text"},{"required":"yes","param":"int $width"},{"required":"yes","param":"int $flex_down"},{"required":"yes","param":"int $flex_up"},{"required":"yes","param":"int $actual_width"},{"required":"yes","param":"int $actual_height"}],"returns":"string"},"ngettext":{"desc":"Plural version of gettext","params":[{"required":"yes","param":"string $msgid1"},{"required":"yes","param":"string $msgid2"},{"required":"yes","param":"int $n"}],"returns":"string"},"nl2br":{"desc":"Inserts HTML line breaks before all newlines in a string","params":[{"required":"yes","param":"string $string"},{"required":"no","param":"bool $is_xhtml = true"}],"returns":"string"},"nl_langinfo":{"desc":"Query language and locale information","params":[{"required":"yes","param":"int $item"}],"returns":"string"},"normalizer_normalize":{"desc":"Normalizes the input provided and returns the normalized string","params":[{"required":"yes","param":"string $input"},{"required":"no","param":"string $form = Normalizer::FORM_C"}],"returns":"string"},"nthmac":{"desc":"Obtain a nthmac key (needs 2 arguments)","params":[{"required":"yes","param":"string $clent"},{"required":"yes","param":"string $data"}],"returns":"string"},"number_format":{"desc":"Format a number with grouped thousands","params":[{"required":"yes","param":"float $number"},{"required":"yes","param":"int $decimals"},{"required":"yes","param":"string $dec_point"},{"required":"yes","param":"string $thousands_sep"}],"returns":"string"},"numfmt_format":{"desc":"Format a number","params":[{"required":"yes","param":"number $value"},{"required":"no","param":"int $type = &#039;&#039;"},{"required":"yes","param":"NumberFormatter $fmt"}],"returns":"string"},"numfmt_format_currency":{"desc":"Format a currency value","params":[{"required":"yes","param":"float $value"},{"required":"yes","param":"string $currency"},{"required":"yes","param":"NumberFormatter $fmt"}],"returns":"string"},"numfmt_get_error_message":{"desc":"Get formatter&#039;s last error message.","params":[{"required":"yes","param":"NumberFormatter $fmt"}],"returns":"string"},"numfmt_get_locale":{"desc":"Get formatter locale","params":[{"required":"no","param":"int $type = &#039;&#039;"},{"required":"yes","param":"NumberFormatter $fmt"}],"returns":"string"},"numfmt_get_pattern":{"desc":"Get formatter pattern","params":[{"required":"yes","param":"NumberFormatter $fmt"}],"returns":"string"},"numfmt_get_symbol":{"desc":"Get a symbol value","params":[{"required":"yes","param":"int $attr"},{"required":"yes","param":"NumberFormatter $fmt"}],"returns":"string"},"numfmt_get_text_attribute":{"desc":"Get a text attribute","params":[{"required":"yes","param":"int $attr"},{"required":"yes","param":"NumberFormatter $fmt"}],"returns":"string"},"oauth_get_sbs":{"desc":"Generate a Signature Base String","params":[{"required":"yes","param":"string $http_method"},{"required":"yes","param":"string $uri"},{"required":"no","param":"array $request_parameters = &#039;&#039;"}],"returns":"string"},"oauth_urlencode":{"desc":"Encode a URI to RFC 3986","params":[{"required":"yes","param":"string $uri"}],"returns":"string"},"ob_deflatehandler":{"desc":"Deflate output handler","params":[{"required":"yes","param":"string $data"},{"required":"yes","param":"int $mode"}],"returns":"string"},"ob_etaghandler":{"desc":"ETag output handler","params":[{"required":"yes","param":"string $data"},{"required":"yes","param":"int $mode"}],"returns":"string"},"ob_get_clean":{"desc":"Get current buffer contents and delete current output buffer","params":[],"returns":"string"},"ob_get_contents":{"desc":"Return the contents of the output buffer","params":[],"returns":"string"},"ob_get_flush":{"desc":"Flush the output buffer, return it as a string and turn off output buffering","params":[],"returns":"string"},"ob_gzhandler":{"desc":"ob_start callback function to gzip output buffer","params":[{"required":"yes","param":"string $buffer"},{"required":"yes","param":"int $mode"}],"returns":"string"},"ob_iconv_handler":{"desc":"Convert character encoding as output buffer handler","params":[{"required":"yes","param":"string $contents"},{"required":"yes","param":"int $status"}],"returns":"string"},"ob_inflatehandler":{"desc":"Inflate output handler","params":[{"required":"yes","param":"string $data"},{"required":"yes","param":"int $mode"}],"returns":"string"},"ob_tidyhandler":{"desc":"ob_start callback function to repair the buffer","params":[{"required":"yes","param":"string $input"},{"required":"no","param":"int $mode = &#039;&#039;"}],"returns":"string"},"oci_field_name":{"desc":"Returns the name of a field from the statement","params":[{"required":"yes","param":"resource $statement"},{"required":"yes","param":"int $field"}],"returns":"string"},"oci_server_version":{"desc":"Returns server version","params":[{"required":"yes","param":"resource $connection"}],"returns":"string"},"oci_statement_type":{"desc":"Returns the type of a statement","params":[{"required":"yes","param":"resource $statement"}],"returns":"string"},"odbc_cursor":{"desc":"Get cursorname","params":[{"required":"yes","param":"resource $result_id"}],"returns":"string"},"odbc_error":{"desc":"Get the last error code","params":[{"required":"no","param":"resource $connection_id = &#039;&#039;"}],"returns":"string"},"odbc_errormsg":{"desc":"Get the last error message","params":[{"required":"no","param":"resource $connection_id = &#039;&#039;"}],"returns":"string"},"odbc_field_name":{"desc":"Get the columnname","params":[{"required":"yes","param":"resource $result_id"},{"required":"yes","param":"int $field_number"}],"returns":"string"},"odbc_field_type":{"desc":"Datatype of a field","params":[{"required":"yes","param":"resource $result_id"},{"required":"yes","param":"int $field_number"}],"returns":"string"},"openssl_decrypt":{"desc":"Decrypts data","params":[{"required":"yes","param":"string $data"},{"required":"yes","param":"string $method"},{"required":"yes","param":"string $password"},{"required":"no","param":"bool $raw_input = false"},{"required":"no","param":"string $iv = &quot;&quot;"}],"returns":"string"},"openssl_dh_compute_key":{"desc":"Computes shared secret for public value of remote DH key and local DH key","params":[{"required":"yes","param":"string $pub_key"},{"required":"yes","param":"resource $dh_key"}],"returns":"string"},"openssl_digest":{"desc":"Computes a digest","params":[{"required":"yes","param":"string $data"},{"required":"yes","param":"string $method"},{"required":"no","param":"bool $raw_output = false"}],"returns":"string"},"openssl_encrypt":{"desc":"Encrypts data","params":[{"required":"yes","param":"string $data"},{"required":"yes","param":"string $method"},{"required":"yes","param":"string $password"},{"required":"no","param":"bool $raw_output = false"},{"required":"no","param":"string $iv = &quot;&quot;"}],"returns":"string"},"openssl_error_string":{"desc":"Return openSSL error message","params":[],"returns":"string"},"openssl_random_pseudo_bytes":{"desc":"Generate a pseudo-random string of bytes","params":[{"required":"yes","param":"int $length"},{"required":"no","param":"bool $crypto_strong = &#039;&#039;"}],"returns":"string"},"ovrimos_cursor":{"desc":"Returns the name of the cursor","params":[{"required":"yes","param":"int $result_id"}],"returns":"string"},"ovrimos_field_name":{"desc":"Returns the output column name","params":[{"required":"yes","param":"int $result_id"},{"required":"yes","param":"int $field_number"}],"returns":"string"},"ovrimos_result":{"desc":"Retrieves the output column","params":[{"required":"yes","param":"int $result_id"},{"required":"yes","param":"mixed $field"}],"returns":"string"},"pack":{"desc":"Pack data into binary string","params":[{"required":"yes","param":"string $format"},{"required":"no","param":"mixed $args = &#039;&#039;"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"string"},"PDF_fit_table":{"desc":"Place table on page","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $table"},{"required":"yes","param":"float $llx"},{"required":"yes","param":"float $lly"},{"required":"yes","param":"float $urx"},{"required":"yes","param":"float $ury"},{"required":"yes","param":"string $optlist"}],"returns":"string"},"PDF_fit_textflow":{"desc":"Format textflow in rectangular area","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"int $textflow"},{"required":"yes","param":"float $llx"},{"required":"yes","param":"float $lly"},{"required":"yes","param":"float $urx"},{"required":"yes","param":"float $ury"},{"required":"yes","param":"string $optlist"}],"returns":"string"},"PDF_get_apiname":{"desc":"Get name of unsuccessfull API function","params":[{"required":"yes","param":"resource $pdfdoc"}],"returns":"string"},"PDF_get_buffer":{"desc":"Get PDF output buffer","params":[{"required":"yes","param":"resource $p"}],"returns":"string"},"PDF_get_errmsg":{"desc":"Get error text","params":[{"required":"yes","param":"resource $pdfdoc"}],"returns":"string"},"PDF_get_parameter":{"desc":"Get string parameter","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"string $key"},{"required":"yes","param":"float $modifier"}],"returns":"string"},"PDF_get_pdi_parameter":{"desc":"Get PDI string parameter [deprecated]","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"string $key"},{"required":"yes","param":"int $doc"},{"required":"yes","param":"int $page"},{"required":"yes","param":"int $reserved"}],"returns":"string"},"PDF_pcos_get_stream":{"desc":"Get contents of pCOS path with type stream, fstream, or string","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"int $doc"},{"required":"yes","param":"string $optlist"},{"required":"yes","param":"string $path"}],"returns":"string"},"PDF_pcos_get_string":{"desc":"Get value of pCOS path with type name, string, or boolean","params":[{"required":"yes","param":"resource $p"},{"required":"yes","param":"int $doc"},{"required":"yes","param":"string $path"}],"returns":"string"},"PDF_utf8_to_utf16":{"desc":"Convert string from UTF-8 to UTF-16","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $utf8string"},{"required":"yes","param":"string $ordering"}],"returns":"string"},"PDF_utf16_to_utf8":{"desc":"Convert string from UTF-16 to UTF-8","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $utf16string"}],"returns":"string"},"PDF_utf32_to_utf16":{"desc":"Convert string from UTF-32 to UTF-16","params":[{"required":"yes","param":"resource $pdfdoc"},{"required":"yes","param":"string $utf32string"},{"required":"yes","param":"string $ordering"}],"returns":"string"},"pg_client_encoding":{"desc":"Gets the client encoding","params":[{"required":"no","param":"resource $connection = &#039;&#039;"}],"returns":"string"},"pg_dbname":{"desc":"Get the database name","params":[{"required":"no","param":"resource $connection = &#039;&#039;"}],"returns":"string"},"pg_escape_bytea":{"desc":"Escape a string for insertion into a bytea field","params":[{"required":"no","param":"resource $connection = &#039;&#039;"},{"required":"yes","param":"string $data"}],"returns":"string"},"pg_escape_string":{"desc":"Escape a string for insertion into a text field","params":[{"required":"no","param":"resource $connection = &#039;&#039;"},{"required":"yes","param":"string $data"}],"returns":"string"},"pg_fetch_result":{"desc":"Returns values from a result resource","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $row"},{"required":"yes","param":"mixed $field"}],"returns":"string"},"pg_field_name":{"desc":"Returns the name of a field","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_number"}],"returns":"string"},"pg_field_type":{"desc":"Returns the type name for the corresponding field number","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_number"}],"returns":"string"},"pg_host":{"desc":"Returns the host name associated with the connection","params":[{"required":"no","param":"resource $connection = &#039;&#039;"}],"returns":"string"},"pg_last_error":{"desc":"Get the last error message string of a connection","params":[{"required":"no","param":"resource $connection = &#039;&#039;"}],"returns":"string"},"pg_last_notice":{"desc":"Returns the last notice message from PostgreSQL server","params":[{"required":"yes","param":"resource $connection"}],"returns":"string"},"pg_last_oid":{"desc":"Returns the last row&#039;s OID","params":[{"required":"yes","param":"resource $result"}],"returns":"string"},"pg_lo_read":{"desc":"Read a large object","params":[{"required":"yes","param":"resource $large_object"},{"required":"no","param":"int $len = 8192"}],"returns":"string"},"pg_options":{"desc":"Get the options associated with the connection","params":[{"required":"no","param":"resource $connection = &#039;&#039;"}],"returns":"string"},"pg_parameter_status":{"desc":"Looks up a current parameter setting of the server.","params":[{"required":"no","param":"resource $connection = &#039;&#039;"},{"required":"yes","param":"string $param_name"}],"returns":"string"},"pg_result_error":{"desc":"Get error message associated with result","params":[{"required":"yes","param":"resource $result"}],"returns":"string"},"pg_result_error_field":{"desc":"Returns an individual field of an error report.","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $fieldcode"}],"returns":"string"},"pg_tty":{"desc":"Return the TTY name associated with the connection","params":[{"required":"no","param":"resource $connection = &#039;&#039;"}],"returns":"string"},"pg_unescape_bytea":{"desc":"Unescape binary for bytea type","params":[{"required":"yes","param":"string $data"}],"returns":"string"},"phpversion":{"desc":"Gets the current PHP version","params":[{"required":"no","param":"string $extension = &#039;&#039;"}],"returns":"string"},"php_ini_loaded_file":{"desc":"Retrieve a path to the loaded php.ini file","params":[],"returns":"string"},"php_ini_scanned_files":{"desc":"Return a list of .ini files parsed from the additional ini dir","params":[],"returns":"string"},"php_logo_guid":{"desc":"Gets the logo guid","params":[],"returns":"string"},"php_sapi_name":{"desc":"Returns the type of interface between web server and PHP","params":[],"returns":"string"},"php_strip_whitespace":{"desc":"Return source with stripped comments and whitespace","params":[{"required":"yes","param":"string $filename"}],"returns":"string"},"php_uname":{"desc":"Returns information about the operating system PHP is running on","params":[{"required":"no","param":"string $mode = &quot;a&quot;"}],"returns":"string"},"posix_ctermid":{"desc":"Get path name of controlling terminal","params":[],"returns":"string"},"posix_getcwd":{"desc":"Pathname of current directory","params":[],"returns":"string"},"posix_getlogin":{"desc":"Return login name","params":[],"returns":"string"},"posix_strerror":{"desc":"Retrieve the system error message associated with the given errno","params":[{"required":"yes","param":"int $errno"}],"returns":"string"},"posix_ttyname":{"desc":"Determine terminal device name","params":[{"required":"yes","param":"int $fd"}],"returns":"string"},"preg_quote":{"desc":"Quote regular expression characters","params":[{"required":"yes","param":"string $str"},{"required":"no","param":"string $delimiter = &#039;&#039;"}],"returns":"string"},"ps_get_buffer":{"desc":"Fetches the full buffer containig the generated PS data","params":[{"required":"yes","param":"resource $psdoc"}],"returns":"string"},"ps_get_parameter":{"desc":"Gets certain parameters","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"string $name"},{"required":"no","param":"float $modifier = &#039;&#039;"}],"returns":"string"},"ps_symbol_name":{"desc":"Gets name of a glyph","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"int $ord"},{"required":"no","param":"int $fontid = &#039;&#039;"}],"returns":"string"},"px_date2string":{"desc":"Converts a date into a string.","params":[{"required":"yes","param":"resource $pxdoc"},{"required":"yes","param":"int $value"},{"required":"yes","param":"string $format"}],"returns":"string"},"px_get_parameter":{"desc":"Gets a parameter","params":[{"required":"yes","param":"resource $pxdoc"},{"required":"yes","param":"string $name"}],"returns":"string"},"px_timestamp2string":{"desc":"Converts the timestamp into a string.","params":[{"required":"yes","param":"resource $pxdoc"},{"required":"yes","param":"float $value"},{"required":"yes","param":"string $format"}],"returns":"string"},"qdom_error":{"desc":"Returns the error string from the last QDOM operation or FALSE if no errors occurred","params":[],"returns":"string"},"quoted_printable_decode":{"desc":"Convert a quoted-printable string to an 8 bit string","params":[{"required":"yes","param":"string $str"}],"returns":"string"},"quoted_printable_encode":{"desc":"Convert a 8 bit string to a quoted-printable string","params":[{"required":"yes","param":"string $str"}],"returns":"string"},"quotemeta":{"desc":"Quote meta characters","params":[{"required":"yes","param":"string $str"}],"returns":"string"},"radius_cvt_addr":{"desc":"Converts raw data to IP-Address","params":[{"required":"yes","param":"string $data"}],"returns":"string"},"radius_cvt_string":{"desc":"Converts raw data to string","params":[{"required":"yes","param":"string $data"}],"returns":"string"},"radius_demangle":{"desc":"Demangles data","params":[{"required":"yes","param":"resource $radius_handle"},{"required":"yes","param":"string $mangled"}],"returns":"string"},"radius_demangle_mppe_key":{"desc":"Derives mppe-keys from mangled data","params":[{"required":"yes","param":"resource $radius_handle"},{"required":"yes","param":"string $mangled"}],"returns":"string"},"radius_request_authenticator":{"desc":"Returns the request authenticator","params":[{"required":"yes","param":"resource $radius_handle"}],"returns":"string"},"radius_server_secret":{"desc":"Returns the shared secret","params":[{"required":"yes","param":"resource $radius_handle"}],"returns":"string"},"radius_strerror":{"desc":"Returns an error message","params":[{"required":"yes","param":"resource $radius_handle"}],"returns":"string"},"rar_comment_get":{"desc":"Get comment text from the RAR archive","params":[{"required":"yes","param":"RarArchive $rarfile"}],"returns":"string"},"rar_wrapper_cache_stats":{"desc":"Cache hits and misses for the URL wrapper","params":[],"returns":"string"},"rawurldecode":{"desc":"Decode URL-encoded strings","params":[{"required":"yes","param":"string $str"}],"returns":"string"},"rawurlencode":{"desc":"URL-encode according to RFC 3986","params":[{"required":"yes","param":"string $str"}],"returns":"string"},"readdir":{"desc":"Read entry from directory handle","params":[{"required":"no","param":"resource $dir_handle = &#039;&#039;"}],"returns":"string"},"readline":{"desc":"Reads a line","params":[{"required":"no","param":"string $prompt = &#039;&#039;"}],"returns":"string"},"readlink":{"desc":"Returns the target of a symbolic link","params":[{"required":"yes","param":"string $path"}],"returns":"string"},"realpath":{"desc":"Returns canonicalized absolute pathname","params":[{"required":"yes","param":"string $path"}],"returns":"string"},"recode_string":{"desc":"Recode a string according to a recode request","params":[{"required":"yes","param":"string $request"},{"required":"yes","param":"string $string"}],"returns":"string"},"resourcebundle_get_error_message":{"desc":"Get bundle&#039;s last error message.","params":[{"required":"yes","param":"ResourceBundle $r"}],"returns":"string"},"rpm_version":{"desc":"Returns a string representing the current version of the rpmreader extension","params":[],"returns":"string"},"rrd_error":{"desc":"Gets latest error message.","params":[],"returns":"string"},"rtrim":{"desc":"Strip whitespace (or other characters) from the end of a string","params":[{"required":"yes","param":"string $str"},{"required":"no","param":"string $charlist = &#039;&#039;"}],"returns":"string"},"serialize":{"desc":"Generates a storable representation of a value","params":[{"required":"yes","param":"mixed $value"}],"returns":"string"},"session_cache_limiter":{"desc":"Get and/or set the current cache limiter","params":[{"required":"no","param":"string $cache_limiter = &#039;&#039;"}],"returns":"string"},"session_encode":{"desc":"Encodes the current session data as a string","params":[],"returns":"string"},"session_id":{"desc":"Get and/or set the current session id","params":[{"required":"no","param":"string $id = &#039;&#039;"}],"returns":"string"},"session_module_name":{"desc":"Get and/or set the current session module","params":[{"required":"no","param":"string $module = &#039;&#039;"}],"returns":"string"},"session_name":{"desc":"Get and/or set the current session name","params":[{"required":"no","param":"string $name = &#039;&#039;"}],"returns":"string"},"session_pgsql_get_field":{"desc":"Get custom field value","params":[],"returns":"string"},"session_save_path":{"desc":"Get and/or set the current session save path","params":[{"required":"no","param":"string $path = &#039;&#039;"}],"returns":"string"},"setlocale":{"desc":"Set locale information","params":[{"required":"yes","param":"int $category"},{"required":"yes","param":"array $locale"},{"required":"no","param":"string $... = &#039;&#039;"}],"returns":"string"},"set_include_path":{"desc":"Sets the include_path configuration option","params":[{"required":"yes","param":"string $new_include_path"}],"returns":"string"},"sha1":{"desc":"Calculate the sha1 hash of a string","params":[{"required":"yes","param":"string $str"},{"required":"no","param":"bool $raw_output = false"}],"returns":"string"},"sha1_file":{"desc":"Calculate the sha1 hash of a file","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"bool $raw_output = false"}],"returns":"string"},"shell_exec":{"desc":"Execute command via shell and return the complete output as a string","params":[{"required":"yes","param":"string $cmd"}],"returns":"string"},"shmop_read":{"desc":"Read data from shared memory block","params":[{"required":"yes","param":"int $shmid"},{"required":"yes","param":"int $start"},{"required":"yes","param":"int $count"}],"returns":"string"},"signeurlpaiement":{"desc":"Obtain the payment url (needs 2 arguments)","params":[{"required":"yes","param":"string $clent"},{"required":"yes","param":"string $data"}],"returns":"string"},"snmp2_get":{"desc":"Fetch an SNMP object","params":[{"required":"yes","param":"string $host"},{"required":"yes","param":"string $community"},{"required":"yes","param":"string $object_id"},{"required":"no","param":"string $timeout = 1000000"},{"required":"no","param":"string $retries = 5"}],"returns":"string"},"snmp2_getnext":{"desc":"Fetch the SNMP object which follows the given object id","params":[{"required":"yes","param":"string $host"},{"required":"yes","param":"string $community"},{"required":"yes","param":"string $object_id"},{"required":"no","param":"string $timeout = 1000000"},{"required":"no","param":"string $retries = 5"}],"returns":"string"},"snmp3_get":{"desc":"Fetch an SNMP object","params":[{"required":"yes","param":"string $host"},{"required":"yes","param":"string $sec_name"},{"required":"yes","param":"string $sec_level"},{"required":"yes","param":"string $auth_protocol"},{"required":"yes","param":"string $auth_passphrase"},{"required":"yes","param":"string $priv_protocol"},{"required":"yes","param":"string $priv_passphrase"},{"required":"yes","param":"string $object_id"},{"required":"no","param":"string $timeout = 1000000"},{"required":"no","param":"string $retries = 5"}],"returns":"string"},"snmp3_getnext":{"desc":"Fetch the SNMP object which follows the given object id","params":[{"required":"yes","param":"string $host"},{"required":"yes","param":"string $sec_name"},{"required":"yes","param":"string $sec_level"},{"required":"yes","param":"string $auth_protocol"},{"required":"yes","param":"string $auth_passphrase"},{"required":"yes","param":"string $priv_protocol"},{"required":"yes","param":"string $priv_passphrase"},{"required":"yes","param":"string $object_id"},{"required":"no","param":"string $timeout = 1000000"},{"required":"no","param":"string $retries = 5"}],"returns":"string"},"snmpget":{"desc":"Fetch an SNMP object","params":[{"required":"yes","param":"string $hostname"},{"required":"yes","param":"string $community"},{"required":"yes","param":"string $object_id"},{"required":"no","param":"int $timeout = 1000000"},{"required":"no","param":"int $retries = 5"}],"returns":"string"},"snmpgetnext":{"desc":"Fetch the SNMP object which follows the given object id","params":[{"required":"yes","param":"string $host"},{"required":"yes","param":"string $community"},{"required":"yes","param":"string $object_id"},{"required":"no","param":"int $timeout = 1000000"},{"required":"no","param":"int $retries = 5"}],"returns":"string"},"socket_read":{"desc":"Reads a maximum of length bytes from a socket","params":[{"required":"yes","param":"resource $socket"},{"required":"yes","param":"int $length"},{"required":"no","param":"int $type = PHP_BINARY_READ"}],"returns":"string"},"socket_strerror":{"desc":"Return a string describing a socket error","params":[{"required":"yes","param":"int $errno"}],"returns":"string"},"solr_get_version":{"desc":"Returns the current version of the Apache Solr extension","params":[],"returns":"string"},"soundex":{"desc":"Calculate the soundex key of a string","params":[{"required":"yes","param":"string $str"}],"returns":"string"},"spl_autoload_extensions":{"desc":"Register and return default file extensions for spl_autoload","params":[{"required":"no","param":"string $file_extensions = &#039;&#039;"}],"returns":"string"},"spl_object_hash":{"desc":"Return hash id for given object","params":[{"required":"yes","param":"object $obj"}],"returns":"string"},"sprintf":{"desc":"Return a formatted string","params":[{"required":"yes","param":"string $format"},{"required":"no","param":"mixed $args = &#039;&#039;"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"string"},"sqlite_error_string":{"desc":"Returns the textual description of an error code","params":[{"required":"yes","param":"int $error_code"}],"returns":"string"},"sqlite_escape_string":{"desc":"Escapes a string for use as a query parameter","params":[{"required":"yes","param":"string $item"}],"returns":"string"},"sqlite_fetch_single":{"desc":"Fetches the first column of a result set as a string","params":[{"required":"yes","param":"resource $result"},{"required":"no","param":"bool $decode_binary = true"}],"returns":"string"},"sqlite_field_name":{"desc":"Returns the name of a particular field","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $field_index"}],"returns":"string"},"sqlite_libencoding":{"desc":"Returns the encoding of the linked SQLite library","params":[],"returns":"string"},"sqlite_libversion":{"desc":"Returns the version of the linked SQLite library","params":[],"returns":"string"},"sqlite_udf_decode_binary":{"desc":"Decode binary data passed as parameters to an UDF","params":[{"required":"yes","param":"string $data"}],"returns":"string"},"sqlite_udf_encode_binary":{"desc":"Encode binary data before returning it from an UDF","params":[{"required":"yes","param":"string $data"}],"returns":"string"},"sql_regcase":{"desc":"Make regular expression for case insensitive match","params":[{"required":"yes","param":"string $string"}],"returns":"string"},"ssdeep_fuzzy_hash":{"desc":"Create a fuzzy hash from a string","params":[{"required":"yes","param":"string $to_hash"}],"returns":"string"},"ssdeep_fuzzy_hash_filename":{"desc":"Create a fuzzy hash from a file","params":[{"required":"yes","param":"string $file_name"}],"returns":"string"},"ssh2_fingerprint":{"desc":"Retrieve fingerprint of remote server","params":[{"required":"yes","param":"resource $session"},{"required":"no","param":"int $flags = SSH2_FINGERPRINT_MD5 | SSH2_FINGERPRINT_HEX"}],"returns":"string"},"ssh2_sftp_readlink":{"desc":"Return the target of a symbolic link","params":[{"required":"yes","param":"resource $sftp"},{"required":"yes","param":"string $link"}],"returns":"string"},"ssh2_sftp_realpath":{"desc":"Resolve the realpath of a provided path string","params":[{"required":"yes","param":"resource $sftp"},{"required":"yes","param":"string $filename"}],"returns":"string"},"stomp_connect_error":{"desc":"Returns a string description of the last connect error","params":[],"returns":"string"},"stomp_error":{"desc":"Gets the last stomp error","params":[{"required":"yes","param":"resource $link"}],"returns":"string"},"stomp_get_session_id":{"desc":"Gets the current stomp session ID","params":[{"required":"yes","param":"resource $link"}],"returns":"string"},"stomp_version":{"desc":"Gets the current stomp extension version","params":[],"returns":"string"},"stream_get_contents":{"desc":"Reads remainder of a stream into a string","params":[{"required":"yes","param":"resource $handle"},{"required":"no","param":"int $maxlength = -1"},{"required":"no","param":"int $offset = -1"}],"returns":"string"},"stream_get_line":{"desc":"Gets line from stream resource up to a given delimiter","params":[{"required":"yes","param":"resource $handle"},{"required":"yes","param":"int $length"},{"required":"no","param":"string $ending = &#039;&#039;"}],"returns":"string"},"stream_resolve_include_path":{"desc":"Resolve filename against the include path","params":[{"required":"yes","param":"string $filename"}],"returns":"string"},"stream_socket_get_name":{"desc":"Retrieve the name of the local or remote sockets","params":[{"required":"yes","param":"resource $handle"},{"required":"yes","param":"bool $want_peer"}],"returns":"string"},"stream_socket_recvfrom":{"desc":"Receives data from a socket, connected or not","params":[{"required":"yes","param":"resource $socket"},{"required":"yes","param":"int $length"},{"required":"no","param":"int $flags = &#039;&#039;"},{"required":"no","param":"string $address = &#039;&#039;"}],"returns":"string"},"strftime":{"desc":"Format a local time/date according to locale settings","params":[{"required":"yes","param":"string $format"},{"required":"no","param":"int $timestamp = time("}],"returns":"string"},"stripcslashes":{"desc":"Un-quote string quoted with addcslashes","params":[{"required":"yes","param":"string $str"}],"returns":"string"},"stripos":{"desc":"Find position of first occurrence of a case-insensitive string","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $needle"},{"required":"no","param":"int $offset = &#039;&#039;"}],"returns":"string"},"stripslashes":{"desc":"Un-quotes a quoted string","params":[{"required":"yes","param":"string $str"}],"returns":"string"},"strip_tags":{"desc":"Strip HTML and PHP tags from a string","params":[{"required":"yes","param":"string $str"},{"required":"no","param":"string $allowable_tags = &#039;&#039;"}],"returns":"string"},"stristr":{"desc":"Case-insensitive strstr","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"mixed $needle"},{"required":"no","param":"bool $before_needle = false"}],"returns":"string"},"strpbrk":{"desc":"Search a string for any of a set of characters","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"string $char_list"}],"returns":"string"},"strrchr":{"desc":"Find the last occurrence of a character in a string","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"mixed $needle"}],"returns":"string"},"strrev":{"desc":"Reverse a string","params":[{"required":"yes","param":"string $string"}],"returns":"string"},"strstr":{"desc":"Find first occurrence of a string","params":[{"required":"yes","param":"string $haystack"},{"required":"yes","param":"mixed $needle"},{"required":"no","param":"bool $before_needle = false"}],"returns":"string"},"strtok":{"desc":"Tokenize string","params":[{"required":"yes","param":"string $str"},{"required":"yes","param":"string $token"}],"returns":"string"},"strtolower":{"desc":"Make a string lowercase","params":[{"required":"yes","param":"string $str"}],"returns":"string"},"strtoupper":{"desc":"Make a string uppercase","params":[{"required":"yes","param":"string $string"}],"returns":"string"},"strtr":{"desc":"Translate characters or replace substrings","params":[{"required":"yes","param":"string $str"},{"required":"yes","param":"string $from"},{"required":"yes","param":"string $to"},{"required":"yes","param":"array $replace_pairs"}],"returns":"string"},"strval":{"desc":"Get string value of a variable","params":[{"required":"yes","param":"mixed $var"}],"returns":"string"},"str_pad":{"desc":"Pad a string to a certain length with another string","params":[{"required":"yes","param":"string $input"},{"required":"yes","param":"int $pad_length"},{"required":"no","param":"string $pad_string = &quot; &quot;"},{"required":"no","param":"int $pad_type = STR_PAD_RIGHT"}],"returns":"string"},"str_repeat":{"desc":"Repeat a string","params":[{"required":"yes","param":"string $input"},{"required":"yes","param":"int $multiplier"}],"returns":"string"},"str_rot13":{"desc":"Perform the rot13 transform on a string","params":[{"required":"yes","param":"string $str"}],"returns":"string"},"str_shuffle":{"desc":"Randomly shuffles a string","params":[{"required":"yes","param":"string $str"}],"returns":"string"},"substr":{"desc":"Return part of a string","params":[{"required":"yes","param":"string $string"},{"required":"yes","param":"int $start"},{"required":"no","param":"int $length = &#039;&#039;"}],"returns":"string"},"svn_auth_get_parameter":{"desc":"Retrieves authentication parameter","params":[{"required":"yes","param":"string $key"}],"returns":"string"},"svn_cat":{"desc":"Returns the contents of a file in a repository","params":[{"required":"yes","param":"string $repos_url"},{"required":"no","param":"int $revision_no = &#039;&#039;"}],"returns":"string"},"svn_client_version":{"desc":"Returns the version of the SVN client libraries","params":[],"returns":"string"},"svn_fs_node_prop":{"desc":"Returns the value of a property for a node","params":[{"required":"yes","param":"resource $fsroot"},{"required":"yes","param":"string $path"},{"required":"yes","param":"string $propname"}],"returns":"string"},"svn_fs_revision_prop":{"desc":"Fetches the value of a named property","params":[{"required":"yes","param":"resource $fs"},{"required":"yes","param":"int $revnum"},{"required":"yes","param":"string $propname"}],"returns":"string"},"sybase_get_last_message":{"desc":"Returns the last message from the server","params":[],"returns":"string"},"sybase_result":{"desc":"Get result data","params":[{"required":"yes","param":"resource $result"},{"required":"yes","param":"int $row"},{"required":"yes","param":"mixed $field"}],"returns":"string"},"system":{"desc":"Execute an external program and display the output","params":[{"required":"yes","param":"string $command"},{"required":"no","param":"int $return_var = &#039;&#039;"}],"returns":"string"},"sys_get_temp_dir":{"desc":"Returns directory path used for temporary files","params":[],"returns":"string"},"tempnam":{"desc":"Create file with unique file name","params":[{"required":"yes","param":"string $dir"},{"required":"yes","param":"string $prefix"}],"returns":"string"},"textdomain":{"desc":"Sets the default domain","params":[{"required":"yes","param":"string $text_domain"}],"returns":"string"},"tidy_get_error_buffer":{"desc":"Return warnings and errors which occurred parsing the specified document","params":[{"required":"yes","param":"tidy $object"}],"returns":"string"},"tidy_get_opt_doc":{"desc":"Returns the documentation for the given option name","params":[{"required":"yes","param":"string $optname"},{"required":"yes","param":"tidy $object"}],"returns":"string"},"tidy_get_output":{"desc":"Return a string representing the parsed tidy markup","params":[{"required":"yes","param":"tidy $object"}],"returns":"string"},"tidy_get_release":{"desc":"Get release date (version) for Tidy library","params":[],"returns":"string"},"tidy_repair_file":{"desc":"Repair a file and return it as a string","params":[{"required":"yes","param":"string $filename"},{"required":"no","param":"mixed $config = &#039;&#039;"},{"required":"no","param":"string $encoding = &#039;&#039;"},{"required":"no","param":"bool $use_include_path = false"}],"returns":"string"},"tidy_repair_string":{"desc":"Repair a string using an optionally provided configuration file","params":[{"required":"yes","param":"string $data"},{"required":"no","param":"mixed $config = &#039;&#039;"},{"required":"no","param":"string $encoding = &#039;&#039;"}],"returns":"string"},"timezone_name_from_abbr":{"desc":"Returns the timezone name from abbreviation","params":[{"required":"yes","param":"string $abbr"},{"required":"no","param":"int $gmtOffset = -1"},{"required":"no","param":"int $isdst = -1"}],"returns":"string"},"timezone_version_get":{"desc":"Gets the version of the timezonedb","params":[],"returns":"string"},"token_name":{"desc":"Get the symbolic name of a given PHP token","params":[{"required":"yes","param":"int $token"}],"returns":"string"},"transliterator_get_error_message":{"desc":"Get last error message","params":[],"returns":"string"},"trim":{"desc":"Strip whitespace (or other characters) from the beginning and end of a string","params":[{"required":"yes","param":"string $str"},{"required":"no","param":"string $charlist = &#039;&#039;"}],"returns":"string"},"ucfirst":{"desc":"Make a string&#039;s first character uppercase","params":[{"required":"yes","param":"string $str"}],"returns":"string"},"ucwords":{"desc":"Uppercase the first character of each word in a string","params":[{"required":"yes","param":"string $str"}],"returns":"string"},"udm_error":{"desc":"Get mnoGoSearch error message","params":[{"required":"yes","param":"resource $agent"}],"returns":"string"},"udm_get_res_field":{"desc":"Fetch a result field","params":[{"required":"yes","param":"resource $res"},{"required":"yes","param":"int $row"},{"required":"yes","param":"int $field"}],"returns":"string"},"udm_get_res_param":{"desc":"Get mnoGoSearch result parameters","params":[{"required":"yes","param":"resource $res"},{"required":"yes","param":"int $param"}],"returns":"string"},"uniqid":{"desc":"Generate a unique ID","params":[{"required":"no","param":"string $prefix = &quot;&quot;"},{"required":"no","param":"bool $more_entropy = false"}],"returns":"string"},"urldecode":{"desc":"Decodes URL-encoded string","params":[{"required":"yes","param":"string $str"}],"returns":"string"},"urlencode":{"desc":"URL-encodes string","params":[{"required":"yes","param":"string $str"}],"returns":"string"},"utf8_decode":{"desc":"Converts a string with ISO-8859-1 characters encoded with UTF-8 to single-byte ISO-8859-1","params":[{"required":"yes","param":"string $data"}],"returns":"string"},"utf8_encode":{"desc":"Encodes an ISO-8859-1 string to UTF-8","params":[{"required":"yes","param":"string $data"}],"returns":"string"},"var_dump":{"desc":"Dumps information about a variable","params":[{"required":"no","param":"mixed $expression = &#039;&#039;"},{"required":"no","param":"$... = &#039;&#039;"}],"returns":"string"},"vpopmail_error":{"desc":"Get text message for last vpopmail error","params":[],"returns":"string"},"vsprintf":{"desc":"Return a formatted string","params":[{"required":"yes","param":"string $format"},{"required":"yes","param":"array $args"}],"returns":"string"},"wddx_packet_end":{"desc":"Ends a WDDX packet with the specified ID","params":[{"required":"yes","param":"resource $packet_id"}],"returns":"string"},"wddx_serialize_value":{"desc":"Serialize a single value into a WDDX packet","params":[{"required":"yes","param":"mixed $var"},{"required":"no","param":"string $comment = &#039;&#039;"}],"returns":"string"},"wddx_serialize_vars":{"desc":"Serialize variables into a WDDX packet","params":[{"required":"yes","param":"mixed $var_name"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"string"},"wordwrap":{"desc":"Wraps a string to a given number of characters","params":[{"required":"yes","param":"string $str"},{"required":"no","param":"int $width = 75"},{"required":"no","param":"string $break = &quot;n&quot;"},{"required":"no","param":"bool $cut = false"}],"returns":"string"},"xattr_get":{"desc":"Get an extended attribute","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"string $name"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"string"},"xdiff_string_bdiff":{"desc":"Make binary diff of two strings","params":[{"required":"yes","param":"string $old_data"},{"required":"yes","param":"string $new_data"}],"returns":"string"},"xdiff_string_bpatch":{"desc":"Patch a string with a binary diff","params":[{"required":"yes","param":"string $str"},{"required":"yes","param":"string $patch"}],"returns":"string"},"xdiff_string_diff":{"desc":"Make unified diff of two strings","params":[{"required":"yes","param":"string $old_data"},{"required":"yes","param":"string $new_data"},{"required":"no","param":"int $context = 3"},{"required":"no","param":"bool $minimal = false"}],"returns":"string"},"xdiff_string_diff_binary":{"desc":"Alias of xdiff_string_bdiff","params":[{"required":"yes","param":"string $old_data"},{"required":"yes","param":"string $new_data"}],"returns":"string"},"xdiff_string_patch":{"desc":"Patch a string with an unified diff","params":[{"required":"yes","param":"string $str"},{"required":"yes","param":"string $patch"},{"required":"no","param":"int $flags = &#039;&#039;"},{"required":"no","param":"string $error = &#039;&#039;"}],"returns":"string"},"xdiff_string_patch_binary":{"desc":"Alias of xdiff_string_bpatch","params":[{"required":"yes","param":"string $str"},{"required":"yes","param":"string $patch"}],"returns":"string"},"xdiff_string_rabdiff":{"desc":"Make binary diff of two strings using the Rabin&#039;s polynomial fingerprinting algorithm","params":[{"required":"yes","param":"string $old_data"},{"required":"yes","param":"string $new_data"}],"returns":"string"},"xmlrpc_encode":{"desc":"Generates XML for a PHP value","params":[{"required":"yes","param":"mixed $value"}],"returns":"string"},"xmlrpc_encode_request":{"desc":"Generates XML for a method request","params":[{"required":"yes","param":"string $method"},{"required":"yes","param":"mixed $params"},{"required":"no","param":"array $output_options = &#039;&#039;"}],"returns":"string"},"xmlrpc_get_type":{"desc":"Gets xmlrpc type for a PHP value","params":[{"required":"yes","param":"mixed $value"}],"returns":"string"},"xmlrpc_server_call_method":{"desc":"Parses XML requests and call methods","params":[{"required":"yes","param":"resource $server"},{"required":"yes","param":"string $xml"},{"required":"yes","param":"mixed $user_data"},{"required":"no","param":"array $output_options = &#039;&#039;"}],"returns":"string"},"xml_error_string":{"desc":"Get XML parser error string","params":[{"required":"yes","param":"int $code"}],"returns":"string"},"xslt_backend_info":{"desc":"Returns the information on the compilation settings of the backend","params":[],"returns":"string"},"xslt_backend_name":{"desc":"Returns the name of the backend","params":[],"returns":"string"},"xslt_backend_version":{"desc":"Returns the version number of Sablotron","params":[],"returns":"string"},"xslt_error":{"desc":"Returns an error string","params":[{"required":"yes","param":"resource $xh"}],"returns":"string"},"yaml_emit":{"desc":"Returns the YAML representation of a value","params":[{"required":"yes","param":"mixed $data"},{"required":"no","param":"int $encoding = YAML_ANY_ENCODING"},{"required":"no","param":"int $linebreak = YAML_ANY_BREAK"}],"returns":"string"},"yaz_addinfo":{"desc":"Returns additional error information","params":[{"required":"yes","param":"resource $id"}],"returns":"string"},"yaz_error":{"desc":"Returns error description","params":[{"required":"yes","param":"resource $id"}],"returns":"string"},"yaz_get_option":{"desc":"Returns value of option for connection","params":[{"required":"yes","param":"resource $id"},{"required":"yes","param":"string $name"}],"returns":"string"},"yaz_record":{"desc":"Returns a record","params":[{"required":"yes","param":"resource $id"},{"required":"yes","param":"int $pos"},{"required":"yes","param":"string $type"}],"returns":"string"},"yp_err_string":{"desc":"Returns the error string associated with the given error code","params":[{"required":"yes","param":"int $errorcode"}],"returns":"string"},"yp_get_default_domain":{"desc":"Fetches the machine&#039;s default NIS domain","params":[],"returns":"string"},"yp_master":{"desc":"Returns the machine name of the master NIS server for a map","params":[{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $map"}],"returns":"string"},"yp_match":{"desc":"Returns the matched line","params":[{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $map"},{"required":"yes","param":"string $key"}],"returns":"string"},"zend_logo_guid":{"desc":"Gets the Zend guid","params":[],"returns":"string"},"zend_version":{"desc":"Gets the version of the current Zend engine","params":[],"returns":"string"},"zip_entry_compressionmethod":{"desc":"Retrieve the compression method of a directory entry","params":[{"required":"yes","param":"resource $zip_entry"}],"returns":"string"},"zip_entry_name":{"desc":"Retrieve the name of a directory entry","params":[{"required":"yes","param":"resource $zip_entry"}],"returns":"string"},"zip_entry_read":{"desc":"Read from an open directory entry","params":[{"required":"yes","param":"resource $zip_entry"},{"required":"no","param":"int $length = &#039;&#039;"}],"returns":"string"},"zlib_get_coding_type":{"desc":"Returns the coding type used for output compression","params":[],"returns":"string"},"aggregate":{"desc":"Dynamic class and object aggregation of methods and properties","params":[{"required":"yes","param":"object $object"},{"required":"yes","param":"string $class_name"}],"returns":"void"},"aggregate_methods":{"desc":"Dynamic class and object aggregation of methods","params":[{"required":"yes","param":"object $object"},{"required":"yes","param":"string $class_name"}],"returns":"void"},"aggregate_methods_by_list":{"desc":"Selective dynamic class methods aggregation to an object","params":[{"required":"yes","param":"object $object"},{"required":"yes","param":"string $class_name"},{"required":"yes","param":"array $methods_list"},{"required":"no","param":"bool $exclude = false"}],"returns":"void"},"aggregate_methods_by_regexp":{"desc":"Selective class methods aggregation to an object using a regular expression","params":[{"required":"yes","param":"object $object"},{"required":"yes","param":"string $class_name"},{"required":"yes","param":"string $regexp"},{"required":"no","param":"bool $exclude = false"}],"returns":"void"},"aggregate_properties":{"desc":"Dynamic aggregation of class properties to an object","params":[{"required":"yes","param":"object $object"},{"required":"yes","param":"string $class_name"}],"returns":"void"},"aggregate_properties_by_list":{"desc":"Selective dynamic class properties aggregation to an object","params":[{"required":"yes","param":"object $object"},{"required":"yes","param":"string $class_name"},{"required":"yes","param":"array $properties_list"},{"required":"no","param":"bool $exclude = false"}],"returns":"void"},"aggregate_properties_by_regexp":{"desc":"Selective class properties aggregation to an object using a regular expression","params":[{"required":"yes","param":"object $object"},{"required":"yes","param":"string $class_name"},{"required":"yes","param":"string $regexp"},{"required":"no","param":"bool $exclude = false"}],"returns":"void"},"apd_clunk":{"desc":"Throw a warning and a callstack","params":[{"required":"yes","param":"string $warning"},{"required":"no","param":"string $delimiter = &#039;&#039;"}],"returns":"void"},"apd_croak":{"desc":"Throw an error, a callstack and then exit","params":[{"required":"yes","param":"string $warning"},{"required":"no","param":"string $delimiter = &#039;&#039;"}],"returns":"void"},"apd_dump_function_table":{"desc":"Outputs the current function table","params":[],"returns":"void"},"apd_set_session":{"desc":"Changes or sets the current debugging level","params":[{"required":"yes","param":"int $debug_level"}],"returns":"void"},"apd_set_session_trace":{"desc":"Starts the session debugging","params":[{"required":"yes","param":"int $debug_level"},{"required":"no","param":"string $dump_directory = &#039;&#039;"}],"returns":"void"},"cairo_append_path":{"desc":"Appends a path to current path","params":[{"required":"yes","param":"CairoPath $path"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_arc":{"desc":"Adds a circular arc","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"float $radius"},{"required":"yes","param":"float $angle1"},{"required":"yes","param":"float $angle2"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_arc_negative":{"desc":"Adds a negative arc","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"float $radius"},{"required":"yes","param":"float $angle1"},{"required":"yes","param":"float $angle2"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_clip":{"desc":"Establishes a new clip region","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_clip_preserve":{"desc":"Establishes a new clip region from the current clip","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_close_path":{"desc":"Closes the current path","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_copy_page":{"desc":"The copyPage purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_curve_to":{"desc":"Adds a curve","params":[{"required":"yes","param":"float $x1"},{"required":"yes","param":"float $y1"},{"required":"yes","param":"float $x2"},{"required":"yes","param":"float $y2"},{"required":"yes","param":"float $x3"},{"required":"yes","param":"float $y3"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_fill":{"desc":"Fills the current path","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_fill_preserve":{"desc":"Fills and preserve the current path","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_font_options_merge":{"desc":"Description","params":[{"required":"yes","param":"CairoFontOptions $options"},{"required":"yes","param":"CairoFontOptions $other"}],"returns":"void"},"cairo_font_options_set_antialias":{"desc":"Description","params":[{"required":"yes","param":"CairoFontOptions $options"},{"required":"yes","param":"int $antialias"}],"returns":"void"},"cairo_font_options_set_hint_metrics":{"desc":"Description","params":[{"required":"yes","param":"CairoFontOptions $options"},{"required":"yes","param":"int $hint_metrics"}],"returns":"void"},"cairo_font_options_set_hint_style":{"desc":"Description","params":[{"required":"yes","param":"CairoFontOptions $options"},{"required":"yes","param":"int $hint_style"}],"returns":"void"},"cairo_font_options_set_subpixel_order":{"desc":"Description","params":[{"required":"yes","param":"CairoFontOptions $options"},{"required":"yes","param":"int $subpixel_order"}],"returns":"void"},"cairo_get_font_face":{"desc":"The getFontFace purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_get_font_matrix":{"desc":"The getFontMatrix purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_get_font_options":{"desc":"The getFontOptions purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_get_group_target":{"desc":"The getGroupTarget purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_get_matrix":{"desc":"The getMatrix purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_get_scaled_font":{"desc":"The getScaledFont purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_get_source":{"desc":"The getSource purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_get_target":{"desc":"The getTarget purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_glyph_path":{"desc":"The glyphPath purpose","params":[{"required":"yes","param":"array $glyphs"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_identity_matrix":{"desc":"The identityMatrix purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_line_to":{"desc":"The lineTo purpose","params":[{"required":"yes","param":"string $x"},{"required":"yes","param":"string $y"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_mask":{"desc":"The mask purpose","params":[{"required":"yes","param":"CairoPattern $pattern"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_mask_surface":{"desc":"The maskSurface purpose","params":[{"required":"yes","param":"CairoSurface $surface"},{"required":"no","param":"string $x = &#039;&#039;"},{"required":"no","param":"string $y = &#039;&#039;"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_matrix_invert":{"desc":"Description","params":[{"required":"yes","param":"CairoMatrix $matrix"}],"returns":"void"},"cairo_matrix_rotate":{"desc":"Description","params":[{"required":"yes","param":"CairoMatrix $matrix"},{"required":"yes","param":"float $radians"}],"returns":"void"},"cairo_matrix_scale":{"desc":"Applies scaling to a matrix","params":[{"required":"yes","param":"float $sx"},{"required":"yes","param":"float $sy"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_matrix_translate":{"desc":"Description","params":[{"required":"yes","param":"CairoMatrix $matrix"},{"required":"yes","param":"float $tx"},{"required":"yes","param":"float $ty"}],"returns":"void"},"cairo_move_to":{"desc":"The moveTo purpose","params":[{"required":"yes","param":"string $x"},{"required":"yes","param":"string $y"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_new_path":{"desc":"The newPath purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_new_sub_path":{"desc":"The newSubPath purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_paint":{"desc":"The paint purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_paint_with_alpha":{"desc":"The paintWithAlpha purpose","params":[{"required":"yes","param":"string $alpha"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_pattern_add_color_stop_rgb":{"desc":"Description","params":[{"required":"yes","param":"CairoGradientPattern $pattern"},{"required":"yes","param":"float $offset"},{"required":"yes","param":"float $red"},{"required":"yes","param":"float $green"},{"required":"yes","param":"float $blue"}],"returns":"void"},"cairo_pattern_add_color_stop_rgba":{"desc":"Description","params":[{"required":"yes","param":"CairoGradientPattern $pattern"},{"required":"yes","param":"float $offset"},{"required":"yes","param":"float $red"},{"required":"yes","param":"float $green"},{"required":"yes","param":"float $blue"},{"required":"yes","param":"float $alpha"}],"returns":"void"},"cairo_pattern_set_extend":{"desc":"Description","params":[{"required":"yes","param":"string $pattern"},{"required":"yes","param":"string $extend"}],"returns":"void"},"cairo_pattern_set_filter":{"desc":"Description","params":[{"required":"yes","param":"CairoSurfacePattern $pattern"},{"required":"yes","param":"int $filter"}],"returns":"void"},"cairo_pattern_set_matrix":{"desc":"Description","params":[{"required":"yes","param":"CairoPattern $pattern"},{"required":"yes","param":"CairoMatrix $matrix"}],"returns":"void"},"cairo_pdf_surface_set_size":{"desc":"Description","params":[{"required":"yes","param":"CairoPdfSurface $surface"},{"required":"yes","param":"float $width"},{"required":"yes","param":"float $height"}],"returns":"void"},"cairo_pop_group":{"desc":"The popGroup purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_pop_group_to_source":{"desc":"The popGroupToSource purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_ps_surface_dsc_begin_page_setup":{"desc":"Description","params":[{"required":"yes","param":"CairoPsSurface $surface"}],"returns":"void"},"cairo_ps_surface_dsc_begin_setup":{"desc":"Description","params":[{"required":"yes","param":"CairoPsSurface $surface"}],"returns":"void"},"cairo_ps_surface_dsc_comment":{"desc":"Description","params":[{"required":"yes","param":"CairoPsSurface $surface"},{"required":"yes","param":"string $comment"}],"returns":"void"},"cairo_ps_surface_restrict_to_level":{"desc":"Description","params":[{"required":"yes","param":"CairoPsSurface $surface"},{"required":"yes","param":"int $level"}],"returns":"void"},"cairo_ps_surface_set_eps":{"desc":"Description","params":[{"required":"yes","param":"CairoPsSurface $surface"},{"required":"yes","param":"bool $level"}],"returns":"void"},"cairo_ps_surface_set_size":{"desc":"Description","params":[{"required":"yes","param":"CairoPsSurface $surface"},{"required":"yes","param":"float $width"},{"required":"yes","param":"float $height"}],"returns":"void"},"cairo_push_group":{"desc":"The pushGroup purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_push_group_with_content":{"desc":"The pushGroupWithContent purpose","params":[{"required":"yes","param":"string $content"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_rectangle":{"desc":"The rectangle purpose","params":[{"required":"yes","param":"string $x"},{"required":"yes","param":"string $y"},{"required":"yes","param":"string $width"},{"required":"yes","param":"string $height"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_rel_curve_to":{"desc":"The relCurveTo purpose","params":[{"required":"yes","param":"string $x1"},{"required":"yes","param":"string $y1"},{"required":"yes","param":"string $x2"},{"required":"yes","param":"string $y2"},{"required":"yes","param":"string $x3"},{"required":"yes","param":"string $y3"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_rel_line_to":{"desc":"The relLineTo purpose","params":[{"required":"yes","param":"string $x"},{"required":"yes","param":"string $y"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_rel_move_to":{"desc":"The relMoveTo purpose","params":[{"required":"yes","param":"string $x"},{"required":"yes","param":"string $y"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_reset_clip":{"desc":"The resetClip purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_restore":{"desc":"The restore purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_rotate":{"desc":"The rotate purpose","params":[{"required":"yes","param":"string $sx"},{"required":"yes","param":"string $sy"},{"required":"yes","param":"CairoContext $context"},{"required":"yes","param":"string $angle"}],"returns":"void"},"cairo_save":{"desc":"The save purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_scale":{"desc":"The scale purpose","params":[{"required":"yes","param":"string $x"},{"required":"yes","param":"string $y"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_select_font_face":{"desc":"The selectFontFace purpose","params":[{"required":"yes","param":"string $family"},{"required":"no","param":"string $slant = &#039;&#039;"},{"required":"no","param":"string $weight = &#039;&#039;"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_set_antialias":{"desc":"The setAntialias purpose","params":[{"required":"no","param":"string $antialias = &#039;&#039;"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_set_dash":{"desc":"The setDash purpose","params":[{"required":"yes","param":"array $dashes"},{"required":"no","param":"string $offset = &#039;&#039;"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_set_fill_rule":{"desc":"The setFillRule purpose","params":[{"required":"yes","param":"string $setting"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_set_font_face":{"desc":"The setFontFace purpose","params":[{"required":"yes","param":"CairoFontFace $fontface"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_set_font_matrix":{"desc":"The setFontMatrix purpose","params":[{"required":"yes","param":"CairoMatrix $matrix"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_set_font_options":{"desc":"The setFontOptions purpose","params":[{"required":"yes","param":"CairoFontOptions $fontoptions"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_set_font_size":{"desc":"The setFontSize purpose","params":[{"required":"yes","param":"string $size"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_set_line_cap":{"desc":"The setLineCap purpose","params":[{"required":"yes","param":"string $setting"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_set_line_join":{"desc":"The setLineJoin purpose","params":[{"required":"yes","param":"string $setting"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_set_line_width":{"desc":"The setLineWidth purpose","params":[{"required":"yes","param":"string $width"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_set_matrix":{"desc":"The setMatrix purpose","params":[{"required":"yes","param":"CairoMatrix $matrix"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_set_miter_limit":{"desc":"The setMiterLimit purpose","params":[{"required":"yes","param":"string $limit"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_set_operator":{"desc":"The setOperator purpose","params":[{"required":"yes","param":"string $setting"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_set_scaled_font":{"desc":"The setScaledFont purpose","params":[{"required":"yes","param":"CairoScaledFont $scaledfont"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_set_source":{"desc":"The setSourceRGBA purpose","params":[{"required":"yes","param":"string $red"},{"required":"yes","param":"string $green"},{"required":"yes","param":"string $blue"},{"required":"yes","param":"string $alpha"},{"required":"yes","param":"CairoContext $context"},{"required":"yes","param":"CairoPattern $pattern"}],"returns":"void"},"cairo_set_source_surface":{"desc":"The setSourceSurface purpose","params":[{"required":"yes","param":"CairoSurface $surface"},{"required":"no","param":"string $x = &#039;&#039;"},{"required":"no","param":"string $y = &#039;&#039;"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_set_tolerance":{"desc":"The setTolerance purpose","params":[{"required":"yes","param":"string $tolerance"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_show_page":{"desc":"The showPage purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_show_text":{"desc":"The showText purpose","params":[{"required":"yes","param":"string $text"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_stroke":{"desc":"The stroke purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_stroke_preserve":{"desc":"The strokePreserve purpose","params":[{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_surface_copy_page":{"desc":"Description","params":[{"required":"yes","param":"CairoSurface $surface"}],"returns":"void"},"cairo_surface_finish":{"desc":"Description","params":[{"required":"yes","param":"CairoSurface $surface"}],"returns":"void"},"cairo_surface_flush":{"desc":"Description","params":[{"required":"yes","param":"CairoSurface $surface"}],"returns":"void"},"cairo_surface_mark_dirty":{"desc":"Description","params":[{"required":"yes","param":"CairoSurface $surface"}],"returns":"void"},"cairo_surface_mark_dirty_rectangle":{"desc":"Description","params":[{"required":"yes","param":"CairoSurface $surface"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"float $width"},{"required":"yes","param":"float $height"}],"returns":"void"},"cairo_surface_set_device_offset":{"desc":"Description","params":[{"required":"yes","param":"CairoSurface $surface"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"}],"returns":"void"},"cairo_surface_set_fallback_resolution":{"desc":"Description","params":[{"required":"yes","param":"CairoSurface $surface"},{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"}],"returns":"void"},"cairo_surface_show_page":{"desc":"Description","params":[{"required":"yes","param":"CairoSurface $surface"}],"returns":"void"},"cairo_surface_write_to_png":{"desc":"Description","params":[{"required":"yes","param":"CairoSurface $surface"},{"required":"yes","param":"resource $stream"}],"returns":"void"},"cairo_svg_surface_restrict_to_version":{"desc":"Description","params":[{"required":"yes","param":"CairoSvgSurface $surface"},{"required":"yes","param":"int $version"}],"returns":"void"},"cairo_text_path":{"desc":"The textPath purpose","params":[{"required":"yes","param":"string $string"},{"required":"yes","param":"CairoContext $context"},{"required":"yes","param":"string $text"}],"returns":"void"},"cairo_transform":{"desc":"The transform purpose","params":[{"required":"yes","param":"CairoMatrix $matrix"},{"required":"yes","param":"CairoContext $context"}],"returns":"void"},"cairo_translate":{"desc":"The translate purpose","params":[{"required":"yes","param":"string $tx"},{"required":"yes","param":"string $ty"},{"required":"yes","param":"CairoContext $context"},{"required":"yes","param":"string $x"},{"required":"yes","param":"string $y"}],"returns":"void"},"clearstatcache":{"desc":"Clears file status cache","params":[{"required":"no","param":"bool $clear_realpath_cache = false"},{"required":"no","param":"string $filename = &#039;&#039;"}],"returns":"void"},"closedir":{"desc":"Close directory handle","params":[{"required":"no","param":"resource $dir_handle = &#039;&#039;"}],"returns":"void"},"com_addref":{"desc":"Increases the components reference counter [deprecated]","params":[],"returns":"void"},"com_release":{"desc":"Decreases the components reference counter [deprecated]","params":[],"returns":"void"},"curl_close":{"desc":"Close a cURL session","params":[{"required":"yes","param":"resource $ch"}],"returns":"void"},"curl_multi_close":{"desc":"Close a set of cURL handles","params":[{"required":"yes","param":"resource $mh"}],"returns":"void"},"cyrus_authenticate":{"desc":"Authenticate against a Cyrus IMAP server","params":[{"required":"yes","param":"resource $connection"},{"required":"no","param":"string $mechlist = &#039;&#039;"},{"required":"no","param":"string $service = &#039;&#039;"},{"required":"no","param":"string $user = &#039;&#039;"},{"required":"no","param":"int $minssf = &#039;&#039;"},{"required":"no","param":"int $maxssf = &#039;&#039;"},{"required":"no","param":"string $authname = &#039;&#039;"},{"required":"no","param":"string $password = &#039;&#039;"}],"returns":"void"},"dba_close":{"desc":"Close a DBA database","params":[{"required":"yes","param":"resource $handle"}],"returns":"void"},"deaggregate":{"desc":"Removes the aggregated methods and properties from an object","params":[{"required":"yes","param":"object $object"},{"required":"no","param":"string $class_name = &#039;&#039;"}],"returns":"void"},"debug_print_backtrace":{"desc":"Prints a backtrace","params":[{"required":"no","param":"int $options = &#039;&#039;"},{"required":"no","param":"int $limit = &#039;&#039;"}],"returns":"void"},"debug_zval_dump":{"desc":"Dumps a string representation of an internal zend value to output","params":[{"required":"yes","param":"mixed $variable"}],"returns":"void"},"define_syslog_variables":{"desc":"Initializes all syslog related variables","params":[],"returns":"void"},"delete":{"desc":"See unlink or unset","params":[],"returns":"void"},"dio_close":{"desc":"Closes the file descriptor given by fd","params":[{"required":"yes","param":"resource $fd"}],"returns":"void"},"dir":{"desc":"Return an instance of the Directory class","params":[],"returns":"void"},"echo":{"desc":"Output one or more strings","params":[{"required":"yes","param":"string $arg1"},{"required":"no","param":"string $... = &#039;&#039;"}],"returns":"void"},"enchant_dict_add_to_personal":{"desc":"add a word to personal word list","params":[{"required":"yes","param":"resource $dict"},{"required":"yes","param":"string $word"}],"returns":"void"},"enchant_dict_add_to_session":{"desc":"add &#039;word&#039; to this spell-checking session","params":[{"required":"yes","param":"resource $dict"},{"required":"yes","param":"string $word"}],"returns":"void"},"enchant_dict_store_replacement":{"desc":"Add a correction for a word","params":[{"required":"yes","param":"resource $dict"},{"required":"yes","param":"string $mis"},{"required":"yes","param":"string $cor"}],"returns":"void"},"event_base_free":{"desc":"Destroy event base","params":[{"required":"yes","param":"resource $event_base"}],"returns":"void"},"event_buffer_fd_set":{"desc":"Change a buffered event file descriptor","params":[{"required":"yes","param":"resource $bevent"},{"required":"yes","param":"resource $fd"}],"returns":"void"},"event_buffer_free":{"desc":"Destroy buffered event","params":[{"required":"yes","param":"resource $bevent"}],"returns":"void"},"event_buffer_timeout_set":{"desc":"Set read and write timeouts for a buffered event","params":[{"required":"yes","param":"resource $bevent"},{"required":"yes","param":"int $read_timeout"},{"required":"yes","param":"int $write_timeout"}],"returns":"void"},"event_buffer_watermark_set":{"desc":"Set the watermarks for read and write events","params":[{"required":"yes","param":"resource $bevent"},{"required":"yes","param":"int $events"},{"required":"yes","param":"int $lowmark"},{"required":"yes","param":"int $highmark"}],"returns":"void"},"event_free":{"desc":"Free event resource","params":[{"required":"yes","param":"resource $event"}],"returns":"void"},"exit":{"desc":"Output a message and terminate the current script","params":[{"required":"yes","param":"int $status"}],"returns":"void"},"fam_close":{"desc":"Close FAM connection","params":[{"required":"yes","param":"resource $fam"}],"returns":"void"},"fbsql_set_characterset":{"desc":"Change input/output character set","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"int $characterset"},{"required":"no","param":"int $in_out_both = &#039;&#039;"}],"returns":"void"},"fbsql_set_transaction":{"desc":"Set the transaction locking and isolation","params":[{"required":"yes","param":"resource $link_identifier"},{"required":"yes","param":"int $locking"},{"required":"yes","param":"int $isolation"}],"returns":"void"},"fdf_close":{"desc":"Close an FDF document","params":[{"required":"yes","param":"resource $fdf_document"}],"returns":"void"},"fdf_header":{"desc":"Sets FDF-specific output headers","params":[],"returns":"void"},"flush":{"desc":"Flush the output buffer","params":[],"returns":"void"},"gc_disable":{"desc":"Deactivates the circular reference collector","params":[],"returns":"void"},"gc_enable":{"desc":"Activates the circular reference collector","params":[],"returns":"void"},"gmp_clrbit":{"desc":"Clear bit","params":[{"required":"yes","param":"resource $a"},{"required":"yes","param":"int $index"}],"returns":"void"},"gmp_setbit":{"desc":"Set bit","params":[{"required":"yes","param":"resource $a"},{"required":"yes","param":"int $index"},{"required":"no","param":"bool $set_clear = true"}],"returns":"void"},"gnupg_seterrormode":{"desc":"Sets the mode for error_reporting","params":[{"required":"yes","param":"resource $identifier"},{"required":"yes","param":"int $errormode"}],"returns":"void"},"gupnp_context_set_subscription_timeout":{"desc":"Sets the event subscription timeout","params":[{"required":"yes","param":"resource $context"},{"required":"yes","param":"int $timeout"}],"returns":"void"},"header":{"desc":"Send a raw HTTP header","params":[{"required":"yes","param":"string $string"},{"required":"no","param":"bool $replace = true"},{"required":"no","param":"int $http_response_code = &#039;&#039;"}],"returns":"void"},"header_remove":{"desc":"Remove previously set headers","params":[{"required":"no","param":"string $name = &#039;&#039;"}],"returns":"void"},"http_throttle":{"desc":"HTTP throttling","params":[{"required":"yes","param":"float $sec"},{"required":"no","param":"int $bytes = 40960"}],"returns":"void"},"hw_connection_info":{"desc":"Prints information about the connection to Hyperwave server","params":[{"required":"yes","param":"int $link"}],"returns":"void"},"ibase_blob_add":{"desc":"Add data into a newly created blob","params":[{"required":"yes","param":"resource $blob_handle"},{"required":"yes","param":"string $data"}],"returns":"void"},"imagecolorset":{"desc":"Set the color for the specified palette index","params":[{"required":"yes","param":"resource $image"},{"required":"yes","param":"int $index"},{"required":"yes","param":"int $red"},{"required":"yes","param":"int $green"},{"required":"yes","param":"int $blue"},{"required":"no","param":"int $alpha = &#039;&#039;"}],"returns":"void"},"imagepalettecopy":{"desc":"Copy the palette from one image to another","params":[{"required":"yes","param":"resource $destination"},{"required":"yes","param":"resource $source"}],"returns":"void"},"ini_restore":{"desc":"Restores the value of a configuration option","params":[{"required":"yes","param":"string $varname"}],"returns":"void"},"java_last_exception_clear":{"desc":"Clear last Java exception","params":[],"returns":"void"},"libxml_clear_errors":{"desc":"Clear libxml error buffer","params":[],"returns":"void"},"libxml_set_streams_context":{"desc":"Set the streams context for the next libxml document load or write","params":[{"required":"yes","param":"resource $streams_context"}],"returns":"void"},"mailparse_msg_extract_part":{"desc":"Extracts/decodes a message section","params":[{"required":"yes","param":"resource $mimemail"},{"required":"yes","param":"string $msgbody"},{"required":"no","param":"callback $callbackfunc = &#039;&#039;"}],"returns":"void"},"maxdb_debug":{"desc":"Performs debugging operations","params":[{"required":"yes","param":"string $debug"}],"returns":"void"},"maxdb_disable_reads_from_master":{"desc":"Disable reads from master","params":[{"required":"yes","param":"resource $link"}],"returns":"void"},"maxdb_free_result":{"desc":"Frees the memory associated with a result","params":[{"required":"yes","param":"resource $result"}],"returns":"void"},"maxdb_server_end":{"desc":"Shut down the embedded server","params":[],"returns":"void"},"maxdb_stmt_free_result":{"desc":"Frees stored result memory for the given statement handle","params":[{"required":"yes","param":"resource $stmt"}],"returns":"void"},"ming_setcubicthreshold":{"desc":"Set cubic threshold","params":[{"required":"yes","param":"int $threshold"}],"returns":"void"},"ming_setscale":{"desc":"Set the global scaling factor.","params":[{"required":"yes","param":"float $scale"}],"returns":"void"},"ming_setswfcompression":{"desc":"Sets the SWF output compression","params":[{"required":"yes","param":"int $level"}],"returns":"void"},"ming_useconstants":{"desc":"Use constant pool","params":[{"required":"yes","param":"int $use"}],"returns":"void"},"ming_useswfversion":{"desc":"Sets the SWF version","params":[{"required":"yes","param":"int $version"}],"returns":"void"},"mqseries_back":{"desc":"MQSeries MQBACK","params":[{"required":"yes","param":"resource $hconn"},{"required":"yes","param":"resource $compCode"},{"required":"yes","param":"resource $reason"}],"returns":"void"},"mqseries_begin":{"desc":"MQseries MQBEGIN","params":[{"required":"yes","param":"resource $hconn"},{"required":"yes","param":"array $beginOptions"},{"required":"yes","param":"resource $compCode"},{"required":"yes","param":"resource $reason"}],"returns":"void"},"mqseries_close":{"desc":"MQSeries MQCLOSE","params":[{"required":"yes","param":"resource $hconn"},{"required":"yes","param":"resource $hobj"},{"required":"yes","param":"int $options"},{"required":"yes","param":"resource $compCode"},{"required":"yes","param":"resource $reason"}],"returns":"void"},"mqseries_cmit":{"desc":"MQSeries MQCMIT","params":[{"required":"yes","param":"resource $hconn"},{"required":"yes","param":"resource $compCode"},{"required":"yes","param":"resource $reason"}],"returns":"void"},"mqseries_conn":{"desc":"MQSeries MQCONN","params":[{"required":"yes","param":"string $qManagerName"},{"required":"yes","param":"resource $hconn"},{"required":"yes","param":"resource $compCode"},{"required":"yes","param":"resource $reason"}],"returns":"void"},"mqseries_connx":{"desc":"MQSeries MQCONNX","params":[{"required":"yes","param":"string $qManagerName"},{"required":"yes","param":"array $connOptions"},{"required":"yes","param":"resource $hconn"},{"required":"yes","param":"resource $compCode"},{"required":"yes","param":"resource $reason"}],"returns":"void"},"mqseries_disc":{"desc":"MQSeries MQDISC","params":[{"required":"yes","param":"resource $hconn"},{"required":"yes","param":"resource $compCode"},{"required":"yes","param":"resource $reason"}],"returns":"void"},"mqseries_get":{"desc":"MQSeries MQGET","params":[{"required":"yes","param":"resource $hConn"},{"required":"yes","param":"resource $hObj"},{"required":"yes","param":"array $md"},{"required":"yes","param":"array $gmo"},{"required":"yes","param":"int $bufferLength"},{"required":"yes","param":"string $msg"},{"required":"yes","param":"int $data_length"},{"required":"yes","param":"resource $compCode"},{"required":"yes","param":"resource $reason"}],"returns":"void"},"mqseries_inq":{"desc":"MQSeries MQINQ","params":[{"required":"yes","param":"resource $hconn"},{"required":"yes","param":"resource $hobj"},{"required":"yes","param":"int $selectorCount"},{"required":"yes","param":"array $selectors"},{"required":"yes","param":"int $intAttrCount"},{"required":"yes","param":"resource $intAttr"},{"required":"yes","param":"int $charAttrLength"},{"required":"yes","param":"resource $charAttr"},{"required":"yes","param":"resource $compCode"},{"required":"yes","param":"resource $reason"}],"returns":"void"},"mqseries_open":{"desc":"MQSeries MQOPEN","params":[{"required":"yes","param":"resource $hconn"},{"required":"yes","param":"array $objDesc"},{"required":"yes","param":"int $option"},{"required":"yes","param":"resource $hobj"},{"required":"yes","param":"resource $compCode"},{"required":"yes","param":"resource $reason"}],"returns":"void"},"mqseries_put":{"desc":"MQSeries MQPUT","params":[{"required":"yes","param":"resource $hConn"},{"required":"yes","param":"resource $hObj"},{"required":"yes","param":"array $md"},{"required":"yes","param":"array $pmo"},{"required":"yes","param":"string $message"},{"required":"yes","param":"resource $compCode"},{"required":"yes","param":"resource $reason"}],"returns":"void"},"mqseries_put1":{"desc":"MQSeries MQPUT1","params":[{"required":"yes","param":"resource $hconn"},{"required":"yes","param":"resource $objDesc"},{"required":"yes","param":"resource $msgDesc"},{"required":"yes","param":"resource $pmo"},{"required":"yes","param":"string $buffer"},{"required":"yes","param":"resource $compCode"},{"required":"yes","param":"resource $reason"}],"returns":"void"},"mqseries_set":{"desc":"MQSeries MQSET","params":[{"required":"yes","param":"resource $hconn"},{"required":"yes","param":"resource $hobj"},{"required":"yes","param":"int $selectorcount"},{"required":"yes","param":"array $selectors"},{"required":"yes","param":"int $intattrcount"},{"required":"yes","param":"array $intattrs"},{"required":"yes","param":"int $charattrlength"},{"required":"yes","param":"array $charattrs"},{"required":"yes","param":"resource $compCode"},{"required":"yes","param":"resource $reason"}],"returns":"void"},"msession_disconnect":{"desc":"Close connection to msession server","params":[],"returns":"void"},"msession_set_array":{"desc":"Set msession variables from an array","params":[{"required":"yes","param":"string $session"},{"required":"yes","param":"array $tuples"}],"returns":"void"},"mssql_min_error_severity":{"desc":"Sets the minimum error severity","params":[{"required":"yes","param":"int $severity"}],"returns":"void"},"mssql_min_message_severity":{"desc":"Sets the minimum message severity","params":[{"required":"yes","param":"int $severity"}],"returns":"void"},"mt_srand":{"desc":"Seed the better random number generator","params":[{"required":"no","param":"int $seed = &#039;&#039;"}],"returns":"void"},"mysqli_embedded_server_end":{"desc":"Stop embedded server","params":[],"returns":"void"},"mysqli_free_result":{"desc":"Frees the memory associated with a result","params":[{"required":"yes","param":"mysqli_result $result"}],"returns":"void"},"mysqli_set_local_infile_default":{"desc":"Unsets user defined handler for load local infile command","params":[{"required":"yes","param":"mysqli $link"}],"returns":"void"},"mysqli_stmt_data_seek":{"desc":"Seeks to an arbitrary row in statement result set","params":[{"required":"yes","param":"int $offset"},{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"void"},"mysqli_stmt_free_result":{"desc":"Frees stored result memory for the given statement handle","params":[{"required":"yes","param":"mysqli_stmt $stmt"}],"returns":"void"},"m_destroyengine":{"desc":"Free memory associated with IP/SSL connectivity","params":[],"returns":"void"},"ncurses_bkgdset":{"desc":"Control screen background","params":[{"required":"yes","param":"int $attrchar"}],"returns":"void"},"ncurses_filter":{"desc":"Set LINES for iniscr() and newterm() to 1","params":[],"returns":"void"},"ncurses_getmaxyx":{"desc":"Returns the size of a window","params":[{"required":"yes","param":"resource $window"},{"required":"yes","param":"int $y"},{"required":"yes","param":"int $x"}],"returns":"void"},"ncurses_getyx":{"desc":"Returns the current cursor position for a window","params":[{"required":"yes","param":"resource $window"},{"required":"yes","param":"int $y"},{"required":"yes","param":"int $x"}],"returns":"void"},"ncurses_init":{"desc":"Initialize ncurses","params":[],"returns":"void"},"ncurses_noqiflush":{"desc":"Do not flush on signal characters","params":[],"returns":"void"},"ncurses_qiflush":{"desc":"Flush on signal characters","params":[],"returns":"void"},"ncurses_timeout":{"desc":"Set timeout for special key sequences","params":[{"required":"yes","param":"int $millisec"}],"returns":"void"},"ncurses_update_panels":{"desc":"Refreshes the virtual screen to reflect the relations between panels in the stack","params":[],"returns":"void"},"ncurses_use_env":{"desc":"Control use of environment information about terminal size","params":[{"required":"yes","param":"bool $flag"}],"returns":"void"},"newt_bell":{"desc":"Send a beep to the terminal","params":[],"returns":"void"},"newt_checkbox_set_flags":{"desc":"Configures checkbox resource","params":[{"required":"yes","param":"resource $checkbox"},{"required":"yes","param":"int $flags"},{"required":"yes","param":"int $sense"}],"returns":"void"},"newt_checkbox_set_value":{"desc":"Sets the value of the checkbox","params":[{"required":"yes","param":"resource $checkbox"},{"required":"yes","param":"string $value"}],"returns":"void"},"newt_checkbox_tree_add_item":{"desc":"Adds new item to the checkbox tree","params":[{"required":"yes","param":"resource $checkboxtree"},{"required":"yes","param":"string $text"},{"required":"yes","param":"mixed $data"},{"required":"yes","param":"int $flags"},{"required":"yes","param":"int $index"},{"required":"no","param":"int $... = &#039;&#039;"}],"returns":"void"},"newt_checkbox_tree_set_current":{"desc":"","params":[{"required":"yes","param":"resource $checkboxtree"},{"required":"yes","param":"mixed $data"}],"returns":"void"},"newt_checkbox_tree_set_entry":{"desc":"","params":[{"required":"yes","param":"resource $checkboxtree"},{"required":"yes","param":"mixed $data"},{"required":"yes","param":"string $text"}],"returns":"void"},"newt_checkbox_tree_set_entry_value":{"desc":"","params":[{"required":"yes","param":"resource $checkboxtree"},{"required":"yes","param":"mixed $data"},{"required":"yes","param":"string $value"}],"returns":"void"},"newt_checkbox_tree_set_width":{"desc":"","params":[{"required":"yes","param":"resource $checkbox_tree"},{"required":"yes","param":"int $width"}],"returns":"void"},"newt_clear_key_buffer":{"desc":"Discards the contents of the terminal&#039;s input buffer without waiting for additional input","params":[],"returns":"void"},"newt_cls":{"desc":"","params":[],"returns":"void"},"newt_component_add_callback":{"desc":"","params":[{"required":"yes","param":"resource $component"},{"required":"yes","param":"mixed $func_name"},{"required":"yes","param":"mixed $data"}],"returns":"void"},"newt_component_takes_focus":{"desc":"","params":[{"required":"yes","param":"resource $component"},{"required":"yes","param":"bool $takes_focus"}],"returns":"void"},"newt_cursor_off":{"desc":"","params":[],"returns":"void"},"newt_cursor_on":{"desc":"","params":[],"returns":"void"},"newt_delay":{"desc":"","params":[{"required":"yes","param":"int $microseconds"}],"returns":"void"},"newt_draw_form":{"desc":"","params":[{"required":"yes","param":"resource $form"}],"returns":"void"},"newt_draw_root_text":{"desc":"Displays the string text at the position indicated","params":[{"required":"yes","param":"int $left"},{"required":"yes","param":"int $top"},{"required":"yes","param":"string $text"}],"returns":"void"},"newt_entry_set":{"desc":"","params":[{"required":"yes","param":"resource $entry"},{"required":"yes","param":"string $value"},{"required":"no","param":"bool $cursor_at_end = &#039;&#039;"}],"returns":"void"},"newt_entry_set_filter":{"desc":"","params":[{"required":"yes","param":"resource $entry"},{"required":"yes","param":"callback $filter"},{"required":"yes","param":"mixed $data"}],"returns":"void"},"newt_entry_set_flags":{"desc":"","params":[{"required":"yes","param":"resource $entry"},{"required":"yes","param":"int $flags"},{"required":"yes","param":"int $sense"}],"returns":"void"},"newt_form_add_component":{"desc":"Adds a single component to the form","params":[{"required":"yes","param":"resource $form"},{"required":"yes","param":"resource $component"}],"returns":"void"},"newt_form_add_components":{"desc":"Add several components to the form","params":[{"required":"yes","param":"resource $form"},{"required":"yes","param":"array $components"}],"returns":"void"},"newt_form_add_hot_key":{"desc":"","params":[{"required":"yes","param":"resource $form"},{"required":"yes","param":"int $key"}],"returns":"void"},"newt_form_destroy":{"desc":"Destroys a form","params":[{"required":"yes","param":"resource $form"}],"returns":"void"},"newt_form_run":{"desc":"Runs a form","params":[{"required":"yes","param":"resource $form"},{"required":"yes","param":"array $exit_struct"}],"returns":"void"},"newt_form_set_background":{"desc":"","params":[{"required":"yes","param":"resource $from"},{"required":"yes","param":"int $background"}],"returns":"void"},"newt_form_set_height":{"desc":"","params":[{"required":"yes","param":"resource $form"},{"required":"yes","param":"int $height"}],"returns":"void"},"newt_form_set_size":{"desc":"","params":[{"required":"yes","param":"resource $form"}],"returns":"void"},"newt_form_set_timer":{"desc":"","params":[{"required":"yes","param":"resource $form"},{"required":"yes","param":"int $milliseconds"}],"returns":"void"},"newt_form_set_width":{"desc":"","params":[{"required":"yes","param":"resource $form"},{"required":"yes","param":"int $width"}],"returns":"void"},"newt_form_watch_fd":{"desc":"","params":[{"required":"yes","param":"resource $form"},{"required":"yes","param":"resource $stream"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"void"},"newt_get_screen_size":{"desc":"Fills in the passed references with the current size of the terminal","params":[{"required":"yes","param":"int $cols"},{"required":"yes","param":"int $rows"}],"returns":"void"},"newt_grid_add_components_to_form":{"desc":"","params":[{"required":"yes","param":"resource $grid"},{"required":"yes","param":"resource $form"},{"required":"yes","param":"bool $recurse"}],"returns":"void"},"newt_grid_free":{"desc":"","params":[{"required":"yes","param":"resource $grid"},{"required":"yes","param":"bool $recurse"}],"returns":"void"},"newt_grid_get_size":{"desc":"","params":[{"required":"yes","param":"resouce $grid"},{"required":"yes","param":"int $width"},{"required":"yes","param":"int $height"}],"returns":"void"},"newt_grid_place":{"desc":"","params":[{"required":"yes","param":"resource $grid"},{"required":"yes","param":"int $left"},{"required":"yes","param":"int $top"}],"returns":"void"},"newt_grid_set_field":{"desc":"","params":[{"required":"yes","param":"resource $grid"},{"required":"yes","param":"int $col"},{"required":"yes","param":"int $row"},{"required":"yes","param":"int $type"},{"required":"yes","param":"resource $val"},{"required":"yes","param":"int $pad_left"},{"required":"yes","param":"int $pad_top"},{"required":"yes","param":"int $pad_right"},{"required":"yes","param":"int $pad_bottom"},{"required":"yes","param":"int $anchor"},{"required":"no","param":"int $flags = &#039;&#039;"}],"returns":"void"},"newt_grid_wrapped_window":{"desc":"","params":[{"required":"yes","param":"resource $grid"},{"required":"yes","param":"string $title"}],"returns":"void"},"newt_grid_wrapped_window_at":{"desc":"","params":[{"required":"yes","param":"resource $grid"},{"required":"yes","param":"string $title"},{"required":"yes","param":"int $left"},{"required":"yes","param":"int $top"}],"returns":"void"},"newt_label_set_text":{"desc":"","params":[{"required":"yes","param":"resource $label"},{"required":"yes","param":"string $text"}],"returns":"void"},"newt_listbox_append_entry":{"desc":"","params":[{"required":"yes","param":"resource $listbox"},{"required":"yes","param":"string $text"},{"required":"yes","param":"mixed $data"}],"returns":"void"},"newt_listbox_clear":{"desc":"","params":[{"required":"yes","param":"resource $listobx"}],"returns":"void"},"newt_listbox_clear_selection":{"desc":"","params":[{"required":"yes","param":"resource $listbox"}],"returns":"void"},"newt_listbox_delete_entry":{"desc":"","params":[{"required":"yes","param":"resource $listbox"},{"required":"yes","param":"mixed $key"}],"returns":"void"},"newt_listbox_insert_entry":{"desc":"","params":[{"required":"yes","param":"resource $listbox"},{"required":"yes","param":"string $text"},{"required":"yes","param":"mixed $data"},{"required":"yes","param":"mixed $key"}],"returns":"void"},"newt_listbox_select_item":{"desc":"","params":[{"required":"yes","param":"resource $listbox"},{"required":"yes","param":"mixed $key"},{"required":"yes","param":"int $sense"}],"returns":"void"},"newt_listbox_set_current":{"desc":"","params":[{"required":"yes","param":"resource $listbox"},{"required":"yes","param":"int $num"}],"returns":"void"},"newt_listbox_set_current_by_key":{"desc":"","params":[{"required":"yes","param":"resource $listbox"},{"required":"yes","param":"mixed $key"}],"returns":"void"},"newt_listbox_set_data":{"desc":"","params":[{"required":"yes","param":"resource $listbox"},{"required":"yes","param":"int $num"},{"required":"yes","param":"mixed $data"}],"returns":"void"},"newt_listbox_set_entry":{"desc":"","params":[{"required":"yes","param":"resource $listbox"},{"required":"yes","param":"int $num"},{"required":"yes","param":"string $text"}],"returns":"void"},"newt_listbox_set_width":{"desc":"","params":[{"required":"yes","param":"resource $listbox"},{"required":"yes","param":"int $width"}],"returns":"void"},"newt_listitem_set":{"desc":"","params":[{"required":"yes","param":"resource $item"},{"required":"yes","param":"string $text"}],"returns":"void"},"newt_pop_help_line":{"desc":"Replaces the current help line with the one from the stack","params":[],"returns":"void"},"newt_pop_window":{"desc":"Removes the top window from the display","params":[],"returns":"void"},"newt_push_help_line":{"desc":"Saves the current help line on a stack, and displays the new line","params":[{"required":"no","param":"string $text = &#039;&#039;"}],"returns":"void"},"newt_redraw_help_line":{"desc":"","params":[],"returns":"void"},"newt_refresh":{"desc":"Updates modified portions of the screen","params":[],"returns":"void"},"newt_resize_screen":{"desc":"","params":[{"required":"no","param":"bool $redraw = &#039;&#039;"}],"returns":"void"},"newt_resume":{"desc":"Resume using the newt interface after calling newt_suspend","params":[],"returns":"void"},"newt_scale_set":{"desc":"","params":[{"required":"yes","param":"resource $scale"},{"required":"yes","param":"int $amount"}],"returns":"void"},"newt_scrollbar_set":{"desc":"","params":[{"required":"yes","param":"resource $scrollbar"},{"required":"yes","param":"int $where"},{"required":"yes","param":"int $total"}],"returns":"void"},"newt_set_help_callback":{"desc":"","params":[{"required":"yes","param":"mixed $function"}],"returns":"void"},"newt_set_suspend_callback":{"desc":"Set a callback function which gets invoked when user presses the suspend key","params":[{"required":"yes","param":"callback $function"},{"required":"yes","param":"mixed $data"}],"returns":"void"},"newt_suspend":{"desc":"Tells newt to return the terminal to its initial state","params":[],"returns":"void"},"newt_textbox_set_height":{"desc":"","params":[{"required":"yes","param":"resource $textbox"},{"required":"yes","param":"int $height"}],"returns":"void"},"newt_textbox_set_text":{"desc":"","params":[{"required":"yes","param":"resource $textbox"},{"required":"yes","param":"string $text"}],"returns":"void"},"newt_wait_for_key":{"desc":"Doesn&#039;t return until a key has been pressed","params":[],"returns":"void"},"newt_win_message":{"desc":"","params":[{"required":"yes","param":"string $title"},{"required":"yes","param":"string $button_text"},{"required":"yes","param":"string $format"},{"required":"no","param":"mixed $args = &#039;&#039;"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"void"},"newt_win_messagev":{"desc":"","params":[{"required":"yes","param":"string $title"},{"required":"yes","param":"string $button_text"},{"required":"yes","param":"string $format"},{"required":"yes","param":"array $args"}],"returns":"void"},"ob_clean":{"desc":"Clean (erase) the output buffer","params":[],"returns":"void"},"ob_flush":{"desc":"Flush (send) the output buffer","params":[],"returns":"void"},"ob_implicit_flush":{"desc":"Turn implicit flush on/off","params":[{"required":"no","param":"int $flag = true"}],"returns":"void"},"oci_internal_debug":{"desc":"Enables or disables internal debug output","params":[{"required":"yes","param":"bool $onoff"}],"returns":"void"},"odbc_close":{"desc":"Close an ODBC connection","params":[{"required":"yes","param":"resource $connection_id"}],"returns":"void"},"odbc_close_all":{"desc":"Close all ODBC connections","params":[],"returns":"void"},"openssl_free_key":{"desc":"Free key resource","params":[{"required":"yes","param":"resource $key_identifier"}],"returns":"void"},"openssl_pkey_free":{"desc":"Frees a private key","params":[{"required":"yes","param":"resource $key"}],"returns":"void"},"openssl_x509_free":{"desc":"Free certificate resource","params":[{"required":"yes","param":"resource $x509cert"}],"returns":"void"},"overload":{"desc":"Enable property and method call overloading for a class","params":[{"required":"yes","param":"string $class_name"}],"returns":"void"},"ovrimos_close":{"desc":"Closes the connection to ovrimos","params":[{"required":"yes","param":"int $connection"}],"returns":"void"},"parse_str":{"desc":"Parses the string into variables","params":[{"required":"yes","param":"string $str"},{"required":"no","param":"array $arr = &#039;&#039;"}],"returns":"void"},"passthru":{"desc":"Execute an external program and display raw output","params":[{"required":"yes","param":"string $command"},{"required":"no","param":"int $return_var = &#039;&#039;"}],"returns":"void"},"pcntl_exec":{"desc":"Executes specified program in current process space","params":[{"required":"yes","param":"string $path"},{"required":"no","param":"array $args = &#039;&#039;"},{"required":"no","param":"array $envs = &#039;&#039;"}],"returns":"void"},"printer_abort":{"desc":"Deletes the printer&#039;s spool file","params":[{"required":"yes","param":"resource $printer_handle"}],"returns":"void"},"printer_close":{"desc":"Close an open printer connection","params":[{"required":"yes","param":"resource $printer_handle"}],"returns":"void"},"printer_create_dc":{"desc":"Create a new device context","params":[{"required":"yes","param":"resource $printer_handle"}],"returns":"void"},"printer_delete_brush":{"desc":"Delete a brush","params":[{"required":"yes","param":"resource $brush_handle"}],"returns":"void"},"printer_delete_font":{"desc":"Delete a font","params":[{"required":"yes","param":"resource $font_handle"}],"returns":"void"},"printer_delete_pen":{"desc":"Delete a pen","params":[{"required":"yes","param":"resource $pen_handle"}],"returns":"void"},"printer_draw_chord":{"desc":"Draw a chord","params":[{"required":"yes","param":"resource $printer_handle"},{"required":"yes","param":"int $rec_x"},{"required":"yes","param":"int $rec_y"},{"required":"yes","param":"int $rec_x1"},{"required":"yes","param":"int $rec_y1"},{"required":"yes","param":"int $rad_x"},{"required":"yes","param":"int $rad_y"},{"required":"yes","param":"int $rad_x1"},{"required":"yes","param":"int $rad_y1"}],"returns":"void"},"printer_draw_elipse":{"desc":"Draw an ellipse","params":[{"required":"yes","param":"resource $printer_handle"},{"required":"yes","param":"int $ul_x"},{"required":"yes","param":"int $ul_y"},{"required":"yes","param":"int $lr_x"},{"required":"yes","param":"int $lr_y"}],"returns":"void"},"printer_draw_line":{"desc":"Draw a line","params":[{"required":"yes","param":"resource $printer_handle"},{"required":"yes","param":"int $from_x"},{"required":"yes","param":"int $from_y"},{"required":"yes","param":"int $to_x"},{"required":"yes","param":"int $to_y"}],"returns":"void"},"printer_draw_pie":{"desc":"Draw a pie","params":[{"required":"yes","param":"resource $printer_handle"},{"required":"yes","param":"int $rec_x"},{"required":"yes","param":"int $rec_y"},{"required":"yes","param":"int $rec_x1"},{"required":"yes","param":"int $rec_y1"},{"required":"yes","param":"int $rad1_x"},{"required":"yes","param":"int $rad1_y"},{"required":"yes","param":"int $rad2_x"},{"required":"yes","param":"int $rad2_y"}],"returns":"void"},"printer_draw_rectangle":{"desc":"Draw a rectangle","params":[{"required":"yes","param":"resource $printer_handle"},{"required":"yes","param":"int $ul_x"},{"required":"yes","param":"int $ul_y"},{"required":"yes","param":"int $lr_x"},{"required":"yes","param":"int $lr_y"}],"returns":"void"},"printer_draw_roundrect":{"desc":"Draw a rectangle with rounded corners","params":[{"required":"yes","param":"resource $printer_handle"},{"required":"yes","param":"int $ul_x"},{"required":"yes","param":"int $ul_y"},{"required":"yes","param":"int $lr_x"},{"required":"yes","param":"int $lr_y"},{"required":"yes","param":"int $width"},{"required":"yes","param":"int $height"}],"returns":"void"},"printer_draw_text":{"desc":"Draw text","params":[{"required":"yes","param":"resource $printer_handle"},{"required":"yes","param":"string $text"},{"required":"yes","param":"int $x"},{"required":"yes","param":"int $y"}],"returns":"void"},"printer_select_brush":{"desc":"Select a brush","params":[{"required":"yes","param":"resource $printer_handle"},{"required":"yes","param":"resource $brush_handle"}],"returns":"void"},"printer_select_font":{"desc":"Select a font","params":[{"required":"yes","param":"resource $printer_handle"},{"required":"yes","param":"resource $font_handle"}],"returns":"void"},"printer_select_pen":{"desc":"Select a pen","params":[{"required":"yes","param":"resource $printer_handle"},{"required":"yes","param":"resource $pen_handle"}],"returns":"void"},"ps_close_image":{"desc":"Closes image and frees memory","params":[{"required":"yes","param":"resource $psdoc"},{"required":"yes","param":"int $imageid"}],"returns":"void"},"px_set_tablename":{"desc":"Sets the name of a table (deprecated)","params":[{"required":"yes","param":"resource $pxdoc"},{"required":"yes","param":"string $name"}],"returns":"void"},"readline_callback_read_char":{"desc":"Reads a character and informs the readline callback interface when a line is received","params":[],"returns":"void"},"readline_on_new_line":{"desc":"Inform readline that the cursor has moved to a new line","params":[],"returns":"void"},"readline_redisplay":{"desc":"Redraws the display","params":[],"returns":"void"},"register_shutdown_function":{"desc":"Register a function for execution on shutdown","params":[{"required":"yes","param":"callback $function"},{"required":"no","param":"mixed $parameter = &#039;&#039;"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"void"},"restore_include_path":{"desc":"Restores the value of the include_path configuration option","params":[],"returns":"void"},"rewinddir":{"desc":"Rewind directory handle","params":[{"required":"no","param":"resource $dir_handle = &#039;&#039;"}],"returns":"void"},"Runkit_Sandbox_Parent":{"desc":"Runkit Anti-Sandbox Class","params":[],"returns":"void"},"session_set_cookie_params":{"desc":"Set the session cookie parameters","params":[{"required":"yes","param":"int $lifetime"},{"required":"no","param":"string $path = &#039;&#039;"},{"required":"no","param":"string $domain = &#039;&#039;"},{"required":"no","param":"bool $secure = false"},{"required":"no","param":"bool $httponly = false"}],"returns":"void"},"session_unset":{"desc":"Free all session variables","params":[],"returns":"void"},"session_write_close":{"desc":"Write session data and end session","params":[],"returns":"void"},"setproctitle":{"desc":"Set the process title","params":[{"required":"yes","param":"string $title"}],"returns":"void"},"set_time_limit":{"desc":"Limits the maximum execution time","params":[{"required":"yes","param":"int $seconds"}],"returns":"void"},"shmop_close":{"desc":"Close shared memory block","params":[{"required":"yes","param":"int $shmid"}],"returns":"void"},"snmp_set_oid_numeric_print":{"desc":"Return all objects including their respective object id within the specified one","params":[{"required":"yes","param":"int $oid_format"}],"returns":"void"},"socket_clear_error":{"desc":"Clears the error on the socket or the last error code","params":[{"required":"no","param":"resource $socket = &#039;&#039;"}],"returns":"void"},"socket_close":{"desc":"Closes a socket resource","params":[{"required":"yes","param":"resource $socket"}],"returns":"void"},"spl_autoload":{"desc":"Default implementation for __autoload()","params":[{"required":"yes","param":"string $class_name"},{"required":"no","param":"string $file_extensions = spl_autoload_extensions("}],"returns":"void"},"spl_autoload_call":{"desc":"Try all registered __autoload() function to load the requested class","params":[{"required":"yes","param":"string $class_name"}],"returns":"void"},"sqlite_busy_timeout":{"desc":"Set busy timeout duration, or disable busy handlers","params":[{"required":"yes","param":"resource $dbhandle"},{"required":"yes","param":"int $milliseconds"}],"returns":"void"},"sqlite_close":{"desc":"Closes an open SQLite database","params":[{"required":"yes","param":"resource $dbhandle"}],"returns":"void"},"sqlite_create_aggregate":{"desc":"Register an aggregating UDF for use in SQL statements","params":[{"required":"yes","param":"resource $dbhandle"},{"required":"yes","param":"string $function_name"},{"required":"yes","param":"callback $step_func"},{"required":"yes","param":"callback $finalize_func"},{"required":"no","param":"int $num_args = -1"}],"returns":"void"},"sqlite_create_function":{"desc":"Registers a &quot;regular&quot; User Defined Function for use in SQL statements","params":[{"required":"yes","param":"resource $dbhandle"},{"required":"yes","param":"string $function_name"},{"required":"yes","param":"callback $callback"},{"required":"no","param":"int $num_args = -1"}],"returns":"void"},"srand":{"desc":"Seed the random number generator","params":[{"required":"no","param":"int $seed = &#039;&#039;"}],"returns":"void"},"stats_rand_setall":{"desc":"Not documented","params":[{"required":"yes","param":"int $iseed1"},{"required":"yes","param":"int $iseed2"}],"returns":"void"},"stomp_set_read_timeout":{"desc":"Sets read timeout","params":[{"required":"yes","param":"integer $seconds"},{"required":"no","param":"integer $microseconds = &#039;&#039;"},{"required":"yes","param":"resource $link"}],"returns":"void"},"stream_bucket_append":{"desc":"Append bucket to brigade","params":[{"required":"yes","param":"resource $brigade"},{"required":"yes","param":"resource $bucket"}],"returns":"void"},"stream_bucket_prepend":{"desc":"Prepend bucket to brigade","params":[{"required":"yes","param":"resource $brigade"},{"required":"yes","param":"resource $bucket"}],"returns":"void"},"svn_auth_set_parameter":{"desc":"Sets an authentication parameter","params":[{"required":"yes","param":"string $key"},{"required":"yes","param":"string $value"}],"returns":"void"},"swf_actiongeturl":{"desc":"Get a URL from a Shockwave Flash movie","params":[{"required":"yes","param":"string $url"},{"required":"yes","param":"string $target"}],"returns":"void"},"swf_actiongotoframe":{"desc":"Play a frame and then stop","params":[{"required":"yes","param":"int $framenumber"}],"returns":"void"},"swf_actiongotolabel":{"desc":"Display a frame with the specified label","params":[{"required":"yes","param":"string $label"}],"returns":"void"},"swf_actionnextframe":{"desc":"Go forward one frame","params":[],"returns":"void"},"swf_actionplay":{"desc":"Start playing the flash movie from the current frame","params":[],"returns":"void"},"swf_actionprevframe":{"desc":"Go backwards one frame","params":[],"returns":"void"},"swf_actionsettarget":{"desc":"Set the context for actions","params":[{"required":"yes","param":"string $target"}],"returns":"void"},"swf_actionstop":{"desc":"Stop playing the flash movie at the current frame","params":[],"returns":"void"},"swf_actiontogglequality":{"desc":"Toggle between low and high quality","params":[],"returns":"void"},"swf_actionwaitforframe":{"desc":"Skip actions if a frame has not been loaded","params":[{"required":"yes","param":"int $framenumber"},{"required":"yes","param":"int $skipcount"}],"returns":"void"},"swf_addbuttonrecord":{"desc":"Controls location, appearance and active area of the current button","params":[{"required":"yes","param":"int $states"},{"required":"yes","param":"int $shapeid"},{"required":"yes","param":"int $depth"}],"returns":"void"},"swf_addcolor":{"desc":"Set the global add color to the rgba value specified","params":[{"required":"yes","param":"float $r"},{"required":"yes","param":"float $g"},{"required":"yes","param":"float $b"},{"required":"yes","param":"float $a"}],"returns":"void"},"swf_closefile":{"desc":"Close the current Shockwave Flash file","params":[{"required":"no","param":"int $return_file = &#039;&#039;"}],"returns":"void"},"swf_definebitmap":{"desc":"Define a bitmap","params":[{"required":"yes","param":"int $objid"},{"required":"yes","param":"string $image_name"}],"returns":"void"},"swf_definefont":{"desc":"Defines a font","params":[{"required":"yes","param":"int $fontid"},{"required":"yes","param":"string $fontname"}],"returns":"void"},"swf_defineline":{"desc":"Define a line","params":[{"required":"yes","param":"int $objid"},{"required":"yes","param":"float $x1"},{"required":"yes","param":"float $y1"},{"required":"yes","param":"float $x2"},{"required":"yes","param":"float $y2"},{"required":"yes","param":"float $width"}],"returns":"void"},"swf_definepoly":{"desc":"Define a polygon","params":[{"required":"yes","param":"int $objid"},{"required":"yes","param":"array $coords"},{"required":"yes","param":"int $npoints"},{"required":"yes","param":"float $width"}],"returns":"void"},"swf_definerect":{"desc":"Define a rectangle","params":[{"required":"yes","param":"int $objid"},{"required":"yes","param":"float $x1"},{"required":"yes","param":"float $y1"},{"required":"yes","param":"float $x2"},{"required":"yes","param":"float $y2"},{"required":"yes","param":"float $width"}],"returns":"void"},"swf_definetext":{"desc":"Define a text string","params":[{"required":"yes","param":"int $objid"},{"required":"yes","param":"string $str"},{"required":"yes","param":"int $docenter"}],"returns":"void"},"swf_endbutton":{"desc":"End the definition of the current button","params":[],"returns":"void"},"swf_enddoaction":{"desc":"End the current action","params":[],"returns":"void"},"swf_endshape":{"desc":"Completes the definition of the current shape","params":[],"returns":"void"},"swf_endsymbol":{"desc":"End the definition of a symbol","params":[],"returns":"void"},"swf_fontsize":{"desc":"Change the font size","params":[{"required":"yes","param":"float $size"}],"returns":"void"},"swf_fontslant":{"desc":"Set the font slant","params":[{"required":"yes","param":"float $slant"}],"returns":"void"},"swf_fonttracking":{"desc":"Set the current font tracking","params":[{"required":"yes","param":"float $tracking"}],"returns":"void"},"swf_labelframe":{"desc":"Label the current frame","params":[{"required":"yes","param":"string $name"}],"returns":"void"},"swf_lookat":{"desc":"Define a viewing transformation","params":[{"required":"yes","param":"float $view_x"},{"required":"yes","param":"float $view_y"},{"required":"yes","param":"float $view_z"},{"required":"yes","param":"float $reference_x"},{"required":"yes","param":"float $reference_y"},{"required":"yes","param":"float $reference_z"},{"required":"yes","param":"float $twist"}],"returns":"void"},"swf_modifyobject":{"desc":"Modify an object","params":[{"required":"yes","param":"int $depth"},{"required":"yes","param":"int $how"}],"returns":"void"},"swf_mulcolor":{"desc":"Sets the global multiply color to the rgba value specified","params":[{"required":"yes","param":"float $r"},{"required":"yes","param":"float $g"},{"required":"yes","param":"float $b"},{"required":"yes","param":"float $a"}],"returns":"void"},"swf_oncondition":{"desc":"Describe a transition used to trigger an action list","params":[{"required":"yes","param":"int $transition"}],"returns":"void"},"swf_openfile":{"desc":"Open a new Shockwave Flash file","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"float $width"},{"required":"yes","param":"float $height"},{"required":"yes","param":"float $framerate"},{"required":"yes","param":"float $r"},{"required":"yes","param":"float $g"},{"required":"yes","param":"float $b"}],"returns":"void"},"swf_ortho":{"desc":"Defines an orthographic mapping of user coordinates onto the current viewport","params":[{"required":"yes","param":"float $xmin"},{"required":"yes","param":"float $xmax"},{"required":"yes","param":"float $ymin"},{"required":"yes","param":"float $ymax"},{"required":"yes","param":"float $zmin"},{"required":"yes","param":"float $zmax"}],"returns":"void"},"swf_ortho2":{"desc":"Defines 2D orthographic mapping of user coordinates onto the current viewport","params":[{"required":"yes","param":"float $xmin"},{"required":"yes","param":"float $xmax"},{"required":"yes","param":"float $ymin"},{"required":"yes","param":"float $ymax"}],"returns":"void"},"swf_perspective":{"desc":"Define a perspective projection transformation","params":[{"required":"yes","param":"float $fovy"},{"required":"yes","param":"float $aspect"},{"required":"yes","param":"float $near"},{"required":"yes","param":"float $far"}],"returns":"void"},"swf_placeobject":{"desc":"Place an object onto the screen","params":[{"required":"yes","param":"int $objid"},{"required":"yes","param":"int $depth"}],"returns":"void"},"swf_polarview":{"desc":"Define the viewer&#039;s position with polar coordinates","params":[{"required":"yes","param":"float $dist"},{"required":"yes","param":"float $azimuth"},{"required":"yes","param":"float $incidence"},{"required":"yes","param":"float $twist"}],"returns":"void"},"swf_popmatrix":{"desc":"Restore a previous transformation matrix","params":[],"returns":"void"},"swf_posround":{"desc":"Enables or Disables the rounding of the translation when objects are placed or moved","params":[{"required":"yes","param":"int $round"}],"returns":"void"},"swf_pushmatrix":{"desc":"Push the current transformation matrix back onto the stack","params":[],"returns":"void"},"swf_removeobject":{"desc":"Remove an object","params":[{"required":"yes","param":"int $depth"}],"returns":"void"},"swf_rotate":{"desc":"Rotate the current transformation","params":[{"required":"yes","param":"float $angle"},{"required":"yes","param":"string $axis"}],"returns":"void"},"swf_scale":{"desc":"Scale the current transformation","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"float $z"}],"returns":"void"},"swf_setfont":{"desc":"Change the current font","params":[{"required":"yes","param":"int $fontid"}],"returns":"void"},"swf_setframe":{"desc":"Switch to a specified frame","params":[{"required":"yes","param":"int $framenumber"}],"returns":"void"},"swf_shapearc":{"desc":"Draw a circular arc","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"float $r"},{"required":"yes","param":"float $ang1"},{"required":"yes","param":"float $ang2"}],"returns":"void"},"swf_shapecurveto":{"desc":"Draw a quadratic bezier curve between two points","params":[{"required":"yes","param":"float $x1"},{"required":"yes","param":"float $y1"},{"required":"yes","param":"float $x2"},{"required":"yes","param":"float $y2"}],"returns":"void"},"swf_shapecurveto3":{"desc":"Draw a cubic bezier curve","params":[{"required":"yes","param":"float $x1"},{"required":"yes","param":"float $y1"},{"required":"yes","param":"float $x2"},{"required":"yes","param":"float $y2"},{"required":"yes","param":"float $x3"},{"required":"yes","param":"float $y3"}],"returns":"void"},"swf_shapefillbitmapclip":{"desc":"Set current fill mode to clipped bitmap","params":[{"required":"yes","param":"int $bitmapid"}],"returns":"void"},"swf_shapefillbitmaptile":{"desc":"Set current fill mode to tiled bitmap","params":[{"required":"yes","param":"int $bitmapid"}],"returns":"void"},"swf_shapefilloff":{"desc":"Turns off filling","params":[],"returns":"void"},"swf_shapefillsolid":{"desc":"Set the current fill style to the specified color","params":[{"required":"yes","param":"float $r"},{"required":"yes","param":"float $g"},{"required":"yes","param":"float $b"},{"required":"yes","param":"float $a"}],"returns":"void"},"swf_shapelinesolid":{"desc":"Set the current line style","params":[{"required":"yes","param":"float $r"},{"required":"yes","param":"float $g"},{"required":"yes","param":"float $b"},{"required":"yes","param":"float $a"},{"required":"yes","param":"float $width"}],"returns":"void"},"swf_shapelineto":{"desc":"Draw a line","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"}],"returns":"void"},"swf_shapemoveto":{"desc":"Move the current position","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"}],"returns":"void"},"swf_showframe":{"desc":"Display the current frame","params":[],"returns":"void"},"swf_startbutton":{"desc":"Start the definition of a button","params":[{"required":"yes","param":"int $objid"},{"required":"yes","param":"int $type"}],"returns":"void"},"swf_startdoaction":{"desc":"Start a description of an action list for the current frame","params":[],"returns":"void"},"swf_startshape":{"desc":"Start a complex shape","params":[{"required":"yes","param":"int $objid"}],"returns":"void"},"swf_startsymbol":{"desc":"Define a symbol","params":[{"required":"yes","param":"int $objid"}],"returns":"void"},"swf_translate":{"desc":"Translate the current transformations","params":[{"required":"yes","param":"float $x"},{"required":"yes","param":"float $y"},{"required":"yes","param":"float $z"}],"returns":"void"},"swf_viewport":{"desc":"Select an area for future drawing","params":[{"required":"yes","param":"float $xmin"},{"required":"yes","param":"float $xmax"},{"required":"yes","param":"float $ymin"},{"required":"yes","param":"float $ymax"}],"returns":"void"},"sybase_deadlock_retry_count":{"desc":"Sets the deadlock retry count","params":[{"required":"yes","param":"int $retry_count"}],"returns":"void"},"sybase_min_client_severity":{"desc":"Sets minimum client severity","params":[{"required":"yes","param":"int $severity"}],"returns":"void"},"sybase_min_error_severity":{"desc":"Sets minimum error severity","params":[{"required":"yes","param":"int $severity"}],"returns":"void"},"sybase_min_message_severity":{"desc":"Sets minimum message severity","params":[{"required":"yes","param":"int $severity"}],"returns":"void"},"sybase_min_server_severity":{"desc":"Sets minimum server severity","params":[{"required":"yes","param":"int $severity"}],"returns":"void"},"tidy_load_config":{"desc":"Load an ASCII Tidy configuration file with the specified encoding","params":[{"required":"yes","param":"string $filename"},{"required":"yes","param":"string $encoding"}],"returns":"void"},"transliterator_transliterate":{"desc":"Transliterate a string","params":[{"required":"yes","param":"string $subject"},{"required":"no","param":"string $start = &#039;&#039;"},{"required":"no","param":"string $end = &#039;&#039;"}],"returns":"void"},"unregister_tick_function":{"desc":"De-register a function for execution on each tick","params":[{"required":"yes","param":"string $function_name"}],"returns":"void"},"unset":{"desc":"Unset a given variable","params":[{"required":"no","param":"mixed $var = &#039;&#039;"},{"required":"no","param":"mixed $... = &#039;&#039;"}],"returns":"void"},"usleep":{"desc":"Delay execution in microseconds","params":[{"required":"yes","param":"int $micro_seconds"}],"returns":"void"},"variant_set":{"desc":"Assigns a new value for a variant object","params":[{"required":"yes","param":"variant $variant"},{"required":"yes","param":"mixed $value"}],"returns":"void"},"variant_set_type":{"desc":"Convert a variant into another type &quot;in-place&quot;","params":[{"required":"yes","param":"variant $variant"},{"required":"yes","param":"int $type"}],"returns":"void"},"w32api_set_call_method":{"desc":"Sets the calling method used","params":[{"required":"yes","param":"int $method"}],"returns":"void"},"xslt_free":{"desc":"Free XSLT processor","params":[{"required":"yes","param":"resource $xh"}],"returns":"void"},"xslt_set_base":{"desc":"Set the base URI for all XSLT transformations","params":[{"required":"yes","param":"resource $xh"},{"required":"yes","param":"string $uri"}],"returns":"void"},"xslt_set_encoding":{"desc":"Set the encoding for the parsing of XML documents","params":[{"required":"yes","param":"resource $xh"},{"required":"yes","param":"string $encoding"}],"returns":"void"},"xslt_set_error_handler":{"desc":"Set an error handler for a XSLT processor","params":[{"required":"yes","param":"resource $xh"},{"required":"yes","param":"mixed $handler"}],"returns":"void"},"xslt_set_log":{"desc":"Set the log file to write log messages to","params":[{"required":"yes","param":"resource $xh"},{"required":"no","param":"mixed $log = &#039;&#039;"}],"returns":"void"},"xslt_set_sax_handler":{"desc":"Set SAX handlers for a XSLT processor","params":[{"required":"yes","param":"resource $xh"},{"required":"yes","param":"array $handlers"}],"returns":"void"},"xslt_set_sax_handlers":{"desc":"Set the SAX handlers to be called when the XML document gets processed","params":[{"required":"yes","param":"resource $processor"},{"required":"yes","param":"array $handlers"}],"returns":"void"},"xslt_set_scheme_handler":{"desc":"Set Scheme handlers for a XSLT processor","params":[{"required":"yes","param":"resource $xh"},{"required":"yes","param":"array $handlers"}],"returns":"void"},"xslt_set_scheme_handlers":{"desc":"Set the scheme handlers for the XSLT processor","params":[{"required":"yes","param":"resource $xh"},{"required":"yes","param":"array $handlers"}],"returns":"void"},"yaz_ccl_conf":{"desc":"Configure CCL parser","params":[{"required":"yes","param":"resource $id"},{"required":"yes","param":"array $config"}],"returns":"void"},"yaz_es":{"desc":"Prepares for an Extended Service Request","params":[{"required":"yes","param":"resource $id"},{"required":"yes","param":"string $type"},{"required":"yes","param":"array $args"}],"returns":"void"},"yaz_itemorder":{"desc":"Prepares for Z39.50 Item Order with an ILL-Request package","params":[{"required":"yes","param":"resource $id"},{"required":"yes","param":"array $args"}],"returns":"void"},"yaz_range":{"desc":"Specifies a range of records to retrieve","params":[{"required":"yes","param":"resource $id"},{"required":"yes","param":"int $start"},{"required":"yes","param":"int $number"}],"returns":"void"},"yaz_scan":{"desc":"Prepares for a scan","params":[{"required":"yes","param":"resource $id"},{"required":"yes","param":"string $type"},{"required":"yes","param":"string $startterm"},{"required":"no","param":"array $flags = &#039;&#039;"}],"returns":"void"},"yaz_schema":{"desc":"Specifies schema for retrieval","params":[{"required":"yes","param":"resource $id"},{"required":"yes","param":"string $schema"}],"returns":"void"},"yaz_set_option":{"desc":"Sets one or more options for connection","params":[{"required":"yes","param":"resource $id"},{"required":"yes","param":"string $name"},{"required":"yes","param":"string $value"},{"required":"yes","param":"array $options"}],"returns":"void"},"yaz_sort":{"desc":"Sets sorting criteria","params":[{"required":"yes","param":"resource $id"},{"required":"yes","param":"string $criteria"}],"returns":"void"},"yaz_syntax":{"desc":"Specifies the preferred record syntax for retrieval","params":[{"required":"yes","param":"resource $id"},{"required":"yes","param":"string $syntax"}],"returns":"void"},"yp_all":{"desc":"Traverse the map and call a function on each entry","params":[{"required":"yes","param":"string $domain"},{"required":"yes","param":"string $map"},{"required":"yes","param":"string $callback"}],"returns":"void"},"zip_close":{"desc":"Close a ZIP file archive","params":[{"required":"yes","param":"resource $zip"}],"returns":"void"},"__halt_compiler":{"desc":"Halts the compiler execution","params":[],"returns":"void"}}' );
js/autocomplete/wordpress.js ADDED
@@ -0,0 +1,2 @@
 
 
1
+
2
+ var autocomplete_wordpress = jQuery.parseJSON( '{"_wp_menu_output":{"params":[{"required":"yes","param":"array $menu "},{"required":"yes","param":"array $submenu "},{"required":"yes","param":"bool $submenu_as_parent "}],"desc":"Display menu.","returns":""},"display_header":{"params":[],"desc":"Display install header.","returns":""},"get_bloginfo":{"params":[{"required":"yes","param":"string $show Blog info to retrieve."},{"required":"yes","param":"string $filter How to filter what is retrieved."}],"desc":"Retrieve information about the blog.","returns":"string Mostly string values, might be empty."},"wp_nav_menu_max_depth":{"params":[],"desc":"","returns":""},"comment_footer_die":{"params":[{"required":"yes","param":"string $msg Error Message. Assumed to contain HTML and be sanitized."}],"desc":"Display error message at bottom of comments.","returns":""},"press_it":{"params":[],"desc":"Press It form handler.","returns":"int Post ID"},"get_images_from_uri":{"params":[{"required":"yes","param":"string $uri "}],"desc":"Retrieve all image URLs from given URI.","returns":"string "},"press_this_media_buttons":{"params":[],"desc":"","returns":""},"add_js":{"params":[],"desc":"Display JavaScript on the page.","returns":""},"export_date_options":{"params":[],"desc":"","returns":""},"__":{"params":[{"required":"yes","param":"string $text Text to translate"},{"required":"no","param":"string $domain Optional. Domain to retrieve the translated text"}],"desc":"Retrieves the translation of $text. If there is no translation, or the domain isn&#039;t loaded, the original text is returned.","returns":"string Translated text"},"_x":{"params":[{"required":"yes","param":"string $text Text to translate"},{"required":"yes","param":"string $context Context information for the translators"},{"required":"no","param":"string $domain Optional. Domain to retrieve the translated text"}],"desc":"Retrieve translated string with gettext context","returns":"string Translated context string without pipe"},"add_filter":{"params":[{"required":"yes","param":"string $tag The name of the filter to hook the $function_to_add to."},{"required":"yes","param":"callback $function_to_add The name of the function to be called when the filter is applied."},{"required":"no","param":"int $priority optional. Used to specify the order in which the functions associated with a particular action are executed (default: 10). Lower numbers correspond with earlier execution, and functions with the same priority are executed in the order in which they were added to the action."},{"required":"no","param":"int $accepted_args optional. The number of arguments the function accept (default 1)."}],"desc":"Hooks a function or method to a specific filter action.","returns":"boolean true"},"esc_attr":{"params":[{"required":"yes","param":"string $text "}],"desc":"Escaping for HTML attributes.","returns":"string "},"apply_filters":{"params":[{"required":"yes","param":"string $tag The name of the filter hook."},{"required":"yes","param":"mixed $value The value on which the filters hooked to &lt;tt&gt;$tag&lt;/tt&gt; are applied on."},{"required":"yes","param":"mixed $var,... Additional variables passed to the functions hooked to &lt;tt&gt;$tag&lt;/tt&gt;."}],"desc":"Call the functions added to a filter hook.","returns":"mixed The filtered value after all hooked functions are applied to it."},"get_option":{"params":[{"required":"yes","param":"string $option Name of option to retrieve. Expected to not be SQL-escaped."},{"required":"no","param":"mixed $default Optional. Default value to return if the option does not exist."}],"desc":"Retrieve option value based on name of option.","returns":"mixed Value set for the option."},"is_lighttpd_before_150":{"params":[],"desc":"Is the server running earlier than 1.5.0 version of lighttpd?","returns":"bool Whether the server is running lighttpd &lt; 1.5.0"},"add_action":{"params":[{"required":"yes","param":"string $tag The name of the action to which the $function_to_add is hooked."},{"required":"yes","param":"callback $function_to_add The name of the function you wish to be called."},{"required":"no","param":"int $priority optional. Used to specify the order in which the functions associated with a particular action are executed (default: 10). Lower numbers correspond with earlier execution, and functions with the same priority are executed in the order in which they were added to the action."},{"required":"no","param":"int $accepted_args optional. The number of arguments the function accept (default 1)."}],"desc":"Hooks a function on to a specific action.","returns":""},"do_action_ref_array":{"params":[{"required":"yes","param":"string $tag The name of the action to be executed."},{"required":"yes","param":"array $args The arguments supplied to the functions hooked to &lt;tt&gt;$tag&lt;/tt&gt;"}],"desc":"Execute functions hooked on a specific action hook, specifying arguments in an array.","returns":"null Will return null if $tag does not exist in $wp_filter array"},"is_admin":{"params":[],"desc":"Whether the current request is for a network or blog admin page","returns":"bool True if inside WordPress administration pages."},"site_url":{"params":[{"required":"no","param":"string $path Optional. Path relative to the site url."},{"required":"no","param":"string $scheme Optional. Scheme to give the site url context. Currently &#039;http&#039;, &#039;https&#039;, &#039;login&#039;, &#039;login_post&#039;, or &#039;admin&#039;."}],"desc":"Retrieve the site url for the current site.","returns":"string Site url link with optional path appended."},"admin_url":{"params":[{"required":"no","param":"string $path Optional path relative to the admin url."},{"required":"yes","param":"string $scheme The scheme to use. Default is &#039;admin&#039;, which obeys force_ssl_admin() and is_ssl(). &#039;http&#039; or &#039;https&#039; can be passed to force those schemes."}],"desc":"Retrieve the url to the admin area for the current site.","returns":"string Admin url link with optional path appended."},"wp_guess_url":{"params":[],"desc":"Guess the URL for the site.","returns":"string "},"get_file":{"params":[],"desc":"","returns":""},"wp_category_checklist":{"params":[{"required":"yes","param":"unknown_type $post_id "},{"required":"yes","param":"unknown_type $descendants_and_self "},{"required":"yes","param":"unknown_type $selected_cats "},{"required":"yes","param":"unknown_type $popular_cats "}],"desc":"{@internal Missing Short Description}}","returns":""},"wp_terms_checklist":{"params":[{"required":"yes","param":"int $post_id "},{"required":"yes","param":"array $args "}],"desc":"Taxonomy independent version of wp_category_checklist","returns":""},"wp_popular_terms_checklist":{"params":[{"required":"yes","param":"unknown_type $taxonomy "},{"required":"yes","param":"unknown_type $default "},{"required":"yes","param":"unknown_type $number "},{"required":"yes","param":"unknown_type $echo "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"wp_link_category_checklist":{"params":[{"required":"yes","param":"unknown_type $link_id "}],"desc":"{@internal Missing Short Description}}","returns":""},"get_inline_data":{"params":[{"required":"yes","param":"unknown_type $post "}],"desc":"{@internal Missing Short Description}}","returns":""},"wp_comment_reply":{"params":[{"required":"yes","param":"unknown_type $position "},{"required":"yes","param":"unknown_type $checkbox "},{"required":"yes","param":"unknown_type $mode "}],"desc":"{@internal Missing Short Description}}","returns":""},"wp_comment_trashnotice":{"params":[],"desc":"Output &#039;undo move to trash&#039; text for comments","returns":""},"list_meta":{"params":[{"required":"yes","param":"unknown_type $meta "}],"desc":"{@internal Missing Short Description}}","returns":""},"_list_meta_row":{"params":[{"required":"yes","param":"unknown_type $entry "},{"required":"yes","param":"unknown_type $count "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"meta_form":{"params":[],"desc":"{@internal Missing Short Description}}","returns":""},"touch_time":{"params":[{"required":"yes","param":"unknown_type $edit "},{"required":"yes","param":"unknown_type $for_post "},{"required":"yes","param":"unknown_type $tab_index "},{"required":"yes","param":"unknown_type $multi "}],"desc":"{@internal Missing Short Description}}","returns":""},"page_template_dropdown":{"params":[{"required":"yes","param":"unknown_type $default "}],"desc":"{@internal Missing Short Description}}","returns":""},"parent_dropdown":{"params":[{"required":"yes","param":"unknown_type $default "},{"required":"yes","param":"unknown_type $parent "},{"required":"yes","param":"unknown_type $level "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"the_attachment_links":{"params":[{"required":"yes","param":"unknown_type $id "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"wp_dropdown_roles":{"params":[{"required":"yes","param":"string $selected slug for the role that should be already selected"}],"desc":"Print out &lt;option&gt; html elements for role selectors","returns":""},"wp_convert_hr_to_bytes":{"params":[{"required":"yes","param":"unknown_type $size "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"wp_convert_bytes_to_hr":{"params":[{"required":"yes","param":"unknown_type $bytes "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"wp_max_upload_size":{"params":[],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"wp_import_upload_form":{"params":[{"required":"yes","param":"string $action The action attribute for the form."}],"desc":"Outputs the form used by the importers to accept the data to be imported","returns":""},"add_meta_box":{"params":[{"required":"yes","param":"string $id String for use in the &#039;id&#039; attribute of tags."},{"required":"yes","param":"string $title Title of the meta box."},{"required":"yes","param":"string $callback Function that fills the box with the desired content. The function should echo its output."},{"required":"no","param":"string|object $screen Optional. The screen on which to show the box (post, page, link). Defaults to current screen."},{"required":"no","param":"string $context Optional. The context within the page where the boxes should show (&#039;normal&#039;, &#039;advanced&#039;)."},{"required":"no","param":"string $priority Optional. The priority within the context where the boxes should show (&#039;high&#039;, &#039;low&#039;)."}],"desc":"Add a meta box to an edit form.","returns":""},"do_meta_boxes":{"params":[{"required":"yes","param":"string|object $screen Screen identifier"},{"required":"yes","param":"string $context box context"},{"required":"yes","param":"mixed $object gets passed to the box callback function as first parameter"}],"desc":"Meta-Box template function","returns":"int number of meta_boxes"},"remove_meta_box":{"params":[{"required":"yes","param":"string $id String for use in the &#039;id&#039; attribute of tags."},{"required":"yes","param":"string|object $screen The screen on which to show the box (post, page, link)."},{"required":"yes","param":"string $context The context within the page where the boxes should show (&#039;normal&#039;, &#039;advanced&#039;)."}],"desc":"Remove a meta box from an edit form.","returns":""},"add_settings_section":{"params":[{"required":"yes","param":"string $id Slug-name to identify the section. Used in the &#039;id&#039; attribute of tags."},{"required":"yes","param":"string $title Formatted title of the section. Shown as the heading for the section."},{"required":"yes","param":"string $callback Function that echos out any content at the top of the section (between heading and fields)."},{"required":"yes","param":"string $page The slug-name of the settings page on which to show the section. Built-in pages include &#039;general&#039;, &#039;reading&#039;, &#039;writing&#039;, &#039;discussion&#039;, &#039;media&#039;, etc. Create your own using add_options_page();"}],"desc":"Add a new section to a settings page.","returns":""},"add_settings_field":{"params":[{"required":"yes","param":"string $id Slug-name to identify the field. Used in the &#039;id&#039; attribute of tags."},{"required":"yes","param":"string $title Formatted title of the field. Shown as the label for the field during output."},{"required":"yes","param":"string $callback Function that fills the field with the desired form inputs. The function should echo its output."},{"required":"yes","param":"string $page The slug-name of the settings page on which to show the section (general, reading, writing, ...)."},{"required":"yes","param":"string $section The slug-name of the section of the settings page in which to show the box (default, ...)."},{"required":"yes","param":"array $args Additional arguments"}],"desc":"Add a new field to a section of a settings page","returns":""},"do_settings_sections":{"params":[{"required":"yes","param":"string $page The slug name of the page whos settings sections you want to output"}],"desc":"Prints out all settings sections added to a particular settings page","returns":""},"do_settings_fields":{"params":[{"required":"yes","param":"string $page Slug title of the admin page who&#039;s settings fields you want to show."},{"required":"yes","param":"section $section Slug title of the settings section who&#039;s fields you want to show."}],"desc":"Print out the settings fields for a particular settings section","returns":""},"add_settings_error":{"params":[{"required":"yes","param":"string $setting Slug title of the setting to which this error applies"},{"required":"yes","param":"string $code Slug-name to identify the error. Used as part of &#039;id&#039; attribute in HTML output."},{"required":"yes","param":"string $message The formatted message text to display to the user (will be shown inside styled &lt;div&gt; and &lt;p&gt;)"},{"required":"yes","param":"string $type The type of message it is, controls HTML class. Use &#039;error&#039; or &#039;updated&#039;."}],"desc":"Register a settings error to be displayed to the user","returns":""},"get_settings_errors":{"params":[{"required":"no","param":"string $setting Optional slug title of a specific setting who&#039;s errors you want."},{"required":"yes","param":"boolean $sanitize Whether to re-sanitize the setting value before returning errors."}],"desc":"Fetch settings errors registered by add_settings_error()","returns":"array Array of settings errors"},"settings_errors":{"params":[{"required":"no","param":"string $setting Optional slug title of a specific setting who&#039;s errors you want."},{"required":"yes","param":"boolean $sanitize Whether to re-sanitize the setting value before returning errors."},{"required":"yes","param":"boolean $hide_on_update If set to true errors will not be shown if the settings page has already been submitted."}],"desc":"Display settings errors registered by add_settings_error()","returns":""},"find_posts_div":{"params":[{"required":"yes","param":"unknown_type $found_action "}],"desc":"{@internal Missing Short Description}}","returns":""},"the_post_password":{"params":[],"desc":"Display the post password.","returns":""},"_draft_or_post_title":{"params":[{"required":"yes","param":"int $post_id The post id. If not supplied the global $post is used."}],"desc":"Get the post title.","returns":"string The post title if set"},"_admin_search_query":{"params":[],"desc":"Display the search query.","returns":""},"iframe_header":{"params":[{"required":"yes","param":"string $title Title of the Iframe page."},{"required":"yes","param":"bool $limit_styles Limit styles to colour-related styles only (unless others are enqueued)."}],"desc":"Generic Iframe header for use with Thickbox","returns":""},"iframe_footer":{"params":[],"desc":"Generic Iframe footer for use with Thickbox","returns":""},"_post_states":{"params":[],"desc":"","returns":""},"_media_states":{"params":[],"desc":"","returns":""},"compression_test":{"params":[],"desc":"Test support for compressing JavaScript from PHP","returns":""},"submit_button":{"params":[{"required":"yes","param":"string $text The text of the button (defaults to &#039;Save Changes&#039;)"},{"required":"yes","param":"string $type The type of button. One of: primary, secondary, delete"},{"required":"yes","param":"string $name The HTML name of the submit button. Defaults to &quot;submit&quot;. If no id attribute is given in $other_attributes below, $name will be used as the button&#039;s id."},{"required":"yes","param":"bool $wrap True if the output button should be wrapped in a paragraph tag, false otherwise. Defaults to true"},{"required":"yes","param":"array|string $other_attributes Other attributes that should be output with the button, mapping attributes to their values, such as array( &#039;tabindex&#039; =&gt; &#039;1&#039; ). These attributes will be output as attribute=&quot;value&quot;, such as tabindex=&quot;1&quot;. Defaults to no other attributes. Other attributes can also be provided as a string such as &#039;tabindex=&quot;1&quot;&#039;, though the array format is typically cleaner."}],"desc":"Echos a submit button, with provided text and appropriate class","returns":""},"get_submit_button":{"params":[{"required":"yes","param":"string $text The text of the button (defaults to &#039;Save Changes&#039;)"},{"required":"yes","param":"string $type The type of button. One of: primary, secondary, delete"},{"required":"yes","param":"string $name The HTML name of the submit button. Defaults to &quot;submit&quot;. If no id attribute is given in $other_attributes below, $name will be used as the button&#039;s id."},{"required":"yes","param":"bool $wrap True if the output button should be wrapped in a paragraph tag, false otherwise. Defaults to true"},{"required":"yes","param":"array|string $other_attributes Other attributes that should be output with the button, mapping attributes to their values, such as array( &#039;tabindex&#039; =&gt; &#039;1&#039; ). These attributes will be output as attribute=&quot;value&quot;, such as tabindex=&quot;1&quot;. Defaults to no other attributes. Other attributes can also be provided as a string such as &#039;tabindex=&quot;1&quot;&#039;, though the array format is typically cleaner."}],"desc":"Returns a submit button, with provided text and appropriate class","returns":""},"_wp_admin_html_begin":{"params":[],"desc":"","returns":""},"convert_to_screen":{"params":[{"required":"yes","param":"string $hook_name The hook name (also known as the hook suffix) used to determine the screen."}],"desc":"Convert a screen string to a screen object","returns":"WP_Screen Screen object."},"check_upload_size":{"params":[{"required":"yes","param":"array $file $_FILES array for a given file."}],"desc":"Determine if uploaded file exceeds space quota.","returns":"array $_FILES array with &#039;error&#039; key set if file exceeds quota. &#039;error&#039; is empty otherwise."},"wpmu_delete_blog":{"params":[{"required":"yes","param":"int $blog_id Blog ID"},{"required":"yes","param":"bool $drop True if blog&#039;s table should be dropped. Default is false."}],"desc":"Delete a blog","returns":"void "},"wpmu_delete_user":{"params":[],"desc":"","returns":""},"wpmu_get_blog_allowedthemes":{"params":[],"desc":"","returns":""},"update_option_new_admin_email":{"params":[],"desc":"","returns":""},"send_confirmation_on_profile_email":{"params":[],"desc":"","returns":""},"new_user_email_admin_notice":{"params":[],"desc":"","returns":""},"get_site_allowed_themes":{"params":[],"desc":"","returns":""},"is_upload_space_available":{"params":[],"desc":"Determines if there is any upload space left in the current blog&#039;s quota.","returns":"bool True if space is available, false otherwise."},"upload_size_limit_filter":{"params":[],"desc":"","returns":"int of upload size limit in bytes"},"get_upload_space_available":{"params":[],"desc":"Determines if there is any upload space left in the current blog&#039;s quota.","returns":"int of upload space available in bytes"},"get_space_allowed":{"params":[],"desc":"Returns the upload quota for the current blog.","returns":"int Quota"},"display_space_usage":{"params":[],"desc":"","returns":""},"upload_space_setting":{"params":[],"desc":"","returns":""},"update_user_status":{"params":[],"desc":"","returns":""},"refresh_user_details":{"params":[],"desc":"","returns":""},"format_code_lang":{"params":[],"desc":"","returns":""},"sync_category_tag_slugs":{"params":[],"desc":"","returns":""},"_access_denied_splash":{"params":[],"desc":"","returns":""},"check_import_new_users":{"params":[],"desc":"","returns":""},"mu_dropdown_languages":{"params":[],"desc":"","returns":""},"secret_salt_warning":{"params":[],"desc":"","returns":""},"site_admin_notice":{"params":[],"desc":"","returns":""},"avoid_blog_page_permalink_collision":{"params":[],"desc":"","returns":""},"choose_primary_blog":{"params":[],"desc":"","returns":""},"ms_deprecated_blogs_file":{"params":[],"desc":"","returns":""},"grant_super_admin":{"params":[{"required":"yes","param":"int $user_id "}],"desc":"Grants super admin privileges.","returns":""},"revoke_super_admin":{"params":[{"required":"yes","param":"int $user_id "}],"desc":"Revokes super admin privileges.","returns":""},"can_edit_network":{"params":[{"required":"yes","param":"integer $site_id The network/site id to check."}],"desc":"Whether or not we can edit this network from this page","returns":""},"_thickbox_path_admin_subfolder":{"params":[],"desc":"Thickbox image paths for Network Admin.","returns":""},"wp_is_large_network":{"params":[{"required":"yes","param":"string $using &#039;sites or &#039;users&#039;. Default is &#039;sites&#039;."}],"desc":"Whether or not we have a large network.","returns":"bool True if the network meets the criteria for large. False otherwise."},"comment_exists":{"params":[{"required":"yes","param":"string $comment_author Author of the comment"},{"required":"yes","param":"string $comment_date Date of the comment"}],"desc":"{@internal Missing Short Description}}","returns":"mixed Comment ID on success."},"edit_comment":{"params":[],"desc":"Update a comment with values provided in $_POST.","returns":""},"get_comment_to_edit":{"params":[{"required":"yes","param":"int $id ID of comment to retrieve"}],"desc":"{@internal Missing Short Description}}","returns":"bool|object Comment if found. False on failure."},"get_pending_comments_num":{"params":[{"required":"yes","param":"int|array $post_id Either a single Post ID or an array of Post IDs"}],"desc":"Get the number of pending comments on a post or posts","returns":"int|array Either a single Posts pending comments as an int or an array of ints keyed on the Post IDs"},"floated_admin_avatar":{"params":[{"required":"yes","param":"string $name User name."}],"desc":"Add avatars to relevant places in admin, or try to.","returns":"string Avatar with Admin name."},"enqueue_comment_hotkeys_js":{"params":[],"desc":"","returns":""},"PclZipUtilPathReduction":{"params":[],"desc":"","returns":""},"PclZipUtilPathInclusion":{"params":[],"desc":"","returns":""},"PclZipUtilCopyBlock":{"params":[],"desc":"","returns":""},"PclZipUtilRename":{"params":[],"desc":"","returns":""},"PclZipUtilOptionText":{"params":[],"desc":"","returns":""},"PclZipUtilTranslateWinPath":{"params":[],"desc":"","returns":""},"current_theme_info":{"params":[],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"delete_theme":{"params":[{"required":"yes","param":"string $template Template directory of the theme to delete"},{"required":"yes","param":"string $redirect Redirect to page when complete."}],"desc":"Remove a theme","returns":"mixed "},"get_broken_themes":{"params":[],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"get_allowed_themes":{"params":[],"desc":"Get the allowed themes for the current blog.","returns":"array $themes Array of allowed themes."},"get_page_templates":{"params":[],"desc":"Get the Page Templates available in this theme","returns":"array Key is the template name, value is the filename of the template"},"_get_template_edit_filename":{"params":[{"required":"yes","param":"string $fullpath Full path to the theme file"},{"required":"yes","param":"string $containingfolder Path of the theme parent folder"}],"desc":"Tidies a filename for url display by the theme editor.","returns":"string "},"theme_update_available":{"params":[{"required":"yes","param":"object $theme Theme data object."}],"desc":"Check if there is an update for a theme available.","returns":"bool False if no valid info was passed."},"get_theme_feature_list":{"params":[],"desc":"Retrieve list of WordPress theme features (aka theme tags)","returns":"array Array of features keyed by category with translations keyed by slug."},"themes_api":{"params":[{"required":"yes","param":"string $action "},{"required":"no","param":"array|object $args Optional. Arguments to serialize for the Theme Info API."}],"desc":"Retrieve theme installer pages from WordPress Themes API.","returns":"mixed "},"export_wp":{"params":[{"required":"yes","param":"array $args Filters defining what should be included in the export"}],"desc":"Generates the WXR export file for download","returns":""},"get_column_headers":{"params":[{"required":"yes","param":"string|WP_Screen $screen The screen you want the headers for"}],"desc":"Get the column headers for a screen","returns":"array Containing the headers in the format id =&gt; UI String"},"get_hidden_columns":{"params":[{"required":"yes","param":"string|WP_Screen $screen The screen you want the hidden columns for"}],"desc":"Get a list of hidden columns.","returns":"array "},"meta_box_prefs":{"params":[{"required":"yes","param":"string|WP_Screen $screen "}],"desc":"Prints the meta box preferences for screen meta.","returns":""},"get_hidden_meta_boxes":{"params":[{"required":"yes","param":"string|WP_Screen $screen Screen identifier"}],"desc":"Get Hidden Meta Boxes","returns":"array Hidden Meta Boxes"},"add_screen_option":{"params":[{"required":"yes","param":"string $option An option name."},{"required":"yes","param":"mixed $args Option-dependent arguments."}],"desc":"Register and configure an admin screen option","returns":"void "},"screen_icon":{"params":[{"required":"no","param":"string|WP_Screen $screen Optional. Accepts a screen object (and defaults to the current screen object) which it uses to determine an icon HTML ID. Or, if a string is provided, it is used to form the icon HTML ID."}],"desc":"Displays a screen icon.","returns":""},"get_screen_icon":{"params":[{"required":"no","param":"string|WP_Screen $screen Optional. Accepts a screen object (and defaults to the current screen object) which it uses to determine an icon HTML ID. Or, if a string is provided, it is used to form the icon HTML ID."}],"desc":"Gets a screen icon.","returns":"string HTML for the screen icon."},"get_current_screen":{"params":[],"desc":"Get the current screen object","returns":"object Current screen object"},"set_current_screen":{"params":[{"required":"no","param":"mixed $hook_name Optional. The hook name (also known as the hook suffix) used to determine the screen, or an existing screen object."}],"desc":"Set the current screen object","returns":""},"wp_create_thumbnail":{"params":[{"required":"yes","param":"mixed $file Filename of the original image, Or attachment id."},{"required":"yes","param":"int $max_side Maximum length of a single side for the thumbnail."},{"required":"yes","param":"mixed $deprecated Never used."}],"desc":"Create a thumbnail from an Image given a maximum side size.","returns":"string Thumbnail path on success, Error string on failure."},"wp_crop_image":{"params":[{"required":"yes","param":"string|int $src_file The source file or Attachment ID."},{"required":"yes","param":"int $src_x The start x position to crop from."},{"required":"yes","param":"int $src_y The start y position to crop from."},{"required":"yes","param":"int $src_w The width to crop."},{"required":"yes","param":"int $src_h The height to crop."},{"required":"yes","param":"int $dst_w The destination width."},{"required":"yes","param":"int $dst_h The destination height."},{"required":"no","param":"int $src_abs Optional. If the source crop points are absolute."},{"required":"no","param":"string $dst_file Optional. The destination file to write to."}],"desc":"Crop an Image to a given size.","returns":"string|WP_Error|false New filepath on success, WP_Error or false on failure."},"wp_generate_attachment_metadata":{"params":[{"required":"yes","param":"int $attachment_id Attachment Id to process."},{"required":"yes","param":"string $file Filepath of the Attached image."}],"desc":"Generate post thumbnail attachment meta data.","returns":"mixed Metadata for attachment."},"get_udims":{"params":[{"required":"yes","param":"int $width Current width of the image"},{"required":"yes","param":"int $height Current height of the image"}],"desc":"Calculated the new dimensions for a downsampled image.","returns":"mixed Array(height,width) of shrunk dimensions."},"wp_exif_frac2dec":{"params":[{"required":"yes","param":"string $str "}],"desc":"Convert a fraction string to a decimal.","returns":"int|float "},"wp_exif_date2ts":{"params":[{"required":"yes","param":"string $str "}],"desc":"Convert the exif date format to a unix timestamp.","returns":"int "},"wp_read_image_metadata":{"params":[{"required":"yes","param":"string $file "}],"desc":"Get extended image metadata, exif or iptc as available.","returns":"bool|array False on failure. Image metadata array on success."},"file_is_valid_image":{"params":[{"required":"yes","param":"string $path File path to test if valid image."}],"desc":"Validate that file is an image.","returns":"bool True if valid image, false if not valid image."},"file_is_displayable_image":{"params":[{"required":"yes","param":"string $path File path to test."}],"desc":"Validate that file is suitable for displaying within a web page.","returns":"bool True if suitable, false if not suitable."},"get_manifest":{"params":[],"desc":"Retrieve list of all cacheable WP files","returns":""},"post_submit_meta_box":{"params":[{"required":"yes","param":"object $post "}],"desc":"Display post submit form fields.","returns":""},"post_format_meta_box":{"params":[{"required":"yes","param":"object $post "}],"desc":"Display post format form elements.","returns":""},"post_tags_meta_box":{"params":[{"required":"yes","param":"object $post "}],"desc":"Display post tags form fields.","returns":""},"post_categories_meta_box":{"params":[{"required":"yes","param":"object $post "}],"desc":"Display post categories form fields.","returns":""},"post_excerpt_meta_box":{"params":[{"required":"yes","param":"object $post "}],"desc":"Display post excerpt form fields.","returns":""},"post_trackback_meta_box":{"params":[{"required":"yes","param":"object $post "}],"desc":"Display trackback links form fields.","returns":""},"post_custom_meta_box":{"params":[{"required":"yes","param":"object $post "}],"desc":"Display custom fields form fields.","returns":""},"post_comment_status_meta_box":{"params":[{"required":"yes","param":"object $post "}],"desc":"Display comments status form fields.","returns":""},"post_comment_meta_box_thead":{"params":[{"required":"yes","param":"array $result table header rows"}],"desc":"Display comments for post table header","returns":"array "},"post_comment_meta_box":{"params":[{"required":"yes","param":"object $post "}],"desc":"Display comments for post.","returns":""},"post_slug_meta_box":{"params":[{"required":"yes","param":"object $post "}],"desc":"Display slug form fields.","returns":""},"post_author_meta_box":{"params":[{"required":"yes","param":"object $post "}],"desc":"Display form field with list of authors.","returns":""},"post_revisions_meta_box":{"params":[{"required":"yes","param":"object $post "}],"desc":"Display list of revisions.","returns":""},"page_attributes_meta_box":{"params":[{"required":"yes","param":"object $post "}],"desc":"Display page attributes form fields.","returns":""},"link_submit_meta_box":{"params":[{"required":"yes","param":"object $link "}],"desc":"Display link create form fields.","returns":""},"link_categories_meta_box":{"params":[{"required":"yes","param":"object $link "}],"desc":"Display link categories form fields.","returns":""},"link_target_meta_box":{"params":[{"required":"yes","param":"object $link "}],"desc":"Display form fields for changing link target.","returns":""},"xfn_check":{"params":[{"required":"yes","param":"string $class "},{"required":"yes","param":"string $value "},{"required":"yes","param":"mixed $deprecated Never used."}],"desc":"Display checked checkboxes attribute for xfn microformat options.","returns":""},"link_xfn_meta_box":{"params":[{"required":"yes","param":"object $link "}],"desc":"Display xfn form fields.","returns":""},"link_advanced_meta_box":{"params":[{"required":"yes","param":"object $link "}],"desc":"Display advanced link options form fields.","returns":""},"post_thumbnail_meta_box":{"params":[],"desc":"Display post thumbnail meta box.","returns":""},"got_mod_rewrite":{"params":[],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"extract_from_markers":{"params":[{"required":"yes","param":"unknown_type $filename "},{"required":"yes","param":"unknown_type $marker "}],"desc":"{@internal Missing Short Description}}","returns":"array An array of strings from a file (.htaccess ) from between BEGIN and END markers."},"insert_with_markers":{"params":[{"required":"yes","param":"unknown_type $filename "},{"required":"yes","param":"unknown_type $marker "},{"required":"yes","param":"unknown_type $insertion "}],"desc":"{@internal Missing Short Description}}","returns":"bool True on write success, false on failure."},"save_mod_rewrite_rules":{"params":[],"desc":"Updates the htaccess file with the current rules if it is writable.","returns":""},"iis7_save_url_rewrite_rules":{"params":[],"desc":"Updates the IIS web.config file with the current rules if it is writable.","returns":"bool True if web.config was updated successfully"},"update_recently_edited":{"params":[{"required":"yes","param":"unknown_type $file "}],"desc":"{@internal Missing Short Description}}","returns":""},"update_home_siteurl":{"params":[{"required":"yes","param":"unknown_type $old_value "},{"required":"yes","param":"unknown_type $value "}],"desc":"If siteurl or home changed, flush rewrite rules.","returns":""},"url_shorten":{"params":[{"required":"yes","param":"string $url "}],"desc":"Shorten an URL, to be used as link text","returns":"string "},"wp_reset_vars":{"params":[{"required":"yes","param":"array $vars An array of globals to reset."}],"desc":"Resets global variables based on $_GET and $_POST","returns":""},"show_message":{"params":[{"required":"yes","param":"unknown_type $message "}],"desc":"{@internal Missing Short Description}}","returns":""},"wp_doc_link_parse":{"params":[],"desc":"","returns":""},"set_screen_options":{"params":[],"desc":"Saves option for number of rows when listing posts, pages, comments, etc.","returns":""},"iis7_rewrite_rule_exists":{"params":[{"required":"yes","param":"string $filename The file path to the configuration file"}],"desc":"Check if rewrite rule for WordPress already exists in the IIS 7 configuration file","returns":"bool "},"iis7_delete_rewrite_rule":{"params":[{"required":"yes","param":"string $filename Name of the configuration file"}],"desc":"Delete WordPress rewrite rule from web.config file if it exists there","returns":"bool "},"iis7_add_rewrite_rule":{"params":[{"required":"yes","param":"string $filename The file path to the configuration file"},{"required":"yes","param":"string $rewrite_rule The XML fragment with URL Rewrite rule"}],"desc":"Add WordPress rewrite rule to the IIS 7 configuration file.","returns":"bool "},"saveDomDocument":{"params":[{"required":"yes","param":"DOMDocument $doc "},{"required":"yes","param":"string $filename "}],"desc":"Saves the XML document into a file","returns":""},"win_is_writable":{"params":[{"required":"yes","param":"string $path "}],"desc":"Workaround for Windows bug in is_writable() function","returns":"bool "},"admin_color_scheme_picker":{"params":[],"desc":"Display the default admin color scheme picker (Used in user-edit.php)","returns":""},"_ipad_meta":{"params":[],"desc":"","returns":""},"media_upload_tabs":{"params":[],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"update_gallery_tab":{"params":[{"required":"yes","param":"unknown_type $tabs "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"the_media_upload_tabs":{"params":[],"desc":"{@internal Missing Short Description}}","returns":""},"get_image_send_to_editor":{"params":[{"required":"yes","param":"unknown_type $id "},{"required":"yes","param":"unknown_type $alt "},{"required":"yes","param":"unknown_type $title "},{"required":"yes","param":"unknown_type $align "},{"required":"yes","param":"unknown_type $url "},{"required":"yes","param":"unknown_type $rel "},{"required":"yes","param":"unknown_type $size "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"image_add_caption":{"params":[{"required":"yes","param":"unknown_type $html "},{"required":"yes","param":"unknown_type $id "},{"required":"yes","param":"unknown_type $alt "},{"required":"yes","param":"unknown_type $title "},{"required":"yes","param":"unknown_type $align "},{"required":"yes","param":"unknown_type $url "},{"required":"yes","param":"unknown_type $size "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"media_send_to_editor":{"params":[{"required":"yes","param":"unknown_type $html "}],"desc":"{@internal Missing Short Description}}","returns":""},"media_handle_upload":{"params":[{"required":"yes","param":"string $file_id Index into the {@link $_FILES} array of the upload"},{"required":"yes","param":"int $post_id The post ID the media is associated with"},{"required":"yes","param":"array $post_data allows you to overwrite some of the attachment"},{"required":"yes","param":"array $overrides allows you to override the {@link wp_handle_upload()} behavior"}],"desc":"{@internal Missing Short Description}}","returns":"int the ID of the attachment"},"media_handle_sideload":{"params":[{"required":"yes","param":"array $file_array Array similar to a {@link $_FILES} upload array"},{"required":"yes","param":"int $post_id The post ID the media is associated with"},{"required":"yes","param":"string $desc Description of the sideloaded file"},{"required":"yes","param":"array $post_data allows you to overwrite some of the attachment"}],"desc":"This handles a sideloaded file in the same way as an uploaded file is handled by {@link media_handle_upload()}","returns":"int|object The ID of the attachment or a WP_Error on failure"},"wp_iframe":{"params":[{"required":"yes","param":"unknown_type $content_func "}],"desc":"{@internal Missing Short Description}}","returns":""},"media_buttons":{"params":[],"desc":"{@internal Missing Short Description}}","returns":""},"_media_button":{"params":[],"desc":"","returns":""},"get_upload_iframe_src":{"params":[],"desc":"","returns":""},"media_upload_form_handler":{"params":[],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"wp_media_upload_handler":{"params":[],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"media_sideload_image":{"params":[{"required":"yes","param":"string $file The URL of the image to download"},{"required":"yes","param":"int $post_id The post ID the media is to be associated with"},{"required":"no","param":"string $desc Optional. Description of the image"}],"desc":"Download an image from the specified URL and attach it to a post.","returns":"string|WP_Error Populated HTML img tag on success"},"media_upload_gallery":{"params":[],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"media_upload_library":{"params":[],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"image_align_input_fields":{"params":[{"required":"yes","param":"unknown_type $post "},{"required":"yes","param":"unknown_type $checked "}],"desc":"Retrieve HTML for the image alignment radio buttons with the specified one checked.","returns":"unknown "},"image_size_input_fields":{"params":[{"required":"yes","param":"unknown_type $post "},{"required":"yes","param":"unknown_type $check "}],"desc":"Retrieve HTML for the size radio buttons with the specified one checked.","returns":"unknown "},"image_link_input_fields":{"params":[{"required":"yes","param":"unknown_type $post "},{"required":"yes","param":"unknown_type $url_type "}],"desc":"Retrieve HTML for the Link URL buttons with the default link type as specified.","returns":"unknown "},"image_attachment_fields_to_edit":{"params":[{"required":"yes","param":"unknown_type $form_fields "},{"required":"yes","param":"unknown_type $post "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"media_single_attachment_fields_to_edit":{"params":[{"required":"yes","param":"unknown_type $form_fields "},{"required":"yes","param":"unknown_type $post "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"media_post_single_attachment_fields_to_edit":{"params":[{"required":"yes","param":"unknown_type $form_fields "},{"required":"yes","param":"unknown_type $post "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"image_attachment_fields_to_save":{"params":[{"required":"yes","param":"unknown_type $post "},{"required":"yes","param":"unknown_type $attachment "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"image_media_send_to_editor":{"params":[{"required":"yes","param":"unknown_type $html "},{"required":"yes","param":"unknown_type $attachment_id "},{"required":"yes","param":"unknown_type $attachment "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"get_attachment_fields_to_edit":{"params":[{"required":"yes","param":"unknown_type $post "},{"required":"yes","param":"unknown_type $errors "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"get_media_items":{"params":[{"required":"no","param":"int $post_id Optional. Post ID."},{"required":"yes","param":"array $errors Errors for attachment, if any."}],"desc":"Retrieve HTML for media items of post gallery.","returns":"string "},"get_media_item":{"params":[{"required":"yes","param":"int $attachment_id Attachment ID for modification."},{"required":"no","param":"string|array $args Optional. Override defaults."}],"desc":"Retrieve HTML form for modifying the image attachment.","returns":"string HTML form for attachment."},"media_upload_header":{"params":[],"desc":"{@internal Missing Short Description}}","returns":""},"media_upload_form":{"params":[{"required":"yes","param":"unknown_type $errors "}],"desc":"{@internal Missing Short Description}}","returns":""},"media_upload_type_form":{"params":[{"required":"yes","param":"unknown_type $type "},{"required":"yes","param":"unknown_type $errors "},{"required":"yes","param":"unknown_type $id "}],"desc":"{@internal Missing Short Description}}","returns":""},"media_upload_type_url_form":{"params":[{"required":"yes","param":"unknown_type $type "},{"required":"yes","param":"unknown_type $errors "},{"required":"yes","param":"unknown_type $id "}],"desc":"{@internal Missing Short Description}}","returns":""},"media_upload_gallery_form":{"params":[{"required":"yes","param":"unknown_type $errors "}],"desc":"{@internal Missing Short Description}}","returns":""},"media_upload_library_form":{"params":[{"required":"yes","param":"unknown_type $errors "}],"desc":"{@internal Missing Short Description}}","returns":""},"wp_media_insert_url_form":{"params":[],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"_insert_into_post_button":{"params":[],"desc":"","returns":""},"media_upload_flash_bypass":{"params":[],"desc":"{@internal Missing Short Description}}","returns":""},"media_upload_html_bypass":{"params":[],"desc":"{@internal Missing Short Description}}","returns":""},"media_upload_text_after":{"params":[],"desc":"","returns":""},"media_upload_max_image_resize":{"params":[],"desc":"{@internal Missing Short Description}}","returns":""},"plugins_api":{"params":[{"required":"yes","param":"string $action "},{"required":"no","param":"array|object $args Optional. Arguments to serialize for the Plugin Info API."}],"desc":"Retrieve plugin installer pages from WordPress Plugins API.","returns":"object plugins_api response object on success, WP_Error on failure."},"install_popular_tags":{"params":[{"required":"yes","param":"array $args "}],"desc":"Retrieve popular WordPress plugin tags.","returns":"array "},"install_dashboard":{"params":[],"desc":"","returns":""},"install_search_form":{"params":[],"desc":"Display search form for searching plugins.","returns":""},"install_plugins_upload":{"params":[{"required":"yes","param":"string $page "}],"desc":"Upload from zip","returns":""},"display_plugins_table":{"params":[],"desc":"Display plugin content based on plugin list.","returns":""},"install_plugin_install_status":{"params":[],"desc":"Determine the status we can perform on a plugin.","returns":""},"install_plugin_information":{"params":[],"desc":"Display plugin information in dialog box form.","returns":""},"wp_dashboard_setup":{"params":[],"desc":"Registers dashboard widgets.","returns":""},"wp_add_dashboard_widget":{"params":[],"desc":"","returns":""},"_wp_dashboard_control_callback":{"params":[],"desc":"","returns":""},"wp_dashboard":{"params":[],"desc":"Displays the dashboard.","returns":""},"wp_dashboard_right_now":{"params":[],"desc":"","returns":""},"wp_network_dashboard_right_now":{"params":[],"desc":"","returns":""},"wp_dashboard_quick_press":{"params":[],"desc":"","returns":""},"wp_dashboard_recent_drafts":{"params":[],"desc":"","returns":""},"wp_dashboard_recent_comments":{"params":[],"desc":"Display recent comments dashboard widget content.","returns":""},"_wp_dashboard_recent_comments_row":{"params":[],"desc":"","returns":""},"wp_dashboard_recent_comments_control":{"params":[],"desc":"The recent comments dashboard widget control.","returns":""},"wp_dashboard_incoming_links":{"params":[],"desc":"","returns":""},"wp_dashboard_incoming_links_output":{"params":[],"desc":"Display incoming links dashboard widget content.","returns":""},"wp_dashboard_incoming_links_control":{"params":[],"desc":"","returns":""},"wp_dashboard_primary":{"params":[],"desc":"","returns":""},"wp_dashboard_primary_control":{"params":[],"desc":"","returns":""},"wp_dashboard_rss_output":{"params":[{"required":"yes","param":"string $widget_id "}],"desc":"{@internal Missing Short Description}}","returns":""},"wp_dashboard_secondary":{"params":[],"desc":"","returns":""},"wp_dashboard_secondary_control":{"params":[],"desc":"","returns":""},"wp_dashboard_secondary_output":{"params":[],"desc":"Display secondary dashboard RSS widget feed.","returns":"unknown "},"wp_dashboard_plugins":{"params":[],"desc":"","returns":""},"wp_dashboard_plugins_output":{"params":[],"desc":"Display plugins most popular, newest plugins, and recently updated widget text.","returns":""},"wp_dashboard_cached_rss_widget":{"params":[{"required":"yes","param":"string $widget_id "},{"required":"yes","param":"callback $callback "},{"required":"yes","param":"array $check_urls RSS feeds"}],"desc":"Checks to see if all of the feed url in $check_urls are cached.","returns":"bool False on failure. True on success."},"wp_dashboard_trigger_widget_control":{"params":[{"required":"yes","param":"int $widget_control_id Registered Widget ID."}],"desc":"Calls widget control callback.","returns":""},"wp_dashboard_rss_control":{"params":[{"required":"yes","param":"string $widget_id "},{"required":"yes","param":"array $form_inputs "}],"desc":"The RSS dashboard widget control.","returns":""},"wp_dashboard_quota":{"params":[],"desc":"","returns":""},"wp_dashboard_browser_nag":{"params":[],"desc":"","returns":""},"dashboard_browser_nag_class":{"params":[],"desc":"","returns":""},"wp_check_browser_version":{"params":[],"desc":"Check if the user needs a browser update","returns":"array|bool False on failure, array of browser data on success."},"wp_dashboard_empty":{"params":[],"desc":"Empty function usable by plugins to output empty dashboard widget (to be populated later by JS).","returns":""},"wp_welcome_panel":{"params":[],"desc":"Displays a welcome panel to introduce users to WordPress.","returns":""},"install_themes_feature_list":{"params":[],"desc":"Retrieve list of WordPress theme features (aka theme tags)","returns":"array "},"install_theme_search_form":{"params":[],"desc":"Display search form for searching themes.","returns":""},"install_themes_dashboard":{"params":[],"desc":"Display tags filter for themes.","returns":""},"install_themes_upload":{"params":[],"desc":"","returns":""},"display_theme":{"params":[],"desc":"","returns":""},"display_themes":{"params":[],"desc":"Display theme content based on theme list.","returns":""},"install_theme_information":{"params":[],"desc":"Display theme information in dialog box form.","returns":""},"get_cli_args":{"params":[{"required":"yes","param":"string $param "},{"required":"yes","param":"bool $required "}],"desc":"Returns value of command line params.","returns":"mixed "},"_wp_translate_postdata":{"params":[{"required":"yes","param":"bool $update Are we updating a pre-existing post?"},{"required":"yes","param":"array $post_data Array of post data. Defaults to the contents of $_POST."}],"desc":"Rename $_POST data from form names to DB post columns.","returns":"object|bool WP_Error on failure, true on success."},"edit_post":{"params":[{"required":"no","param":"array $post_data Optional."}],"desc":"Update an existing post with values provided in $_POST.","returns":"int Post ID."},"bulk_edit_posts":{"params":[{"required":"no","param":"array $post_data Optional, the array of post data to process if not provided will use $_POST superglobal."}],"desc":"Process the post data for the bulk editing of posts.","returns":"array "},"get_default_post_to_edit":{"params":[{"required":"yes","param":"string $post_type A post type string, defaults to &#039;post&#039;."}],"desc":"Default post information to use when populating the &quot;Write Post&quot; form.","returns":"object stdClass object containing all the default post data as attributes"},"get_default_page_to_edit":{"params":[],"desc":"Get the default page information to use.","returns":"object stdClass object containing all the default post data as attributes"},"get_post_to_edit":{"params":[{"required":"yes","param":"unknown_type $id "}],"desc":"Get an existing post and format it for editing.","returns":"unknown "},"post_exists":{"params":[{"required":"yes","param":"string $title Post title"},{"required":"no","param":"string $content Optional post content"},{"required":"no","param":"string $date Optional post date"}],"desc":"Determine if a post exists based on title, content, and date","returns":"int Post ID if post exists, 0 otherwise."},"wp_write_post":{"params":[],"desc":"Creates a new post from the &quot;Write Post&quot; form using $_POST information.","returns":"unknown "},"write_post":{"params":[],"desc":"Calls wp_write_post() and handles the errors.","returns":"unknown "},"add_meta":{"params":[{"required":"yes","param":"unknown_type $post_ID "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"delete_meta":{"params":[{"required":"yes","param":"unknown_type $mid "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"get_meta_keys":{"params":[],"desc":"Get a list of previously defined keys.","returns":"unknown "},"get_post_meta_by_id":{"params":[{"required":"yes","param":"unknown_type $mid "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"has_meta":{"params":[{"required":"yes","param":"unknown_type $postid "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"update_meta":{"params":[{"required":"yes","param":"unknown_type $meta_id "},{"required":"yes","param":"unknown_type $meta_key Expect Slashed"},{"required":"yes","param":"unknown_type $meta_value Expect Slashed"}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"_fix_attachment_links":{"params":[{"required":"yes","param":"unknown_type $post_ID "}],"desc":"Replace hrefs of attachment anchors with up-to-date permalinks.","returns":"unknown "},"_fix_attachment_links_replace_cb":{"params":[],"desc":"","returns":""},"_relocate_children":{"params":[{"required":"yes","param":"unknown_type $old_ID "},{"required":"yes","param":"unknown_type $new_ID "}],"desc":"Move child posts to a new parent.","returns":"unknown "},"get_available_post_statuses":{"params":[{"required":"yes","param":"string $type The post_type you want the statuses for"}],"desc":"Get all the possible statuses for a post_type","returns":"array As array of all the statuses for the supplied post type"},"wp_edit_posts_query":{"params":[{"required":"yes","param":"array|bool $q Array of query variables to use to build the query or false to use $_GET superglobal."}],"desc":"Run the wp query to fetch the posts for listing on the edit posts page","returns":"array "},"get_post_mime_types":{"params":[],"desc":"Get default post mime types","returns":"array "},"get_available_post_mime_types":{"params":[{"required":"yes","param":"unknown_type $type "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"wp_edit_attachments_query":{"params":[{"required":"yes","param":"unknown_type $q "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"_edit_attachments_query_helper":{"params":[],"desc":"","returns":""},"postbox_classes":{"params":[{"required":"yes","param":"unknown_type $id "},{"required":"yes","param":"unknown_type $page "}],"desc":"Returns the list of classes to be used by a metabox","returns":"unknown "},"get_sample_permalink":{"params":[{"required":"yes","param":"int|object $id Post ID or post object."},{"required":"no","param":"string $title (optional) Title"},{"required":"no","param":"string $name (optional) Name"}],"desc":"{@internal Missing Short Description}}","returns":"array With two entries of type string"},"get_sample_permalink_html":{"params":[{"required":"yes","param":"int|object $id Post ID or post object."},{"required":"no","param":"string $new_title (optional) New title"},{"required":"no","param":"string $new_slug (optional) New slug"}],"desc":"sample permalink html","returns":"string intended to be used for the inplace editor of the permalink post slug on in the post (and page?) editor."},"_wp_post_thumbnail_html":{"params":[{"required":"yes","param":"int $thumbnail_id ID of the attachment used for thumbnail"}],"desc":"Output HTML for the post thumbnail meta-box.","returns":"string html"},"wp_check_post_lock":{"params":[{"required":"yes","param":"int $post_id ID of the post to check for editing"}],"desc":"Check to see if the post is currently being edited by another user.","returns":"bool|int False: not locked or locked by current user. Int: user ID of user with lock."},"wp_set_post_lock":{"params":[{"required":"yes","param":"int $post_id ID of the post to being edited"}],"desc":"Mark the post as currently being edited by the current user","returns":"bool|array Returns false if the post doesn&#039;t exist of there is no current user, or an array of the lock time and the user ID."},"_admin_notice_post_locked":{"params":[],"desc":"Outputs the notice message to say that someone else is editing this post at the moment.","returns":"none "},"wp_create_post_autosave":{"params":[],"desc":"Creates autosave data for the specified post from $_POST data.","returns":"unknown "},"post_preview":{"params":[],"desc":"Save draft or manually autosave for showing preview.","returns":"str URL to redirect to show the preview"},"category_exists":{"params":[{"required":"yes","param":"unknown_type $cat_name "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"get_category_to_edit":{"params":[{"required":"yes","param":"unknown_type $id "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"wp_create_category":{"params":[{"required":"yes","param":"unknown_type $cat_name "},{"required":"yes","param":"unknown_type $parent "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"wp_create_categories":{"params":[{"required":"yes","param":"unknown_type $categories "},{"required":"yes","param":"unknown_type $post_id "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"wp_insert_category":{"params":[{"required":"yes","param":"mixed $catarr See defaults below. Set &#039;cat_ID&#039; to a non-zero value to update an existing category. The &#039;taxonomy&#039; key was added in 3.0.0."},{"required":"no","param":"bool $wp_error Optional, since 2.5.0. Set this to true if the caller handles WP_Error return values."}],"desc":"Updates an existing Category or creates a new Category.","returns":"int|object The ID number of the new or updated Category on success. Zero or a WP_Error on failure, depending on param $wp_error."},"wp_update_category":{"params":[{"required":"no","param":"array $catarr The &#039;cat_ID&#039; value is required. All other keys are optional."}],"desc":"Aliases wp_insert_category() with minimal args.","returns":"int|bool The ID number of the new or updated Category on success. Zero or FALSE on failure."},"tag_exists":{"params":[{"required":"yes","param":"unknown_type $tag_name "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"wp_create_tag":{"params":[{"required":"yes","param":"unknown_type $tag_name "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"get_tags_to_edit":{"params":[{"required":"yes","param":"unknown_type $post_id "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"get_terms_to_edit":{"params":[{"required":"yes","param":"unknown_type $post_id "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"wp_create_term":{"params":[{"required":"yes","param":"unknown_type $tag_name "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"tinymce_include":{"params":[],"desc":"","returns":""},"documentation_link":{"params":[],"desc":"Unused Admin function.","returns":""},"wp_shrink_dimensions":{"params":[{"required":"yes","param":"int $width Current width of the image"},{"required":"yes","param":"int $height Current height of the image"},{"required":"yes","param":"int $wmax Maximum wanted width"},{"required":"yes","param":"int $hmax Maximum wanted height"}],"desc":"Calculates the new dimensions for a downsampled image.","returns":"mixed Array(height,width) of shrunk dimensions."},"dropdown_categories":{"params":[{"required":"yes","param":"unknown_type $default "},{"required":"yes","param":"unknown_type $parent "},{"required":"yes","param":"unknown_type $popular_ids "}],"desc":"{@internal Missing Short Description}}","returns":""},"dropdown_link_categories":{"params":[{"required":"yes","param":"unknown_type $default "}],"desc":"{@internal Missing Short Description}}","returns":""},"wp_dropdown_cats":{"params":[{"required":"yes","param":"unknown_type $currentcat "},{"required":"yes","param":"unknown_type $currentparent "},{"required":"yes","param":"unknown_type $parent "},{"required":"yes","param":"unknown_type $level "},{"required":"yes","param":"unknown_type $categories "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"add_option_update_handler":{"params":[{"required":"yes","param":"string $option_group A settings group name. Should correspond to a whitelisted option key name. Default whitelisted option key names include &quot;general,&quot; &quot;discussion,&quot; and &quot;reading,&quot; among others."},{"required":"yes","param":"string $option_name The name of an option to sanitize and save."},{"required":"yes","param":"unknown_type $sanitize_callback A callback function that sanitizes the option&#039;s value."}],"desc":"Register a setting and its sanitization callback","returns":"unknown "},"remove_option_update_handler":{"params":[{"required":"yes","param":"unknown_type $option_group "},{"required":"yes","param":"unknown_type $option_name "},{"required":"yes","param":"unknown_type $sanitize_callback "}],"desc":"Unregister a setting","returns":"unknown "},"codepress_get_lang":{"params":[{"required":"yes","param":"string $filename "}],"desc":"Determines the language to use for CodePress syntax highlighting.","returns":""},"codepress_footer_js":{"params":[],"desc":"Adds Javascript required to make CodePress work on the theme/plugin editors.","returns":""},"use_codepress":{"params":[],"desc":"Determine whether to use CodePress.","returns":""},"get_author_user_ids":{"params":[],"desc":"","returns":"array List of user IDs."},"get_editable_authors":{"params":[{"required":"yes","param":"int $user_id User ID."}],"desc":"","returns":"array|bool List of editable authors. False if no editable users."},"get_editable_user_ids":{"params":[{"required":"yes","param":"int $user_id User ID."},{"required":"no","param":"bool $exclude_zeros Optional, default is true. Whether to exclude zeros."}],"desc":"","returns":"unknown "},"get_nonauthor_user_ids":{"params":[],"desc":"","returns":""},"get_others_unpublished_posts":{"params":[{"required":"yes","param":"int $user_id User ID to not retrieve posts from."},{"required":"no","param":"string $type Optional, defaults to &#039;any&#039;. Post type to retrieve, can be &#039;draft&#039; or &#039;pending&#039;."}],"desc":"Retrieve editable posts from other users.","returns":"array List of posts from others."},"get_others_drafts":{"params":[{"required":"yes","param":"int $user_id User ID."}],"desc":"Retrieve drafts from other users.","returns":"array List of drafts from other users."},"get_others_pending":{"params":[{"required":"yes","param":"int $user_id User ID."}],"desc":"Retrieve pending review posts from other users.","returns":"array List of posts with pending review post type from other users."},"wp_dashboard_quick_press_output":{"params":[],"desc":"Output the QuickPress dashboard widget.","returns":""},"wp_tiny_mce":{"params":[],"desc":"","returns":""},"wp_preload_dialogs":{"params":[],"desc":"","returns":""},"wp_print_editor_js":{"params":[],"desc":"","returns":""},"wp_quicktags":{"params":[],"desc":"","returns":""},"screen_layout":{"params":[],"desc":"Returns the screen layout options.","returns":""},"screen_options":{"params":[],"desc":"Returns the screen&#039;s per-page options.","returns":""},"screen_meta":{"params":[],"desc":"Renders the screen&#039;s help.","returns":""},"favorite_actions":{"params":[],"desc":"Favorite actions were deprecated in version 3.2. Use the admin bar instead.","returns":""},"media_upload_image":{"params":[],"desc":"","returns":""},"media_upload_audio":{"params":[],"desc":"","returns":""},"media_upload_video":{"params":[],"desc":"","returns":""},"media_upload_file":{"params":[],"desc":"","returns":""},"type_url_form_image":{"params":[],"desc":"","returns":""},"type_url_form_audio":{"params":[],"desc":"","returns":""},"type_url_form_video":{"params":[],"desc":"","returns":""},"type_url_form_file":{"params":[],"desc":"","returns":""},"add_contextual_help":{"params":[{"required":"yes","param":"string $screen The handle for the screen to add help to. This is usually the hook name returned by the add_*_page() functions."},{"required":"yes","param":"string $help The content of an &#039;Overview&#039; help tab."}],"desc":"Add contextual help text for a page.","returns":""},"wp_get_db_schema":{"params":[{"required":"no","param":"string $scope Optional. The tables for which to retrieve SQL. Can be all, global, ms_global, or blog tables. Defaults to all."},{"required":"no","param":"int $blog_id Optional. The blog ID for which to retrieve SQL. Default is the current blog ID."}],"desc":"Retrieve the SQL for creating database tables.","returns":"string The SQL needed to create the requested tables."},"populate_options":{"params":[],"desc":"Create WordPress options and set the default values.","returns":""},"populate_roles":{"params":[],"desc":"Execute WordPress role creation for the various WordPress versions.","returns":""},"populate_roles_160":{"params":[],"desc":"Create the roles for WordPress 2.0","returns":""},"populate_roles_210":{"params":[],"desc":"Create and modify WordPress roles for WordPress 2.1.","returns":""},"populate_roles_230":{"params":[],"desc":"Create and modify WordPress roles for WordPress 2.3.","returns":""},"populate_roles_250":{"params":[],"desc":"Create and modify WordPress roles for WordPress 2.5.","returns":""},"populate_roles_260":{"params":[],"desc":"Create and modify WordPress roles for WordPress 2.6.","returns":""},"populate_roles_270":{"params":[],"desc":"Create and modify WordPress roles for WordPress 2.7.","returns":""},"populate_roles_280":{"params":[],"desc":"Create and modify WordPress roles for WordPress 2.8.","returns":""},"populate_roles_300":{"params":[],"desc":"Create and modify WordPress roles for WordPress 3.0.","returns":""},"install_network":{"params":[],"desc":"","returns":""},"populate_network":{"params":[{"required":"yes","param":"int $network_id id of network to populate"}],"desc":"populate network settings","returns":"bool|WP_Error True on success, or WP_Error on warning (with the install otherwise successful, so the error code must be checked) or failure."},"_get_list_table":{"params":[{"required":"yes","param":"string $class The type of the list table, which is the class name."}],"desc":"Fetch an instance of a WP_List_Table class.","returns":"object|bool Object on success, false if the class does not exist."},"register_column_headers":{"params":[{"required":"yes","param":"string $screen The handle for the screen to add help to. This is usually the hook name returned by the add_*_page() functions."},{"required":"yes","param":"array $columns An array of columns with column IDs as the keys and translated column names as the values"}],"desc":"Register column headers for a particular screen.","returns":""},"print_column_headers":{"params":[],"desc":"Prints column headers for a particular screen.","returns":""},"update_core":{"params":[{"required":"yes","param":"string $from New release unzipped path."},{"required":"yes","param":"string $to Path to old WordPress installation."}],"desc":"Upgrade the core of WordPress.","returns":"WP_Error|null WP_Error on failure, null on success."},"_copy_dir":{"params":[{"required":"yes","param":"string $from source directory"},{"required":"yes","param":"string $to destination directory"},{"required":"yes","param":"array $skip_list a list of files/folders to skip copying"}],"desc":"Copies a directory from one location to another via the WordPress Filesystem Abstraction.","returns":"mixed WP_Error on failure, True on success."},"_redirect_to_about_wordpress":{"params":[],"desc":"Redirect to the About WordPress page after a successful upgrade.","returns":""},"wp_image_editor":{"params":[],"desc":"WordPress Image Editor","returns":""},"load_image_to_edit":{"params":[],"desc":"","returns":""},"wp_stream_image":{"params":[],"desc":"","returns":""},"wp_save_image_file":{"params":[],"desc":"","returns":""},"_image_get_preview_ratio":{"params":[],"desc":"","returns":""},"_rotate_image_resource":{"params":[],"desc":"","returns":""},"_flip_image_resource":{"params":[],"desc":"","returns":""},"_crop_image_resource":{"params":[],"desc":"","returns":""},"image_edit_apply_changes":{"params":[],"desc":"","returns":""},"stream_preview_image":{"params":[],"desc":"","returns":""},"wp_restore_image":{"params":[],"desc":"","returns":""},"wp_save_image":{"params":[],"desc":"","returns":""},"_wp_ajax_menu_quick_search":{"params":[{"required":"yes","param":"array $request The unsanitized request values."}],"desc":"Prints the appropriate response to a menu quick search.","returns":""},"wp_nav_menu_setup":{"params":[],"desc":"Register nav menu metaboxes and advanced menu items","returns":""},"wp_initial_nav_menu_meta_boxes":{"params":[],"desc":"Limit the amount of meta boxes to just links, pages and cats for first time users.","returns":""},"wp_nav_menu_post_type_meta_boxes":{"params":[],"desc":"Creates metaboxes for any post type menu item.","returns":""},"wp_nav_menu_taxonomy_meta_boxes":{"params":[],"desc":"Creates metaboxes for any taxonomy menu item.","returns":""},"wp_nav_menu_locations_meta_box":{"params":[],"desc":"Displays a metabox for the nav menu theme locations.","returns":""},"wp_nav_menu_item_link_meta_box":{"params":[],"desc":"Displays a metabox for the custom links menu item.","returns":""},"wp_nav_menu_item_post_type_meta_box":{"params":[{"required":"yes","param":"string $object Not used."},{"required":"yes","param":"string $post_type The post type object."}],"desc":"Displays a metabox for a post type menu item.","returns":""},"wp_nav_menu_item_taxonomy_meta_box":{"params":[{"required":"yes","param":"string $object Not used."},{"required":"yes","param":"string $taxonomy The taxonomy object."}],"desc":"Displays a metabox for a taxonomy menu item.","returns":""},"wp_save_nav_menu_items":{"params":[{"required":"yes","param":"int $menu_id The menu ID for which to save this item. $menu_id of 0 makes a draft, orphaned menu item."},{"required":"yes","param":"array $menu_data The unsanitized posted menu item data."}],"desc":"Save posted nav menu item data.","returns":"array The database IDs of the items saved"},"_wp_nav_menu_meta_box_object":{"params":[{"required":"yes","param":"object $object The post type or taxonomy meta-object."}],"desc":"Adds custom arguments to some of the meta box object types.","returns":"object The post type of taxonomy object."},"wp_get_nav_menu_to_edit":{"params":[{"required":"yes","param":"string $menu_id The ID of the menu to format."}],"desc":"Returns the menu formatted to edit.","returns":"string|WP_Error $output The menu formatted to edit or error object on failure."},"wp_nav_menu_manage_columns":{"params":[],"desc":"Returns the columns for the nav menus page.","returns":"string|WP_Error $output The menu formatted to edit or error object on failure."},"_wp_delete_orphaned_draft_menu_items":{"params":[],"desc":"Deletes orphaned draft menu items","returns":""},"get_importers":{"params":[],"desc":"Retrieve list of importers.","returns":"array "},"register_importer":{"params":[{"required":"yes","param":"string $id Importer tag. Used to uniquely identify importer."},{"required":"yes","param":"string $name Importer name and title."},{"required":"yes","param":"string $description Importer description."},{"required":"yes","param":"callback $callback Callback to run."}],"desc":"Register importer for WordPress.","returns":"WP_Error Returns WP_Error when $callback is WP_Error."},"wp_import_cleanup":{"params":[{"required":"yes","param":"string $id Importer ID."}],"desc":"Cleanup importer.","returns":""},"wp_import_handle_upload":{"params":[],"desc":"Handle importer uploading and add attachment.","returns":"array Uploaded file&#039;s details on success, error message on failure"},"get_plugin_data":{"params":[{"required":"yes","param":"string $plugin_file Path to the plugin file"},{"required":"yes","param":"bool $markup If the returned data should have HTML markup applied"},{"required":"yes","param":"bool $translate If the returned data should be translated"}],"desc":"Parse the plugin contents to retrieve plugin&#039;s metadata.","returns":"array See above for description."},"_get_plugin_data_markup_translate":{"params":[],"desc":"","returns":""},"get_plugin_files":{"params":[{"required":"yes","param":"string $plugin Plugin ID"}],"desc":"Get a list of a plugin&#039;s files.","returns":"array List of files relative to the plugin root."},"get_plugins":{"params":[{"required":"no","param":"string $plugin_folder Optional. Relative path to single plugin folder."}],"desc":"Check the plugins directory and retrieve all plugin files with plugin data.","returns":"array Key is the plugin file path and the value is an array of the plugin data."},"get_mu_plugins":{"params":[],"desc":"Check the mu-plugins directory and retrieve all mu-plugin files with any plugin data.","returns":"array Key is the mu-plugin file path and the value is an array of the mu-plugin data."},"_sort_uname_callback":{"params":[],"desc":"Callback to sort array by a &#039;Name&#039; key.","returns":""},"get_dropins":{"params":[],"desc":"Check the wp-content directory and retrieve all drop-ins with any plugin data.","returns":"array Key is the file path and the value is an array of the plugin data."},"_get_dropins":{"params":[],"desc":"Returns drop-ins that WordPress uses.","returns":"array Key is file name. The value is an array, with the first value the purpose of the drop-in and the second value the name of the constant that must be true for the drop-in to be used, or true if no constant is required."},"is_plugin_active":{"params":[{"required":"yes","param":"string $plugin Base plugin path from plugins directory."}],"desc":"Check whether the plugin is active by checking the active_plugins list.","returns":"bool True, if in the active plugins list. False, not in the list."},"is_plugin_inactive":{"params":[{"required":"yes","param":"string $plugin Base plugin path from plugins directory."}],"desc":"Check whether the plugin is inactive.","returns":"bool True if inactive. False if active."},"is_plugin_active_for_network":{"params":[{"required":"yes","param":"string $plugin Base plugin path from plugins directory."}],"desc":"Check whether the plugin is active for the entire network.","returns":"bool True, if active for the network, otherwise false."},"is_network_only_plugin":{"params":[{"required":"yes","param":"string $plugin Plugin to check"}],"desc":"Checks for &quot;Network: true&quot; in the plugin header to see if this should be activated only as a network wide plugin. The plugin would also work when Multisite is not enabled.","returns":"bool True if plugin is network only, false otherwise."},"activate_plugin":{"params":[{"required":"yes","param":"string $plugin Plugin path to main plugin file with plugin data."},{"required":"no","param":"string $redirect Optional. URL to redirect to."},{"required":"yes","param":"bool $network_wide Whether to enable the plugin for all sites in the network or just the current site. Multisite only. Default is false."},{"required":"no","param":"bool $silent Prevent calling activation hooks. Optional, default is false."}],"desc":"Attempts activation of plugin in a &quot;sandbox&quot; and redirects on success.","returns":"WP_Error|null WP_Error on invalid file or null on success."},"deactivate_plugins":{"params":[{"required":"yes","param":"string|array $plugins Single plugin or list of plugins to deactivate."},{"required":"yes","param":"bool $silent Prevent calling deactivation hooks. Default is false."}],"desc":"Deactivate a single plugin or multiple plugins.","returns":""},"activate_plugins":{"params":[{"required":"yes","param":"string|array $plugins "},{"required":"yes","param":"string $redirect Redirect to page after successful activation."},{"required":"yes","param":"bool $network_wide Whether to enable the plugin for all sites in the network."},{"required":"yes","param":"bool $silent Prevent calling activation hooks. Default is false."}],"desc":"Activate multiple plugins.","returns":"bool|WP_Error True when finished or WP_Error if there were errors during a plugin activation."},"delete_plugins":{"params":[{"required":"yes","param":"array $plugins List of plugin"},{"required":"yes","param":"string $redirect Redirect to page when complete."}],"desc":"Remove directory and files of a plugin for a single or list of plugin(s).","returns":"mixed "},"validate_active_plugins":{"params":[],"desc":"Validate active plugins","returns":"array invalid plugins, plugin as key, error as value"},"validate_plugin":{"params":[{"required":"yes","param":"string $plugin Plugin Path"}],"desc":"Validate the plugin path.","returns":"WP_Error|int 0 on success, WP_Error on failure."},"is_uninstallable_plugin":{"params":[{"required":"yes","param":"string $plugin Plugin path to check."}],"desc":"Whether the plugin can be uninstalled.","returns":"bool Whether plugin can be uninstalled."},"uninstall_plugin":{"params":[{"required":"yes","param":"string $plugin Relative plugin path from Plugin Directory."}],"desc":"Uninstall a single plugin.","returns":""},"add_menu_page":{"params":[{"required":"yes","param":"string $page_title The text to be displayed in the title tags of the page when the menu is selected"},{"required":"yes","param":"string $menu_title The text to be used for the menu"},{"required":"yes","param":"string $capability The capability required for this menu to be displayed to the user."},{"required":"yes","param":"string $menu_slug The slug name to refer to this menu by (should be unique for this menu)"},{"required":"yes","param":"callback $function The function to be called to output the content for this page."},{"required":"yes","param":"string $icon_url The url to the icon to be used for this menu"},{"required":"yes","param":"int $position The position in the menu order this one should appear"}],"desc":"Add a top level menu page","returns":"string The resulting page&#039;s hook_suffix"},"add_object_page":{"params":[{"required":"yes","param":"string $page_title The text to be displayed in the title tags of the page when the menu is selected"},{"required":"yes","param":"string $menu_title The text to be used for the menu"},{"required":"yes","param":"string $capability The capability required for this menu to be displayed to the user."},{"required":"yes","param":"string $menu_slug The slug name to refer to this menu by (should be unique for this menu)"},{"required":"yes","param":"callback $function The function to be called to output the content for this page."},{"required":"yes","param":"string $icon_url The url to the icon to be used for this menu"}],"desc":"Add a top level menu page in the &#039;objects&#039; section","returns":"string The resulting page&#039;s hook_suffix"},"add_utility_page":{"params":[{"required":"yes","param":"string $page_title The text to be displayed in the title tags of the page when the menu is selected"},{"required":"yes","param":"string $menu_title The text to be used for the menu"},{"required":"yes","param":"string $capability The capability required for this menu to be displayed to the user."},{"required":"yes","param":"string $menu_slug The slug name to refer to this menu by (should be unique for this menu)"},{"required":"yes","param":"callback $function The function to be called to output the content for this page."},{"required":"yes","param":"string $icon_url The url to the icon to be used for this menu"}],"desc":"Add a top level menu page in the &#039;utility&#039; section","returns":"string The resulting page&#039;s hook_suffix"},"add_submenu_page":{"params":[{"required":"yes","param":"string $parent_slug The slug name for the parent menu (or the file name of a standard WordPress admin page)"},{"required":"yes","param":"string $page_title The text to be displayed in the title tags of the page when the menu is selected"},{"required":"yes","param":"string $menu_title The text to be used for the menu"},{"required":"yes","param":"string $capability The capability required for this menu to be displayed to the user."},{"required":"yes","param":"string $menu_slug The slug name to refer to this menu by (should be unique for this menu)"},{"required":"yes","param":"callback $function The function to be called to output the content for this page."}],"desc":"Add a sub menu page","returns":"string|bool The resulting page&#039;s hook_suffix, or false if the user does not have the capability required."},"add_management_page":{"params":[{"required":"yes","param":"string $page_title The text to be displayed in the title tags of the page when the menu is selected"},{"required":"yes","param":"string $menu_title The text to be used for the menu"},{"required":"yes","param":"string $capability The capability required for this menu to be displayed to the user."},{"required":"yes","param":"string $menu_slug The slug name to refer to this menu by (should be unique for this menu)"},{"required":"yes","param":"callback $function The function to be called to output the content for this page."}],"desc":"Add sub menu page to the tools main menu.","returns":"string|bool The resulting page&#039;s hook_suffix, or false if the user does not have the capability required."},"add_options_page":{"params":[{"required":"yes","param":"string $page_title The text to be displayed in the title tags of the page when the menu is selected"},{"required":"yes","param":"string $menu_title The text to be used for the menu"},{"required":"yes","param":"string $capability The capability required for this menu to be displayed to the user."},{"required":"yes","param":"string $menu_slug The slug name to refer to this menu by (should be unique for this menu)"},{"required":"yes","param":"callback $function The function to be called to output the content for this page."}],"desc":"Add sub menu page to the options main menu.","returns":"string|bool The resulting page&#039;s hook_suffix, or false if the user does not have the capability required."},"add_theme_page":{"params":[{"required":"yes","param":"string $page_title The text to be displayed in the title tags of the page when the menu is selected"},{"required":"yes","param":"string $menu_title The text to be used for the menu"},{"required":"yes","param":"string $capability The capability required for this menu to be displayed to the user."},{"required":"yes","param":"string $menu_slug The slug name to refer to this menu by (should be unique for this menu)"},{"required":"yes","param":"callback $function The function to be called to output the content for this page."}],"desc":"Add sub menu page to the themes main menu.","returns":"string|bool The resulting page&#039;s hook_suffix, or false if the user does not have the capability required."},"add_plugins_page":{"params":[{"required":"yes","param":"string $page_title The text to be displayed in the title tags of the page when the menu is selected"},{"required":"yes","param":"string $menu_title The text to be used for the menu"},{"required":"yes","param":"string $capability The capability required for this menu to be displayed to the user."},{"required":"yes","param":"string $menu_slug The slug name to refer to this menu by (should be unique for this menu)"},{"required":"yes","param":"callback $function The function to be called to output the content for this page."}],"desc":"Add sub menu page to the plugins main menu.","returns":"string|bool The resulting page&#039;s hook_suffix, or false if the user does not have the capability required."},"add_users_page":{"params":[{"required":"yes","param":"string $page_title The text to be displayed in the title tags of the page when the menu is selected"},{"required":"yes","param":"string $menu_title The text to be used for the menu"},{"required":"yes","param":"string $capability The capability required for this menu to be displayed to the user."},{"required":"yes","param":"string $menu_slug The slug name to refer to this menu by (should be unique for this menu)"},{"required":"yes","param":"callback $function The function to be called to output the content for this page."}],"desc":"Add sub menu page to the Users/Profile main menu.","returns":"string|bool The resulting page&#039;s hook_suffix, or false if the user does not have the capability required."},"add_dashboard_page":{"params":[{"required":"yes","param":"string $page_title The text to be displayed in the title tags of the page when the menu is selected"},{"required":"yes","param":"string $menu_title The text to be used for the menu"},{"required":"yes","param":"string $capability The capability required for this menu to be displayed to the user."},{"required":"yes","param":"string $menu_slug The slug name to refer to this menu by (should be unique for this menu)"},{"required":"yes","param":"callback $function The function to be called to output the content for this page."}],"desc":"Add sub menu page to the Dashboard main menu.","returns":"string|bool The resulting page&#039;s hook_suffix, or false if the user does not have the capability required."},"add_posts_page":{"params":[{"required":"yes","param":"string $page_title The text to be displayed in the title tags of the page when the menu is selected"},{"required":"yes","param":"string $menu_title The text to be used for the menu"},{"required":"yes","param":"string $capability The capability required for this menu to be displayed to the user."},{"required":"yes","param":"string $menu_slug The slug name to refer to this menu by (should be unique for this menu)"},{"required":"yes","param":"callback $function The function to be called to output the content for this page."}],"desc":"Add sub menu page to the posts main menu.","returns":"string|bool The resulting page&#039;s hook_suffix, or false if the user does not have the capability required."},"add_media_page":{"params":[{"required":"yes","param":"string $page_title The text to be displayed in the title tags of the page when the menu is selected"},{"required":"yes","param":"string $menu_title The text to be used for the menu"},{"required":"yes","param":"string $capability The capability required for this menu to be displayed to the user."},{"required":"yes","param":"string $menu_slug The slug name to refer to this menu by (should be unique for this menu)"},{"required":"yes","param":"callback $function The function to be called to output the content for this page."}],"desc":"Add sub menu page to the media main menu.","returns":"string|bool The resulting page&#039;s hook_suffix, or false if the user does not have the capability required."},"add_links_page":{"params":[{"required":"yes","param":"string $page_title The text to be displayed in the title tags of the page when the menu is selected"},{"required":"yes","param":"string $menu_title The text to be used for the menu"},{"required":"yes","param":"string $capability The capability required for this menu to be displayed to the user."},{"required":"yes","param":"string $menu_slug The slug name to refer to this menu by (should be unique for this menu)"},{"required":"yes","param":"callback $function The function to be called to output the content for this page."}],"desc":"Add sub menu page to the links main menu.","returns":"string|bool The resulting page&#039;s hook_suffix, or false if the user does not have the capability required."},"add_pages_page":{"params":[{"required":"yes","param":"string $page_title The text to be displayed in the title tags of the page when the menu is selected"},{"required":"yes","param":"string $menu_title The text to be used for the menu"},{"required":"yes","param":"string $capability The capability required for this menu to be displayed to the user."},{"required":"yes","param":"string $menu_slug The slug name to refer to this menu by (should be unique for this menu)"},{"required":"yes","param":"callback $function The function to be called to output the content for this page."}],"desc":"Add sub menu page to the pages main menu.","returns":"string|bool The resulting page&#039;s hook_suffix, or false if the user does not have the capability required."},"add_comments_page":{"params":[{"required":"yes","param":"string $page_title The text to be displayed in the title tags of the page when the menu is selected"},{"required":"yes","param":"string $menu_title The text to be used for the menu"},{"required":"yes","param":"string $capability The capability required for this menu to be displayed to the user."},{"required":"yes","param":"string $menu_slug The slug name to refer to this menu by (should be unique for this menu)"},{"required":"yes","param":"callback $function The function to be called to output the content for this page."}],"desc":"Add sub menu page to the comments main menu.","returns":"string|bool The resulting page&#039;s hook_suffix, or false if the user does not have the capability required."},"remove_menu_page":{"params":[{"required":"yes","param":"string $menu_slug The slug of the menu"}],"desc":"Remove a top level admin menu","returns":"array|bool The removed menu on success, False if not found"},"remove_submenu_page":{"params":[{"required":"yes","param":"string $menu_slug The slug for the parent menu"},{"required":"yes","param":"string $submenu_slug The slug of the submenu"}],"desc":"Remove an admin submenu","returns":"array|bool The removed submenu on success, False if not found"},"menu_page_url":{"params":[{"required":"yes","param":"string $menu_slug The slug name to refer to this menu by (should be unique for this menu)"},{"required":"yes","param":"bool $echo Whether or not to echo the url - default is true"}],"desc":"Get the url to access a particular menu page based on the slug it was registered with.","returns":"string the url"},"get_admin_page_parent":{"params":[],"desc":"","returns":""},"get_admin_page_title":{"params":[],"desc":"","returns":""},"get_plugin_page_hook":{"params":[],"desc":"","returns":""},"get_plugin_page_hookname":{"params":[],"desc":"","returns":""},"user_can_access_admin_page":{"params":[],"desc":"","returns":""},"register_setting":{"params":[{"required":"yes","param":"string $option_group A settings group name. Should correspond to a whitelisted option key name. Default whitelisted option key names include &quot;general,&quot; &quot;discussion,&quot; and &quot;reading,&quot; among others."},{"required":"yes","param":"string $option_name The name of an option to sanitize and save."},{"required":"yes","param":"unknown_type $sanitize_callback A callback function that sanitizes the option&#039;s value."}],"desc":"Register a setting and its sanitization callback","returns":"unknown "},"unregister_setting":{"params":[{"required":"yes","param":"unknown_type $option_group "},{"required":"yes","param":"unknown_type $option_name "},{"required":"yes","param":"unknown_type $sanitize_callback "}],"desc":"Unregister a setting","returns":"unknown "},"option_update_filter":{"params":[{"required":"yes","param":"unknown_type $options "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"add_option_whitelist":{"params":[{"required":"yes","param":"unknown_type $new_options "},{"required":"yes","param":"unknown_type $options "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"remove_option_whitelist":{"params":[{"required":"yes","param":"unknown_type $del_options "},{"required":"yes","param":"unknown_type $options "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"settings_fields":{"params":[{"required":"yes","param":"string $option_group A settings group name. This should match the group name used in register_setting()."}],"desc":"Output nonce, action, and option_page fields for a settings page.","returns":""},"wpmu_menu":{"params":[],"desc":"","returns":""},"wpmu_checkAvailableSpace":{"params":[],"desc":"Determines if the available space defined by the admin has been exceeded by the user.","returns":""},"mu_options":{"params":[],"desc":"","returns":""},"activate_sitewide_plugin":{"params":[],"desc":"","returns":""},"deactivate_sitewide_plugin":{"params":[],"desc":"","returns":""},"is_wpmu_sitewide_plugin":{"params":[],"desc":"","returns":""},"get_preferred_from_update_core":{"params":[],"desc":"Selects the first update version from the update_core option","returns":"object the response from the API"},"get_core_updates":{"params":[{"required":"yes","param":"array $options Set $options&#039;dismissed&#039; to true to show dismissed upgrades too, set $options&#039;available&#039; to false to skip not-dismissed updates."}],"desc":"Get available core updates","returns":"array Array of the update objects"},"dismiss_core_update":{"params":[],"desc":"","returns":""},"undismiss_core_update":{"params":[],"desc":"","returns":""},"find_core_update":{"params":[],"desc":"","returns":""},"core_update_footer":{"params":[],"desc":"","returns":""},"update_nag":{"params":[],"desc":"","returns":""},"update_right_now_message":{"params":[],"desc":"","returns":""},"get_plugin_updates":{"params":[],"desc":"","returns":""},"wp_plugin_update_rows":{"params":[],"desc":"","returns":""},"wp_plugin_update_row":{"params":[],"desc":"","returns":""},"wp_update_plugin":{"params":[],"desc":"","returns":""},"get_theme_updates":{"params":[],"desc":"","returns":""},"wp_update_theme":{"params":[],"desc":"","returns":""},"wp_theme_update_rows":{"params":[],"desc":"","returns":""},"wp_theme_update_row":{"params":[],"desc":"","returns":""},"wp_update_core":{"params":[],"desc":"","returns":""},"maintenance_nag":{"params":[],"desc":"","returns":""},"add_link":{"params":[],"desc":"Add a link to using values provided in $_POST.","returns":"int|WP_Error Value 0 or WP_Error on failure. The link ID on success."},"edit_link":{"params":[{"required":"no","param":"int $link_id Optional. ID of the link to edit."}],"desc":"Update or insert a link using values provided in $_POST.","returns":"int|WP_Error Value 0 or WP_Error on failure. The link ID on success."},"get_default_link_to_edit":{"params":[],"desc":"Retrieve the default link for editing.","returns":"object Default link"},"wp_delete_link":{"params":[{"required":"yes","param":"int $link_id ID of the link to delete"}],"desc":"Delete link specified from database","returns":"bool True"},"wp_get_link_cats":{"params":[{"required":"yes","param":"int $link_id Link ID to look up"}],"desc":"Retrieves the link categories associated with the link specified.","returns":"array The requested link&#039;s categories"},"get_link_to_edit":{"params":[{"required":"yes","param":"int $link_id ID of link to retrieve"}],"desc":"Retrieve link data based on ID.","returns":"object Link for editing"},"wp_insert_link":{"params":[{"required":"yes","param":"array $linkdata Elements that make up the link to insert."},{"required":"no","param":"bool $wp_error Optional. If true return WP_Error object on failure."}],"desc":"This function inserts/updates links into/in the database.","returns":"int|WP_Error Value 0 or WP_Error on failure. The link ID on success."},"wp_set_link_cats":{"params":[{"required":"yes","param":"int $link_id ID of link to update"},{"required":"yes","param":"array $link_categories Array of categories to"}],"desc":"Update link with the specified link categories.","returns":""},"wp_update_link":{"params":[{"required":"yes","param":"array $linkdata Link data to update."}],"desc":"Update a link in the database.","returns":"int|WP_Error Value 0 or WP_Error on failure. The updated link ID on success."},"get_file_description":{"params":[{"required":"yes","param":"string $file Filesystem path or filename"}],"desc":"Get the description for standard WordPress theme files and other various standard WordPress files","returns":"string Description of file from $wp_file_descriptions or basename of $file if description doesn&#039;t exist"},"get_home_path":{"params":[],"desc":"Get the absolute filesystem path to the root of the WordPress installation","returns":"string Full filesystem path to the root of the WordPress installation"},"get_real_file_to_edit":{"params":[{"required":"yes","param":"string $file filesystem path relative to the WordPress install directory or to the wp-content directory"}],"desc":"Get the real file system path to a file to edit within the admin","returns":"string full file system path to edit"},"list_files":{"params":[{"required":"yes","param":"string $folder Full path to folder"},{"required":"no","param":"int $levels (optional) Levels of folders to follow, Default: 100 (PHP Loop limit)."}],"desc":"Returns a listing of all files in the specified folder and all subdirectories up to 100 levels deep.","returns":"bool|array False on failure, Else array of files"},"wp_tempnam":{"params":[{"required":"no","param":"string $filename (optional) Filename to base the Unique file off"},{"required":"no","param":"string $dir (optional) Directory to store the file in"}],"desc":"Returns a filename of a Temporary unique file.","returns":"string a writable filename"},"validate_file_to_edit":{"params":[{"required":"yes","param":"string $file file the users is attempting to edit"},{"required":"yes","param":"array $allowed_files Array of allowed files to edit, $file must match an entry exactly"}],"desc":"Make sure that the file that was requested to edit, is allowed to be edited","returns":"null "},"wp_handle_upload":{"params":[{"required":"yes","param":"array $file Reference to a single element of $_FILES. Call the function once for each uploaded file."},{"required":"no","param":"array $overrides Optional. An associative array of names=&gt;values to override default variables with extract( $overrides, EXTR_OVERWRITE )."}],"desc":"Handle PHP uploads in WordPress, sanitizing file names, checking extensions for mime type, and moving the file to the appropriate directory within the uploads directory.","returns":"array On success, returns an associative array of file attributes. On failure, returns $overrides&#039;upload_error_handler&#039;(&amp;$file, $message ) or array( &#039;error&#039;=&gt;$message )."},"wp_handle_sideload":{"params":[{"required":"yes","param":"array $file an array similar to that of a PHP $_FILES POST array"},{"required":"no","param":"array $overrides Optional. An associative array of names=&gt;values to override default variables with extract( $overrides, EXTR_OVERWRITE )."}],"desc":"Handle sideloads, which is the process of retrieving a media item from another server instead of a traditional media upload. This process involves sanitizing the filename, checking extensions for mime type, and moving the file to the appropriate directory within the uploads directory.","returns":"array On success, returns an associative array of file attributes. On failure, returns $overrides&#039;upload_error_handler&#039;(&amp;$file, $message ) or array( &#039;error&#039;=&gt;$message )."},"download_url":{"params":[{"required":"yes","param":"string $url the URL of the file to download"},{"required":"yes","param":"int $timeout The timeout for the request to download the file default 300 seconds"}],"desc":"Downloads a url to a local temporary file using the WordPress HTTP Class.","returns":"mixed WP_Error on failure, string Filename on success."},"unzip_file":{"params":[{"required":"yes","param":"string $file Full path and filename of zip archive"},{"required":"yes","param":"string $to Full path on the filesystem to extract archive to"}],"desc":"Unzips a specified ZIP file to a location on the Filesystem via the WordPress Filesystem Abstraction.","returns":"mixed WP_Error on failure, True on success"},"_unzip_file_ziparchive":{"params":[{"required":"yes","param":"string $file Full path and filename of zip archive"},{"required":"yes","param":"string $to Full path on the filesystem to extract archive to"},{"required":"yes","param":"array $needed_dirs A partial list of required folders needed to be created."}],"desc":"This function should not be called directly, use unzip_file instead. Attempts to unzip an archive using the ZipArchive class.","returns":"mixed WP_Error on failure, True on success"},"_unzip_file_pclzip":{"params":[{"required":"yes","param":"string $file Full path and filename of zip archive"},{"required":"yes","param":"string $to Full path on the filesystem to extract archive to"},{"required":"yes","param":"array $needed_dirs A partial list of required folders needed to be created."}],"desc":"This function should not be called directly, use unzip_file instead. Attempts to unzip an archive using the PclZip library.","returns":"mixed WP_Error on failure, True on success"},"copy_dir":{"params":[{"required":"yes","param":"string $from source directory"},{"required":"yes","param":"string $to destination directory"},{"required":"yes","param":"array $skip_list a list of files/folders to skip copying"}],"desc":"Copies a directory from one location to another via the WordPress Filesystem Abstraction.","returns":"mixed WP_Error on failure, True on success."},"WP_Filesystem":{"params":[{"required":"no","param":"array $args (optional) Connection args, These are passed directly to the WP_Filesystem_*() classes."},{"required":"no","param":"string $context (optional) Context for get_filesystem_method(), See function declaration for more information."}],"desc":"Initialises and connects the WordPress Filesystem Abstraction classes.","returns":"boolean false on failure, true on success"},"get_filesystem_method":{"params":[{"required":"yes","param":"array $args Connection details."},{"required":"yes","param":"string $context Full path to the directory that is tested for being writable."}],"desc":"Determines which Filesystem Method to use.","returns":"string The transport to use, see description for valid return values."},"request_filesystem_credentials":{"params":[{"required":"yes","param":"string $form_post the URL to post the form to"},{"required":"yes","param":"string $type the chosen Filesystem method in use"},{"required":"yes","param":"boolean $error if the current request has failed to connect"},{"required":"yes","param":"string $context The directory which is needed access to, The write-test will be performed on this directory by get_filesystem_method()"},{"required":"yes","param":"string $extra_fields Extra POST fields which should be checked for to be included in the post."}],"desc":"Displays a form to the user to request for their FTP/SSH details in order to connect to the filesystem.","returns":"boolean False on failure. True on success."},"wp_install":{"params":[{"required":"yes","param":"string $blog_title Blog title."},{"required":"yes","param":"string $user_name User&#039;s username."},{"required":"yes","param":"string $user_email User&#039;s email."},{"required":"yes","param":"bool $public Whether blog is public."},{"required":"no","param":"null $deprecated Optional. Not used."},{"required":"no","param":"string $user_password Optional. User&#039;s chosen password. Will default to a random password."}],"desc":"Installs the blog","returns":"array Array keys &#039;url&#039;, &#039;user_id&#039;, &#039;password&#039;, &#039;password_message&#039;."},"wp_install_defaults":{"params":[{"required":"yes","param":"int $user_id User ID."}],"desc":"{@internal Missing Short Description}}","returns":""},"wp_new_blog_notification":{"params":[{"required":"yes","param":"string $blog_title Blog title."},{"required":"yes","param":"string $blog_url Blog url."},{"required":"yes","param":"int $user_id User ID."},{"required":"yes","param":"string $password User&#039;s Password."}],"desc":"{@internal Missing Short Description}}","returns":""},"wp_upgrade":{"params":[],"desc":"Run WordPress Upgrade functions.","returns":"null "},"upgrade_all":{"params":[],"desc":"Functions to be called in install and upgrade scripts.","returns":""},"upgrade_100":{"params":[],"desc":"Execute changes made in WordPress 1.0.","returns":""},"upgrade_101":{"params":[],"desc":"Execute changes made in WordPress 1.0.1.","returns":""},"upgrade_110":{"params":[],"desc":"Execute changes made in WordPress 1.2.","returns":""},"upgrade_130":{"params":[],"desc":"Execute changes made in WordPress 1.5.","returns":""},"upgrade_160":{"params":[],"desc":"Execute changes made in WordPress 2.0.","returns":""},"upgrade_210":{"params":[],"desc":"Execute changes made in WordPress 2.1.","returns":""},"upgrade_230":{"params":[],"desc":"Execute changes made in WordPress 2.3.","returns":""},"upgrade_230_options_table":{"params":[],"desc":"Remove old options from the database.","returns":""},"upgrade_230_old_tables":{"params":[],"desc":"Remove old categories, link2cat, and post2cat database tables.","returns":""},"upgrade_old_slugs":{"params":[],"desc":"Upgrade old slugs made in version 2.2.","returns":""},"upgrade_250":{"params":[],"desc":"Execute changes made in WordPress 2.5.0.","returns":""},"upgrade_252":{"params":[],"desc":"Execute changes made in WordPress 2.5.2.","returns":""},"upgrade_260":{"params":[],"desc":"Execute changes made in WordPress 2.6.","returns":""},"upgrade_270":{"params":[],"desc":"Execute changes made in WordPress 2.7.","returns":""},"upgrade_280":{"params":[],"desc":"Execute changes made in WordPress 2.8.","returns":""},"upgrade_290":{"params":[],"desc":"Execute changes made in WordPress 2.9.","returns":""},"upgrade_300":{"params":[],"desc":"Execute changes made in WordPress 3.0.","returns":""},"upgrade_330":{"params":[],"desc":"Execute changes made in WordPress 3.3.","returns":""},"upgrade_network":{"params":[],"desc":"Execute network level changes","returns":""},"maybe_create_table":{"params":[{"required":"yes","param":"string $table_name Database table name."},{"required":"yes","param":"string $create_ddl Create database table SQL."}],"desc":"Create database table, if it doesn&#039;t already exist.","returns":"bool False on error, true if already exists or success."},"drop_index":{"params":[{"required":"yes","param":"string $table Database table name."},{"required":"yes","param":"string $index Index name to drop."}],"desc":"{@internal Missing Short Description}}","returns":"bool True, when finished."},"add_clean_index":{"params":[{"required":"yes","param":"string $table Database table name."},{"required":"yes","param":"string $index Database table index column."}],"desc":"{@internal Missing Short Description}}","returns":"bool True, when done with execution."},"maybe_add_column":{"params":[{"required":"yes","param":"string $table_name Database table name"},{"required":"yes","param":"string $column_name Table column name"},{"required":"yes","param":"string $create_ddl SQL to add column to table."}],"desc":"Add column to database table, if column doesn&#039;t already exist in table.","returns":"bool False on failure. True, if already exists or was successful."},"get_alloptions_110":{"params":[],"desc":"Retrieve all options as it was for 1.2.","returns":"array List of options."},"__get_option":{"params":[{"required":"yes","param":"string $setting Option name."}],"desc":"Version of get_option that is private to install/upgrade.","returns":"mixed "},"deslash":{"params":[{"required":"yes","param":"string $content "}],"desc":"{@internal Missing Short Description}}","returns":"string "},"dbDelta":{"params":[{"required":"yes","param":"unknown_type $queries "},{"required":"yes","param":"unknown_type $execute "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"make_db_current":{"params":[],"desc":"{@internal Missing Short Description}}","returns":""},"make_db_current_silent":{"params":[],"desc":"{@internal Missing Short Description}}","returns":""},"make_site_theme_from_oldschool":{"params":[{"required":"yes","param":"unknown_type $theme_name "},{"required":"yes","param":"unknown_type $template "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"make_site_theme_from_default":{"params":[{"required":"yes","param":"unknown_type $theme_name "},{"required":"yes","param":"unknown_type $template "}],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"make_site_theme":{"params":[],"desc":"{@internal Missing Short Description}}","returns":"unknown "},"translate_level_to_role":{"params":[{"required":"yes","param":"int $level User level."}],"desc":"Translate user level to user role name.","returns":"string User role name."},"wp_check_mysql_version":{"params":[],"desc":"{@internal Missing Short Description}}","returns":""},"maybe_disable_automattic_widgets":{"params":[],"desc":"{@internal Missing Short Description}}","returns":""},"pre_schema_upgrade":{"params":[],"desc":"Runs before the schema is upgraded.","returns":""},"install_global_terms":{"params":[],"desc":"","returns":""},"add_cssclass":{"params":[],"desc":"","returns":""},"add_menu_classes":{"params":[],"desc":"","returns":""},"sort_menu":{"params":[],"desc":"","returns":""},"wp_list_widgets":{"params":[],"desc":"Display list of the available widgets.","returns":""},"_sort_name_callback":{"params":[],"desc":"Callback to sort array by a &#039;name&#039; key.","returns":""},"wp_list_widget_controls":{"params":[{"required":"yes","param":"string $sidebar id slug of the sidebar"}],"desc":"Show the widgets and their settings for a sidebar.","returns":""},"wp_list_widget_controls_dynamic_sidebar":{"params":[{"required":"yes","param":"array $params "}],"desc":"{@internal Missing Short Description}}","returns":"array "},"next_widget_id_number":{"params":[],"desc":"","returns":""},"wp_widget_control":{"params":[{"required":"yes","param":"array $sidebar_args "}],"desc":"Meta widget used to display the control form for a widget.","returns":"array "},"add_user":{"params":[{"required":"no","param":"int $user_id Optional. User ID."}],"desc":"Creates a new user from the &quot;Users&quot; form using $_POST information.","returns":"null|WP_Error|int Null when adding user, WP_Error or User ID integer when no parameters."},"edit_user":{"params":[{"required":"no","param":"int $user_id Optional. User ID."}],"desc":"Edit user settings based on contents of $_POST","returns":"int user id of the updated user"},"get_editable_roles":{"params":[],"desc":"Fetch a filtered list of user roles that the current user is allowed to edit.","returns":"unknown "},"get_user_to_edit":{"params":[{"required":"yes","param":"int $user_id User ID."}],"desc":"Retrieve user data and filter it.","returns":"object WP_User object with user data."},"get_users_drafts":{"params":[{"required":"yes","param":"int $user_id User ID."}],"desc":"Retrieve the user&#039;s drafts.","returns":"array "},"wp_delete_user":{"params":[{"required":"yes","param":"int $id User ID."},{"required":"no","param":"int $reassign Optional. Reassign posts and links to new User ID."}],"desc":"Remove user and optionally reassign posts and links to another user.","returns":"bool True when finished."},"wp_revoke_user":{"params":[{"required":"yes","param":"int $id User ID."}],"desc":"Remove all capabilities from user.","returns":""},"default_password_nag_handler":{"params":[],"desc":"","returns":""},"default_password_nag_edit_user":{"params":[],"desc":"","returns":""},"default_password_nag":{"params":[],"desc":"","returns":""},"startElement":{"params":[{"required":"yes","param":"mixed $parser XML Parser resource."},{"required":"yes","param":"string $tagName XML element name."},{"required":"yes","param":"array $attrs XML element attributes."}],"desc":"XML callback function for the start of a new XML tag.","returns":""},"endElement":{"params":[{"required":"yes","param":"mixed $parser XML Parser resource."},{"required":"yes","param":"string $tagName XML tag name."}],"desc":"XML callback function that is called at the end of a XML tag.","returns":""},"_wp_ajax_delete_comment_response":{"params":[{"required":"yes","param":"int $comment_id "}],"desc":"Sends back current comment total and new page links if they need to be updated.","returns":"die "},"_wp_ajax_add_hierarchical_term":{"params":[],"desc":"","returns":""},"redirect_post":{"params":[{"required":"no","param":"int $post_id Optional. Post ID."}],"desc":"Redirect to previous page.","returns":""},"admin_created_user_email":{"params":[],"desc":"","returns":""},"admin_created_user_subject":{"params":[],"desc":"","returns":""},"use_ssl_preference":{"params":[{"required":"yes","param":"object $user User data object"}],"desc":"Optional SSL preference that can be turned on by hooking to the &#039;personal_options&#039; action.","returns":""},"list_core_update":{"params":[],"desc":"","returns":""},"dismissed_updates":{"params":[],"desc":"","returns":""},"core_upgrade_preamble":{"params":[],"desc":"Display upgrade WordPress for downloading latest or upgrading automatically form.","returns":"null "},"list_plugin_updates":{"params":[],"desc":"","returns":""},"list_theme_updates":{"params":[],"desc":"","returns":""},"do_core_upgrade":{"params":[],"desc":"Upgrade WordPress core display.","returns":"null "},"do_dismiss_core_update":{"params":[],"desc":"","returns":""},"do_undismiss_core_update":{"params":[],"desc":"","returns":""},"no_update_actions":{"params":[],"desc":"","returns":""},"plugin_sandbox_scrape":{"params":[],"desc":"","returns":""},"home_url":{"params":[{"required":"no","param":"string $path (optional) Path relative to the home url."},{"required":"no","param":"string $scheme (optional) Scheme to give the home url context. Currently &#039;http&#039;, &#039;https&#039;."}],"desc":"Retrieve the home url for the current site.","returns":"string Home url link with optional path appended."},"includes_url":{"params":[{"required":"no","param":"string $path Optional. Path relative to the includes url."}],"desc":"Retrieve the url to the includes directory.","returns":"string Includes url link with optional path appended."},"json_encode":{"params":[],"desc":"","returns":""},"display_setup_form":{"params":[],"desc":"Display installer setup form.","returns":""},"wp_credits":{"params":[],"desc":"","returns":""},"_wp_credits_add_profile_link":{"params":[],"desc":"","returns":""},"_wp_credits_build_object_link":{"params":[],"desc":"","returns":""},"network_domain_check":{"params":[],"desc":"Check for an existing network.","returns":"Whether a network exists."},"allow_subdomain_install":{"params":[],"desc":"Allow subdomain install","returns":"bool Whether subdomain install is allowed"},"allow_subdirectory_install":{"params":[],"desc":"Allow subdirectory install","returns":"bool Whether subdirectory install is allowed"},"get_clean_basedomain":{"params":[],"desc":"Get base domain of network.","returns":"string Base domain."},"network_step1":{"params":[],"desc":"Prints step 1 for Network installation process.","returns":""},"network_step2":{"params":[],"desc":"Prints step 2 for Network installation process.","returns":""},"_add_themes_utility_last":{"params":[],"desc":"","returns":""},"wp_widgets_access_body_class":{"params":[],"desc":"","returns":""},"maybe_drop_column":{"params":[{"required":"yes","param":"string $table_name Table name"},{"required":"yes","param":"string $column_name Column name"},{"required":"yes","param":"string $drop_ddl SQL statement to drop column."}],"desc":"Drop column from database table, if it exists.","returns":"bool False on failure, true on success or doesn&#039;t exist."},"check_column":{"params":[{"required":"yes","param":"string $table_name Table name"},{"required":"yes","param":"string $col_name Column name"},{"required":"yes","param":"string $col_type Column type"},{"required":"no","param":"bool $is_null Optional. Check is null."},{"required":"no","param":"mixed $key Optional. Key info."},{"required":"no","param":"mixed $default Optional. Default value."},{"required":"no","param":"mixed $extra Optional. Extra value."}],"desc":"Check column matches criteria.","returns":"bool True, if matches. False, if not matching."},"dvortr":{"params":[],"desc":"","returns":""},"confirm_delete_users":{"params":[],"desc":"","returns":""},"add_metadata":{"params":[{"required":"yes","param":"string $meta_type Type of object metadata is for (e.g., comment, post, or user)"},{"required":"yes","param":"int $object_id ID of the object metadata is for"},{"required":"yes","param":"string $meta_key Metadata key"},{"required":"yes","param":"string $meta_value Metadata value"},{"required":"no","param":"bool $unique Optional, default is false. Whether the specified metadata key should be unique for the object. If true, and the object already has a value for the specified metadata key, no change will be made"}],"desc":"Add metadata for the specified object.","returns":"bool The meta ID on successful update, false on failure."},"update_metadata":{"params":[{"required":"yes","param":"string $meta_type Type of object metadata is for (e.g., comment, post, or user)"},{"required":"yes","param":"int $object_id ID of the object metadata is for"},{"required":"yes","param":"string $meta_key Metadata key"},{"required":"yes","param":"string $meta_value Metadata value"},{"required":"no","param":"string $prev_value Optional. If specified, only update existing metadata entries with the specified value. Otherwise, update all entries."}],"desc":"Update metadata for the specified object. If no value already exists for the specified object ID and metadata key, the metadata will be added.","returns":"bool True on successful update, false on failure."},"delete_metadata":{"params":[{"required":"yes","param":"string $meta_type Type of object metadata is for (e.g., comment, post, or user)"},{"required":"yes","param":"int $object_id ID of the object metadata is for"},{"required":"yes","param":"string $meta_key Metadata key"},{"required":"no","param":"string $meta_value Optional. Metadata value. If specified, only delete metadata entries with this value. Otherwise, delete all entries with the specified meta_key."},{"required":"no","param":"bool $delete_all Optional, default is false. If true, delete matching metadata entries for all objects, ignoring the specified object_id. Otherwise, only delete matching metadata entries for the specified object_id."}],"desc":"Delete metadata for the specified object.","returns":"bool True on successful delete, false on failure."},"get_metadata":{"params":[{"required":"yes","param":"string $meta_type Type of object metadata is for (e.g., comment, post, or user)"},{"required":"yes","param":"int $object_id ID of the object metadata is for"},{"required":"no","param":"string $meta_key Optional. Metadata key. If not specified, retrieve all metadata for the specified object."},{"required":"no","param":"bool $single Optional, default is false. If true, return only the first value of the specified meta_key. This parameter has no effect if meta_key is not specified."}],"desc":"Retrieve metadata for the specified object.","returns":"string|array Single metadata value, or array of values"},"metadata_exists":{"params":[{"required":"yes","param":"string $meta_type Type of object metadata is for (e.g., comment, post, or user)"},{"required":"yes","param":"int $object_id ID of the object metadata is for"},{"required":"yes","param":"string $meta_key Metadata key."}],"desc":"Determine if a meta key is set for a given object","returns":"boolean true of the key is set, false if not."},"get_metadata_by_mid":{"params":[{"required":"yes","param":"string $meta_type Type of object metadata is for (e.g., comment, post, or user)"},{"required":"yes","param":"int $meta_id ID for a specific meta row"}],"desc":"Get meta data by meta ID","returns":"object Meta object or false."},"update_metadata_by_mid":{"params":[{"required":"yes","param":"string $meta_type Type of object metadata is for (e.g., comment, post, or user)"},{"required":"yes","param":"int $meta_id ID for a specific meta row"},{"required":"yes","param":"string $meta_value Metadata value"},{"required":"no","param":"string $meta_key Optional, you can provide a meta key to update it"}],"desc":"Update meta data by meta ID","returns":"bool True on successful update, false on failure."},"delete_metadata_by_mid":{"params":[{"required":"yes","param":"string $meta_type Type of object metadata is for (e.g., comment, post, or user)"},{"required":"yes","param":"int $meta_id ID for a specific meta row"}],"desc":"Delete meta data by meta ID","returns":"bool True on successful delete, false on failure."},"update_meta_cache":{"params":[{"required":"yes","param":"string $meta_type Type of object metadata is for (e.g., comment, post, or user)"},{"required":"yes","param":"int|array $object_ids array or comma delimited list of object IDs to update cache for"}],"desc":"Update the metadata cache for the specified objects.","returns":"mixed Metadata cache for the specified objects, or false on failure."},"get_meta_sql":{"params":[{"required":"yes","param":"array $meta_query A meta query"},{"required":"yes","param":"string $type Type of meta"},{"required":"yes","param":"string $primary_table "},{"required":"yes","param":"string $primary_id_column "},{"required":"no","param":"object $context (optional) The main query object"}],"desc":"Given a meta query, generates SQL clauses to be appended to a main query","returns":"array( &#039;join&#039; =&gt; $join_sql, &#039;where&#039; =&gt; $where_sql )"},"_get_meta_table":{"params":[{"required":"yes","param":"string $type Type of object to get metadata table for (e.g., comment, post, or user)"}],"desc":"Retrieve the name of the metadata table for the specified object type.","returns":"mixed Metadata table name, or false if no metadata table exists"},"is_protected_meta":{"params":[{"required":"yes","param":"string $meta_key Meta key"}],"desc":"Determine whether a meta key is protected","returns":"bool True if the key is protected, false otherwise."},"sanitize_meta":{"params":[{"required":"yes","param":"string $meta_key Meta key"},{"required":"yes","param":"mixed $meta_value Meta value to sanitize"},{"required":"yes","param":"string $meta_type Type of meta"}],"desc":"Sanitize meta value","returns":"mixed Sanitized $meta_value"},"register_meta":{"params":[{"required":"yes","param":"string $meta_type Type of meta"},{"required":"yes","param":"string $meta_key Meta key"},{"required":"yes","param":"string|array $sanitize_callback A function or method to call when sanitizing the value of $meta_key."},{"required":"no","param":"string|array $auth_callback Optional. A function or method to call when performing edit_post_meta, add_post_meta, and delete_post_meta capability checks."},{"required":"yes","param":"array $args Arguments"}],"desc":"Register meta key","returns":""},"add_rewrite_rule":{"params":[{"required":"yes","param":"string $regex Regular Expression to match request against."},{"required":"yes","param":"string $redirect Page to redirect to."},{"required":"no","param":"string $after Optional, default is &#039;bottom&#039;. Where to add rule, can also be &#039;top&#039;."}],"desc":"Add a straight rewrite rule.","returns":""},"add_rewrite_tag":{"params":[{"required":"yes","param":"string $tagname "},{"required":"yes","param":"string $regex "}],"desc":"Add a new tag (like %postname%).","returns":""},"add_permastruct":{"params":[{"required":"yes","param":"string $name Name for permalink structure."},{"required":"yes","param":"string $struct Permalink structure."},{"required":"yes","param":"bool $with_front Prepend front base to permalink structure."}],"desc":"Add permalink structure.","returns":""},"add_feed":{"params":[{"required":"yes","param":"string $feedname "},{"required":"yes","param":"callback $function Callback to run on feed display."}],"desc":"Add a new feed type like /atom1/.","returns":"string Feed action name."},"flush_rewrite_rules":{"params":[{"required":"yes","param":"bool $hard Whether to update .htaccess (hard flush) or just update rewrite_rules transient (soft flush). Default is true (hard)."}],"desc":"Remove rewrite rules and then recreate rewrite rules.","returns":""},"add_rewrite_endpoint":{"params":[{"required":"yes","param":"unknown_type $name "},{"required":"yes","param":"unknown_type $places "}],"desc":"Add an endpoint, like /trackback/.","returns":""},"_wp_filter_taxonomy_base":{"params":[{"required":"yes","param":"string $base The taxonomy base that we&#039;re going to filter"}],"desc":"Filter the URL base for taxonomies.","returns":"string "},"url_to_postid":{"params":[{"required":"yes","param":"string $url Permalink to check."}],"desc":"Examine a url and try to determine the post ID it represents.","returns":"int Post ID, or 0 on failure."},"fetch_rss":{"params":[{"required":"yes","param":"string $url URL to retrieve feed"}],"desc":"Build Magpie object based on RSS from URL.","returns":"bool|MagpieRSS false on failure or MagpieRSS object on success."},"_fetch_remote_file":{"params":[{"required":"yes","param":"string $url URL to retrieve"},{"required":"no","param":"array $headers Optional. Headers to send to the URL."}],"desc":"Retrieve URL headers and content using WP HTTP Request API.","returns":"Snoopy style response"},"_response_to_rss":{"params":[{"required":"yes","param":"unknown_type $resp "}],"desc":"Retrieve","returns":"unknown "},"init":{"params":[],"desc":"Set up constants with default values, unless user overrides.","returns":""},"is_info":{"params":[],"desc":"","returns":""},"is_success":{"params":[],"desc":"","returns":""},"is_redirect":{"params":[],"desc":"","returns":""},"is_error":{"params":[],"desc":"","returns":""},"is_client_error":{"params":[],"desc":"","returns":""},"is_server_error":{"params":[],"desc":"","returns":""},"parse_w3cdtf":{"params":[],"desc":"","returns":""},"wp_rss":{"params":[{"required":"yes","param":"string $url URL of feed to display. Will not auto sense feed URL."},{"required":"no","param":"int $num_items Optional. Number of items to display, default is all."}],"desc":"Display all RSS items in a HTML ordered list.","returns":""},"get_rss":{"params":[{"required":"yes","param":"string $url URL of feed to display. Will not auto sense feed URL."},{"required":"no","param":"int $num_items Optional. Number of items to display, default is all."}],"desc":"Display RSS items in HTML list items.","returns":"bool False on failure."},"get_bloginfo_rss":{"params":[{"required":"yes","param":"string $show See get_bloginfo() for possible values."}],"desc":"RSS container for the bloginfo function.","returns":"string "},"bloginfo_rss":{"params":[{"required":"yes","param":"string $show See get_bloginfo() for possible values."}],"desc":"Display RSS container for the bloginfo function.","returns":""},"get_default_feed":{"params":[],"desc":"Retrieve the default feed.","returns":"string Default feed, or for example &#039;rss2&#039;, &#039;atom&#039;, etc."},"get_wp_title_rss":{"params":[{"required":"no","param":"string $sep Optional.How to separate the title. See wp_title() for more info."}],"desc":"Retrieve the blog title for the feed title.","returns":"string Error message on failure or blog title on success."},"wp_title_rss":{"params":[{"required":"no","param":"string $sep Optional."}],"desc":"Display the blog title for display of the feed title.","returns":""},"get_the_title_rss":{"params":[],"desc":"Retrieve the current post title for the feed.","returns":"string Current post title."},"the_title_rss":{"params":[],"desc":"Display the post title in the feed.","returns":""},"get_the_content_feed":{"params":[{"required":"yes","param":"string $feed_type The type of feed. rss2 | atom | rss | rdf"}],"desc":"Retrieve the post content for feeds.","returns":""},"the_content_feed":{"params":[{"required":"yes","param":"string $feed_type The type of feed. rss2 | atom | rss | rdf"}],"desc":"Display the post content for feeds.","returns":""},"the_excerpt_rss":{"params":[],"desc":"Display the post excerpt for the feed.","returns":""},"the_permalink_rss":{"params":[],"desc":"Display the permalink to the post for use in feeds.","returns":""},"comments_link_feed":{"params":[],"desc":"Outputs the link to the comments for the current post in an xml safe way","returns":"none "},"comment_guid":{"params":[{"required":"no","param":"int|object $comment_id Optional comment object or id. Defaults to global comment object."}],"desc":"Display the feed GUID for the current comment.","returns":""},"get_comment_guid":{"params":[{"required":"no","param":"int|object $comment_id Optional comment object or id. Defaults to global comment object."}],"desc":"Retrieve the feed GUID for the current comment.","returns":"bool|string false on failure or guid for comment on success."},"comment_link":{"params":[],"desc":"Display the link to the comments.","returns":""},"get_comment_author_rss":{"params":[],"desc":"Retrieve the current comment author for use in the feeds.","returns":"string Comment Author"},"comment_author_rss":{"params":[],"desc":"Display the current comment author in the feed.","returns":""},"comment_text_rss":{"params":[],"desc":"Display the current comment content for use in the feeds.","returns":""},"get_the_category_rss":{"params":[{"required":"no","param":"string $type Optional, default is the type returned by get_default_feed()."}],"desc":"Retrieve all of the post categories, formatted for use in feeds.","returns":"string All of the post categories for displaying in the feed."},"the_category_rss":{"params":[{"required":"no","param":"string $type Optional, default is the type returned by get_default_feed()."}],"desc":"Display the post categories in the feed.","returns":""},"html_type_rss":{"params":[],"desc":"Display the HTML type based on the blog setting.","returns":""},"rss_enclosure":{"params":[],"desc":"Display the rss enclosure for the current post.","returns":""},"atom_enclosure":{"params":[],"desc":"Display the atom enclosure for the current post.","returns":""},"prep_atom_text_construct":{"params":[{"required":"yes","param":"string $data Input string"}],"desc":"Determine the type of a string of data with the data formatted.","returns":"array array(type, value)"},"self_link":{"params":[],"desc":"Display the link for the currently displayed feed in a XSS safe way.","returns":""},"feed_content_type":{"params":[],"desc":"Return the content type for specified feed type.","returns":""},"fetch_feed":{"params":[{"required":"yes","param":"string $url URL to retrieve feed"}],"desc":"Build SimplePie object based on RSS or Atom feed from URL.","returns":"WP_Error|SimplePie WP_Error object on failure or SimplePie object on success"},"is_rtl":{"params":[],"desc":"Checks if current locale is RTL.","returns":"bool Whether locale is RTL."},"is_subdomain_install":{"params":[],"desc":"Whether a subdomain configuration is enabled.","returns":"bool True if subdomain configuration is enabled, false otherwise."},"wp_get_active_network_plugins":{"params":[],"desc":"Returns array of network plugin files to be included in global scope.","returns":"array Files to include"},"ms_site_check":{"params":[],"desc":"Checks status of current blog.","returns":"bool|string Returns true on success, or drop-in file to include."},"get_current_site_name":{"params":[],"desc":"Sets current site name.","returns":"object $current_site object with site_name"},"wpmu_current_site":{"params":[],"desc":"Sets current_site object.","returns":"object $current_site object"},"ms_not_installed":{"params":[],"desc":"Displays a failure message.","returns":""},"_walk_bookmarks":{"params":[{"required":"yes","param":"array $bookmarks List of bookmarks to traverse"},{"required":"no","param":"string|array $args Optional. Overwrite the defaults."}],"desc":"The formatted output of a list of bookmarks.","returns":"string Formatted output in HTML"},"wp_list_bookmarks":{"params":[{"required":"no","param":"string|array $args Optional. Overwrite the defaults of the function"}],"desc":"Retrieve or echo all of the bookmarks.","returns":"string|null Will only return if echo option is set to not echo. Default is not return anything."},"check_comment":{"params":[{"required":"yes","param":"string $author Comment Author&#039;s name"},{"required":"yes","param":"string $email Comment Author&#039;s email"},{"required":"yes","param":"string $url Comment Author&#039;s URL"},{"required":"yes","param":"string $comment Comment contents"},{"required":"yes","param":"string $user_ip Comment Author&#039;s IP address"},{"required":"yes","param":"string $user_agent Comment Author&#039;s User Agent"},{"required":"yes","param":"string $comment_type Comment type, either user submitted comment, trackback, or pingback"}],"desc":"Checks whether a comment passes internal checks to be allowed to add.","returns":"bool Whether the checks passed (true) and the comments should be displayed or set to moderated"},"get_approved_comments":{"params":[{"required":"yes","param":"int $post_id The ID of the post"}],"desc":"Retrieve the approved comments for post $post_id.","returns":"array $comments The approved comments"},"get_comment":{"params":[{"required":"yes","param":"object|string|int $comment Comment to retrieve."},{"required":"no","param":"string $output Optional. OBJECT or ARRAY_A or ARRAY_N constants."}],"desc":"Retrieves comment data given a comment ID or comment object.","returns":"object|array|null Depends on $output value."},"get_comments":{"params":[{"required":"no","param":"mixed $args Optional. Array or string of options to override defaults."}],"desc":"Retrieve a list of comments.","returns":"array List of comments."},"get_comment_statuses":{"params":[],"desc":"Retrieve all of the WordPress supported comment statuses.","returns":"array List of comment statuses."},"get_lastcommentmodified":{"params":[{"required":"yes","param":"string $timezone Which timezone to use in reference to &#039;gmt&#039;, &#039;blog&#039;, or &#039;server&#039; locations."}],"desc":"The date the last comment was modified.","returns":"string Last comment modified date."},"get_comment_count":{"params":[{"required":"no","param":"int $post_id Optional. Comment amount in post if &gt; 0, else total comments blog wide."}],"desc":"The amount of comments in a post or total comments.","returns":"array The amount of spam, approved, awaiting moderation, and total comments."},"add_comment_meta":{"params":[{"required":"yes","param":"int $comment_id Comment ID."},{"required":"yes","param":"string $meta_key Metadata name."},{"required":"yes","param":"mixed $meta_value Metadata value."},{"required":"no","param":"bool $unique Optional, default is false. Whether the same key should not be added."}],"desc":"Add meta data field to a comment.","returns":"bool False for failure. True for success."},"delete_comment_meta":{"params":[{"required":"yes","param":"int $comment_id comment ID"},{"required":"yes","param":"string $meta_key Metadata name."},{"required":"no","param":"mixed $meta_value Optional. Metadata value."}],"desc":"Remove metadata matching criteria from a comment.","returns":"bool False for failure. True for success."},"get_comment_meta":{"params":[{"required":"yes","param":"int $comment_id Comment ID."},{"required":"yes","param":"string $key The meta key to retrieve."},{"required":"yes","param":"bool $single Whether to return a single value."}],"desc":"Retrieve comment meta field for a comment.","returns":"mixed Will be an array if $single is false. Will be value of meta data field if $single is true."},"update_comment_meta":{"params":[{"required":"yes","param":"int $comment_id Comment ID."},{"required":"yes","param":"string $meta_key Metadata key."},{"required":"yes","param":"mixed $meta_value Metadata value."},{"required":"no","param":"mixed $prev_value Optional. Previous value to check before removing."}],"desc":"Update comment meta field based on comment ID.","returns":"bool False on failure, true if success."},"sanitize_comment_cookies":{"params":[],"desc":"Sanitizes the cookies sent to the user already.","returns":""},"wp_allow_comment":{"params":[{"required":"yes","param":"array $commentdata Contains information on the comment"}],"desc":"Validates whether this comment is allowed to be made.","returns":"mixed Signifies the approval status (0|1|&#039;spam&#039;)"},"check_comment_flood_db":{"params":[{"required":"yes","param":"string $ip Comment IP."},{"required":"yes","param":"string $email Comment author email address."},{"required":"yes","param":"string $date MySQL time string."}],"desc":"Check whether comment flooding is occurring.","returns":""},"separate_comments":{"params":[{"required":"yes","param":"array $comments Array of comments"}],"desc":"Separates an array of comments into an array keyed by comment_type.","returns":"array Array of comments keyed by comment_type."},"get_comment_pages_count":{"params":[{"required":"no","param":"array $comments Optional array of comment objects. Defaults to $wp_query-&gt;comments"},{"required":"no","param":"int $per_page Optional comments per page."},{"required":"no","param":"boolean $threaded Optional control over flat or threaded comments."}],"desc":"Calculate the total number of comment pages.","returns":"int Number of comment pages."},"get_page_of_comment":{"params":[{"required":"yes","param":"int $comment_ID Comment ID."},{"required":"no","param":"array $args Optional args."}],"desc":"Calculate what page number a comment will appear on for comment paging.","returns":"int|null Comment page number or null on error."},"wp_blacklist_check":{"params":[{"required":"yes","param":"string $author The author of the comment"},{"required":"yes","param":"string $email The email of the comment"},{"required":"yes","param":"string $url The url used in the comment"},{"required":"yes","param":"string $comment The comment content"},{"required":"yes","param":"string $user_ip The comment author IP address"},{"required":"yes","param":"string $user_agent The author&#039;s browser user agent"}],"desc":"Does comment contain blacklisted characters or words.","returns":"bool True if comment contains blacklisted content, false if comment does not"},"wp_count_comments":{"params":[{"required":"no","param":"int $post_id Optional. Post ID."}],"desc":"Retrieve total comments for blog or single post.","returns":"object Comment stats."},"wp_delete_comment":{"params":[{"required":"yes","param":"int $comment_id Comment ID"},{"required":"yes","param":"bool $force_delete Whether to bypass trash and force deletion. Default is false."}],"desc":"Trashes or deletes a comment.","returns":"bool False if delete comment query failure, true on success."},"wp_trash_comment":{"params":[{"required":"yes","param":"int $comment_id Comment ID."}],"desc":"Moves a comment to the Trash","returns":"mixed False on failure"},"wp_untrash_comment":{"params":[{"required":"yes","param":"int $comment_id Comment ID."}],"desc":"Removes a comment from the Trash","returns":"mixed False on failure"},"wp_spam_comment":{"params":[{"required":"yes","param":"int $comment_id Comment ID."}],"desc":"Marks a comment as Spam","returns":"mixed False on failure"},"wp_unspam_comment":{"params":[{"required":"yes","param":"int $comment_id Comment ID."}],"desc":"Removes a comment from the Spam","returns":"mixed False on failure"},"wp_get_comment_status":{"params":[{"required":"yes","param":"int $comment_id Comment ID"}],"desc":"The status of a comment by ID.","returns":"string|bool Status might be &#039;trash&#039;, &#039;approved&#039;, &#039;unapproved&#039;, &#039;spam&#039;. False on failure."},"wp_transition_comment_status":{"params":[{"required":"yes","param":"string $new_status New comment status."},{"required":"yes","param":"string $old_status Previous comment status."},{"required":"yes","param":"object $comment Comment data."}],"desc":"Call hooks for when a comment status transition occurs.","returns":""},"wp_get_current_commenter":{"params":[],"desc":"Get current commenter&#039;s name, email, and URL.","returns":"array Comment author, email, url respectively."},"wp_insert_comment":{"params":[{"required":"yes","param":"array $commentdata Contains information on the comment."}],"desc":"Inserts a comment to the database.","returns":"int The new comment&#039;s ID."},"wp_filter_comment":{"params":[{"required":"yes","param":"array $commentdata Contains information on the comment."}],"desc":"Filters and sanitizes comment data.","returns":"array Parsed comment information."},"wp_throttle_comment_flood":{"params":[{"required":"yes","param":"bool $block Whether plugin has already blocked comment."},{"required":"yes","param":"int $time_lastcomment Timestamp for last comment."},{"required":"yes","param":"int $time_newcomment Timestamp for new comment."}],"desc":"Whether comment should be blocked because of comment flood.","returns":"bool Whether comment should be blocked."},"wp_new_comment":{"params":[{"required":"yes","param":"array $commentdata Contains information on the comment."}],"desc":"Adds a new comment to the database.","returns":"int The ID of the comment after adding."},"wp_set_comment_status":{"params":[{"required":"yes","param":"int $comment_id Comment ID."},{"required":"yes","param":"string $comment_status New comment status, either &#039;hold&#039;, &#039;approve&#039;, &#039;spam&#039;, or &#039;delete&#039;."},{"required":"yes","param":"bool $wp_error Whether to return a WP_Error object if there is a failure. Default is false."}],"desc":"Sets the status of a comment.","returns":"bool False on failure or deletion and true on success."},"wp_update_comment":{"params":[{"required":"yes","param":"array $commentarr Contains information on the comment."}],"desc":"Updates an existing comment in the database.","returns":"int Comment was updated if value is 1, or was not updated if value is 0."},"wp_defer_comment_counting":{"params":[{"required":"yes","param":"bool $defer "}],"desc":"Whether to defer comment counting.","returns":"unknown "},"wp_update_comment_count":{"params":[{"required":"yes","param":"int $post_id Post ID"},{"required":"yes","param":"bool $do_deferred Whether to process previously deferred post comment counts"}],"desc":"Updates the comment count for post(s).","returns":"bool True on success, false on failure"},"wp_update_comment_count_now":{"params":[{"required":"yes","param":"int $post_id Post ID"}],"desc":"Updates the comment count for the post.","returns":"bool False on &#039;0&#039; $post_id or if post with ID does not exist. True on success."},"discover_pingback_server_uri":{"params":[{"required":"yes","param":"string $url URL to ping."},{"required":"yes","param":"int $deprecated Not Used."}],"desc":"Finds a pingback server URI based on the given URL.","returns":"bool|string False on failure, string containing URI on success."},"do_all_pings":{"params":[],"desc":"Perform all pingbacks, enclosures, trackbacks, and send to pingback services.","returns":""},"do_trackbacks":{"params":[{"required":"yes","param":"int $post_id Post ID to do trackbacks on."}],"desc":"Perform trackbacks.","returns":""},"generic_ping":{"params":[{"required":"yes","param":"int $post_id Post ID. Not actually used."}],"desc":"Sends pings to all of the ping site services.","returns":"int Same as Post ID from parameter"},"pingback":{"params":[{"required":"yes","param":"string $content Post content to check for links."},{"required":"yes","param":"int $post_ID Post ID."}],"desc":"Pings back the links found in a post.","returns":""},"privacy_ping_filter":{"params":[{"required":"yes","param":"mixed $sites Will return if blog is public, will not return if not public."}],"desc":"Check whether blog is public before returning sites.","returns":"mixed Empty string if blog is not public, returns $sites, if site is public."},"trackback":{"params":[{"required":"yes","param":"string $trackback_url URL to send trackbacks."},{"required":"yes","param":"string $title Title of post."},{"required":"yes","param":"string $excerpt Excerpt of post."},{"required":"yes","param":"int $ID Post ID."}],"desc":"Send a Trackback.","returns":"mixed Database query from update."},"weblog_ping":{"params":[{"required":"yes","param":"string $server Host of blog to connect to."},{"required":"yes","param":"string $path Path to send the ping."}],"desc":"Send a pingback.","returns":""},"clean_comment_cache":{"params":[{"required":"yes","param":"int|array $ids Comment ID or array of comment IDs to remove from cache"}],"desc":"Removes comment ID from the comment cache.","returns":""},"update_comment_cache":{"params":[{"required":"yes","param":"array $comments Array of comment row objects"}],"desc":"Updates the comment cache of given comments.","returns":""},"_close_comments_for_old_posts":{"params":[{"required":"yes","param":"object $posts Post data object."},{"required":"yes","param":"object $query Query object."}],"desc":"Close comments on old posts on the fly, without any extra DB queries. Hooked to the_posts.","returns":"object "},"_close_comments_for_old_post":{"params":[{"required":"yes","param":"bool $open Comments open or closed"},{"required":"yes","param":"int $post_id Post ID"}],"desc":"Close comments on an old post. Hooked to comments_open and pings_open.","returns":"bool $open"},"get_query_var":{"params":[{"required":"yes","param":"string $var The variable key to retrieve."}],"desc":"Retrieve variable in the WP_Query class.","returns":"mixed "},"get_queried_object":{"params":[],"desc":"Retrieve the currently-queried object. Wrapper for $wp_query-&gt;get_queried_object()","returns":"object "},"get_queried_object_id":{"params":[],"desc":"Retrieve ID of the current queried object. Wrapper for $wp_query-&gt;get_queried_object_id()","returns":"int "},"set_query_var":{"params":[{"required":"yes","param":"string $var Query variable key."},{"required":"yes","param":"mixed $value "}],"desc":"Set query variable.","returns":"null "},"query_posts":{"params":[{"required":"yes","param":"string $query "}],"desc":"Set up The Loop with query parameters.","returns":"array List of posts"},"wp_reset_query":{"params":[],"desc":"Destroy the previous query and set up a new query.","returns":""},"wp_reset_postdata":{"params":[],"desc":"After looping through a separate query, this function restores the $post global to the current post in the main query","returns":""},"is_archive":{"params":[],"desc":"Is the query for an archive page?","returns":"bool "},"is_post_type_archive":{"params":[{"required":"no","param":"mixed $post_types Optional. Post type or array of posts types to check against."}],"desc":"Is the query for a post type archive page?","returns":"bool "},"is_attachment":{"params":[],"desc":"Is the query for an attachment page?","returns":"bool "},"is_author":{"params":[{"required":"no","param":"mixed $author Optional. User ID, nickname, nicename, or array of User IDs, nicknames, and nicenames"}],"desc":"Is the query for an author archive page?","returns":"bool "},"is_category":{"params":[{"required":"no","param":"mixed $category Optional. Category ID, name, slug, or array of Category IDs, names, and slugs."}],"desc":"Is the query for a category archive page?","returns":"bool "},"is_tag":{"params":[{"required":"no","param":"mixed $slug Optional. Tag slug or array of slugs."}],"desc":"Is the query for a tag archive page?","returns":"bool "},"is_tax":{"params":[{"required":"no","param":"mixed $taxonomy Optional. Taxonomy slug or slugs."},{"required":"no","param":"mixed $term Optional. Term ID, name, slug or array of Term IDs, names, and slugs."}],"desc":"Is the query for a taxonomy archive page?","returns":"bool "},"is_comments_popup":{"params":[],"desc":"Whether the current URL is within the comments popup window.","returns":"bool "},"is_date":{"params":[],"desc":"Is the query for a date archive?","returns":"bool "},"is_day":{"params":[],"desc":"Is the query for a day archive?","returns":"bool "},"is_feed":{"params":[{"required":"no","param":"string|array $feeds Optional feed types to check."}],"desc":"Is the query for a feed?","returns":"bool "},"is_comment_feed":{"params":[],"desc":"Is the query for a comments feed?","returns":"bool "},"is_front_page":{"params":[],"desc":"Is the query for the front page of the site?","returns":"bool True, if front of site."},"is_home":{"params":[],"desc":"Is the query for the blog homepage?","returns":"bool True if blog view homepage."},"is_month":{"params":[],"desc":"Is the query for a month archive?","returns":"bool "},"is_page":{"params":[{"required":"yes","param":"mixed $page Page ID, title, slug, or array of such."}],"desc":"Is the query for a single page?","returns":"bool "},"is_paged":{"params":[],"desc":"Is the query for paged result and not for the first page?","returns":"bool "},"is_preview":{"params":[],"desc":"Is the query for a post or page preview?","returns":"bool "},"is_robots":{"params":[],"desc":"Is the query for the robots file?","returns":"bool "},"is_search":{"params":[],"desc":"Is the query for a search?","returns":"bool "},"is_single":{"params":[{"required":"yes","param":"mixed $post Post ID, title, slug, or array of such."}],"desc":"Is the query for a single post?","returns":"bool "},"is_singular":{"params":[{"required":"no","param":"mixed $post_types Optional. Post Type or array of Post Types"}],"desc":"Is the query for a single post of any post type (post, attachment, page, ... )?","returns":"bool "},"is_time":{"params":[],"desc":"Is the query for a specific time?","returns":"bool "},"is_trackback":{"params":[],"desc":"Is the query for a trackback endpoint call?","returns":"bool "},"is_year":{"params":[],"desc":"Is the query for a specific year?","returns":"bool "},"is_404":{"params":[],"desc":"Is the query a 404 (returns no results)?","returns":"bool "},"is_main_query":{"params":[],"desc":"Is the query the main query?","returns":"bool "},"have_posts":{"params":[],"desc":"Whether current WordPress query has results to loop over.","returns":"bool "},"in_the_loop":{"params":[],"desc":"Whether the caller is in the Loop.","returns":"bool True if caller is within loop, false if loop hasn&#039;t started or ended."},"rewind_posts":{"params":[],"desc":"Rewind the loop posts.","returns":"null "},"the_post":{"params":[],"desc":"Iterate the post index in the loop.","returns":""},"have_comments":{"params":[],"desc":"Whether there are comments to loop over.","returns":"bool "},"the_comment":{"params":[],"desc":"Iterate comment index in the comment loop.","returns":"object "},"wp_old_slug_redirect":{"params":[],"desc":"Redirect old slugs to the correct permalink.","returns":"null If no link is found, null is returned."},"setup_postdata":{"params":[{"required":"yes","param":"object $post Post data."}],"desc":"Set up global post data.","returns":"bool True when finished."},"is_child_theme":{"params":[],"desc":"Whether a child theme is in use.","returns":"bool true if a child theme is in use, false otherwise."},"get_stylesheet":{"params":[],"desc":"Retrieve name of the current stylesheet.","returns":"string Stylesheet name."},"get_stylesheet_directory":{"params":[],"desc":"Retrieve stylesheet directory path for current theme.","returns":"string Path to current theme directory."},"get_stylesheet_directory_uri":{"params":[],"desc":"Retrieve stylesheet directory URI.","returns":"string "},"get_stylesheet_uri":{"params":[],"desc":"Retrieve URI of current theme stylesheet.","returns":"string "},"get_locale_stylesheet_uri":{"params":[],"desc":"Retrieve localized stylesheet URI.","returns":"string "},"get_template":{"params":[],"desc":"Retrieve name of the current theme.","returns":"string Template name."},"get_template_directory":{"params":[],"desc":"Retrieve current theme directory.","returns":"string Template directory path."},"get_template_directory_uri":{"params":[],"desc":"Retrieve theme directory URI.","returns":"string Template directory URI."},"get_theme_data":{"params":[{"required":"yes","param":"string $theme_file Theme file path."}],"desc":"Retrieve theme data from parsed theme file.","returns":"array Theme data."},"get_themes":{"params":[],"desc":"Retrieve list of themes with theme data in theme directory.","returns":"array Theme list with theme data."},"get_theme_roots":{"params":[],"desc":"Retrieve theme roots.","returns":"array|string An array of theme roots keyed by template/stylesheet or a single theme root if all themes have the same root."},"get_theme":{"params":[{"required":"yes","param":"string $theme Theme name."}],"desc":"Retrieve theme data.","returns":"array|null Null, if theme name does not exist. Theme data, if exists."},"get_current_theme":{"params":[],"desc":"Retrieve current theme display name.","returns":"string "},"register_theme_directory":{"params":[{"required":"yes","param":"string $directory Either the full filesystem path to a theme folder or a folder within WP_CONTENT_DIR"}],"desc":"Register a directory that contains themes.","returns":"bool "},"search_theme_directories":{"params":[],"desc":"Search all registered theme directories for complete and valid themes.","returns":"array Valid themes found"},"get_theme_root":{"params":[{"required":"yes","param":"string $stylesheet_or_template The stylesheet or template name of the theme"}],"desc":"Retrieve path to themes directory.","returns":"string Theme path."},"get_theme_root_uri":{"params":[{"required":"yes","param":"string $stylesheet_or_template The stylesheet or template name of the theme"}],"desc":"Retrieve URI for themes directory.","returns":"string Themes URI."},"get_raw_theme_root":{"params":[{"required":"yes","param":"string $stylesheet_or_template The stylesheet or template name of the theme"}],"desc":"Get the raw theme root relative to the content directory with no filters applied.","returns":"string Theme root"},"get_query_template":{"params":[{"required":"yes","param":"string $type Filename without extension."},{"required":"no","param":"array $templates An optional list of template candidates"}],"desc":"Retrieve path to a template","returns":"string Full path to file."},"get_index_template":{"params":[],"desc":"Retrieve path of index template in current or parent template.","returns":"string "},"get_404_template":{"params":[],"desc":"Retrieve path of 404 template in current or parent template.","returns":"string "},"get_archive_template":{"params":[],"desc":"Retrieve path of archive template in current or parent template.","returns":"string "},"get_author_template":{"params":[],"desc":"Retrieve path of author template in current or parent template.","returns":"string "},"get_category_template":{"params":[],"desc":"Retrieve path of category template in current or parent template.","returns":"string "},"get_tag_template":{"params":[],"desc":"Retrieve path of tag template in current or parent template.","returns":"string "},"get_taxonomy_template":{"params":[],"desc":"Retrieve path of taxonomy template in current or parent template.","returns":"string "},"get_date_template":{"params":[],"desc":"Retrieve path of date template in current or parent template.","returns":"string "},"get_home_template":{"params":[],"desc":"Retrieve path of home template in current or parent template.","returns":"string "},"get_front_page_template":{"params":[],"desc":"Retrieve path of front-page template in current or parent template.","returns":"string "},"get_page_template":{"params":[],"desc":"Retrieve path of page template in current or parent template.","returns":"string "},"get_paged_template":{"params":[],"desc":"Retrieve path of paged template in current or parent template.","returns":"string "},"get_search_template":{"params":[],"desc":"Retrieve path of search template in current or parent template.","returns":"string "},"get_single_template":{"params":[],"desc":"Retrieve path of single template in current or parent template.","returns":"string "},"get_attachment_template":{"params":[],"desc":"Retrieve path of attachment template in current or parent template.","returns":"string "},"get_comments_popup_template":{"params":[],"desc":"Retrieve path of comment popup template in current or parent template.","returns":"string "},"locate_template":{"params":[{"required":"yes","param":"string|array $template_names Template file(s) to search for, in order."},{"required":"yes","param":"bool $load If true the template file will be loaded if it is found."},{"required":"yes","param":"bool $require_once Whether to require_once or require. Default true. Has no effect if $load is false."}],"desc":"Retrieve the name of the highest priority template file that exists.","returns":"string The template filename if one is located."},"load_template":{"params":[{"required":"yes","param":"string $_template_file Path to template file."},{"required":"yes","param":"bool $require_once Whether to require_once or require. Default true."}],"desc":"Require the template file with WordPress environment.","returns":""},"locale_stylesheet":{"params":[],"desc":"Display localized stylesheet link element.","returns":""},"preview_theme":{"params":[],"desc":"Start preview theme output buffer.","returns":""},"_preview_theme_template_filter":{"params":[],"desc":"Private function to modify the current template when previewing a theme","returns":"string "},"_preview_theme_stylesheet_filter":{"params":[],"desc":"Private function to modify the current stylesheet when previewing a theme","returns":"string "},"preview_theme_ob_filter":{"params":[{"required":"yes","param":"string $content "}],"desc":"Callback function for ob_start() to capture all links in the theme.","returns":"string "},"preview_theme_ob_filter_callback":{"params":[{"required":"yes","param":"array $matches "}],"desc":"Manipulates preview theme links in order to control and maintain location.","returns":"string "},"switch_theme":{"params":[{"required":"yes","param":"string $template Template name"},{"required":"yes","param":"string $stylesheet Stylesheet name."}],"desc":"Switches current theme to new template and stylesheet names.","returns":""},"validate_current_theme":{"params":[],"desc":"Checks that current theme files &#039;index.php&#039; and &#039;style.css&#039; exists.","returns":"bool "},"get_theme_mods":{"params":[],"desc":"Retrieve all theme modifications.","returns":"array Theme modifications."},"get_theme_mod":{"params":[{"required":"yes","param":"string $name Theme modification name."},{"required":"yes","param":"bool|string $default "}],"desc":"Retrieve theme modification value for the current theme.","returns":"string "},"set_theme_mod":{"params":[{"required":"yes","param":"string $name Theme modification name."},{"required":"yes","param":"string $value theme modification value."}],"desc":"Update theme modification value for the current theme.","returns":""},"remove_theme_mod":{"params":[{"required":"yes","param":"string $name Theme modification name."}],"desc":"Remove theme modification name from current theme list.","returns":"null "},"remove_theme_mods":{"params":[],"desc":"Remove theme modifications option for current theme.","returns":""},"get_header_textcolor":{"params":[],"desc":"Retrieve text color for custom header.","returns":"string "},"header_textcolor":{"params":[],"desc":"Display text color for custom header.","returns":""},"get_header_image":{"params":[],"desc":"Retrieve header image for custom header.","returns":"string "},"get_random_header_image":{"params":[],"desc":"Get random header image from registered images in theme.","returns":"string Path to header image"},"is_random_header_image":{"params":[{"required":"yes","param":"string $type The random pool to use. any|default|uploaded"}],"desc":"Check if random header image is in use.","returns":"boolean "},"header_image":{"params":[],"desc":"Display header image path.","returns":""},"get_uploaded_header_images":{"params":[],"desc":"Get the header images uploaded for the current theme.","returns":"array "},"add_custom_image_header":{"params":[{"required":"yes","param":"callback $header_callback Call on &#039;wp_head&#039; action."},{"required":"yes","param":"callback $admin_header_callback Call on custom header administration screen."},{"required":"no","param":"callback $admin_image_div_callback Output a custom header image div on the custom header administration screen. Optional."}],"desc":"Add callbacks for image header display.","returns":""},"remove_custom_image_header":{"params":[],"desc":"Remove image header support.","returns":"bool Whether support was removed."},"register_default_headers":{"params":[{"required":"yes","param":"array $headers Array of headers keyed by a string id. The ids point to arrays containing &#039;url&#039;, &#039;thumbnail_url&#039;, and &#039;description&#039; keys."}],"desc":"Register a selection of default headers to be displayed by the custom header admin UI.","returns":""},"unregister_default_headers":{"params":[{"required":"yes","param":"string|array $header The header string id (key of array) to remove, or an array thereof."}],"desc":"Unregister default headers.","returns":"True on success, false on failure."},"get_background_image":{"params":[],"desc":"Retrieve background image for custom background.","returns":"string "},"background_image":{"params":[],"desc":"Display background image path.","returns":""},"get_background_color":{"params":[],"desc":"Retrieve value for custom background color.","returns":"string "},"background_color":{"params":[],"desc":"Display background color value.","returns":""},"add_custom_background":{"params":[{"required":"yes","param":"callback $header_callback Call on &#039;wp_head&#039; action."},{"required":"yes","param":"callback $admin_header_callback Call on custom background administration screen."},{"required":"no","param":"callback $admin_image_div_callback Output a custom background image div on the custom background administration screen. Optional."}],"desc":"Add callbacks for background image display.","returns":""},"remove_custom_background":{"params":[],"desc":"Remove custom background support.","returns":"bool Whether support was removed."},"_custom_background_cb":{"params":[],"desc":"Default custom background callback.","returns":""},"add_editor_style":{"params":[{"required":"no","param":"mixed $stylesheet Optional. Stylesheet name or array thereof, relative to theme root. Defaults to &#039;editor-style.css&#039;"}],"desc":"Add callback for custom TinyMCE editor stylesheets.","returns":""},"remove_editor_styles":{"params":[],"desc":"Removes all visual editor stylesheets.","returns":"bool True on success, false if there were no stylesheets to remove."},"add_theme_support":{"params":[{"required":"yes","param":"string $feature the feature being added"}],"desc":"Allows a theme to register its support of a certain feature","returns":""},"get_theme_support":{"params":[{"required":"yes","param":"string $feature the feature to check"}],"desc":"Gets the theme support arguments passed when registering that support","returns":"array The array of extra arguments"},"remove_theme_support":{"params":[{"required":"yes","param":"string $feature the feature being added"}],"desc":"Allows a theme to de-register its support of a certain feature","returns":"bool Whether feature was removed."},"_remove_theme_support":{"params":[],"desc":"Do not use. Removes theme support internally, ignorant of the blacklist.","returns":""},"current_theme_supports":{"params":[{"required":"yes","param":"string $feature the feature being checked"}],"desc":"Checks a theme&#039;s support for a given feature","returns":"boolean "},"require_if_theme_supports":{"params":[{"required":"yes","param":"string $feature the feature being checked"},{"required":"yes","param":"string $include the file containing the functions that implement the feature"}],"desc":"Checks a theme&#039;s support for a given feature before loading the functions which implement it.","returns":""},"_delete_attachment_theme_mod":{"params":[{"required":"yes","param":"int $id the attachment id"}],"desc":"Checks an attachment being deleted to see if it&#039;s a header or background image.","returns":""},"check_theme_switched":{"params":[],"desc":"Checks if a theme has been changed and runs &#039;after_switch_theme&#039; hook on the next WP load","returns":""},"set_current_user":{"params":[{"required":"yes","param":"int|null $id User ID."},{"required":"no","param":"string $name Optional. The user&#039;s username"}],"desc":"Changes the current user by ID or name.","returns":"object returns wp_set_current_user()"},"get_userdatabylogin":{"params":[{"required":"yes","param":"string $user_login User&#039;s username"}],"desc":"Retrieve user info by login name.","returns":"bool|object False on failure, User DB row object"},"get_user_by_email":{"params":[{"required":"yes","param":"string $email User&#039;s email address"}],"desc":"Retrieve user info by email.","returns":"bool|object False on failure, User DB row object"},"wp_setcookie":{"params":[{"required":"yes","param":"string $username The user&#039;s username"},{"required":"no","param":"string $password Optional. The user&#039;s password"},{"required":"no","param":"bool $already_md5 Optional. Whether the password has already been through MD5"},{"required":"no","param":"string $home Optional. Will be used instead of COOKIEPATH if set"},{"required":"no","param":"string $siteurl Optional. Will be used instead of SITECOOKIEPATH if set"},{"required":"no","param":"bool $remember Optional. Remember that the user is logged in"}],"desc":"Sets a cookie for a user who just logged in. This function is deprecated.","returns":""},"wp_clearcookie":{"params":[],"desc":"Clears the authentication cookie, logging the user out. This function is deprecated.","returns":""},"wp_get_cookie_login":{"params":[],"desc":"Gets the user cookie login. This function is deprecated.","returns":"bool Always returns false"},"wp_login":{"params":[{"required":"yes","param":"string $username User&#039;s username"},{"required":"yes","param":"string $password User&#039;s password"},{"required":"yes","param":"bool $deprecated Not used"}],"desc":"Checks a users login information and logs them in if it checks out. This function is deprecated.","returns":"bool False on login failure, true on successful check"},"wp_set_current_user":{"params":[{"required":"yes","param":"int $id User ID"},{"required":"yes","param":"string $name User&#039;s username"}],"desc":"Changes the current user by ID or name.","returns":"WP_User Current user User object"},"wp_get_current_user":{"params":[],"desc":"Retrieve the current user object.","returns":"WP_User Current user WP_User object"},"get_currentuserinfo":{"params":[],"desc":"Populate global variables with information about the currently logged in user.","returns":"bool|null False on XMLRPC Request and invalid auth cookie. Null when current user set"},"get_userdata":{"params":[{"required":"yes","param":"int $user_id User ID"}],"desc":"Retrieve user info by user ID.","returns":"bool|object False on failure, WP_User object on success"},"get_user_by":{"params":[{"required":"yes","param":"string $field The field to retrieve the user with. id | slug | email | login"},{"required":"yes","param":"int|string $value A value for $field. A user ID, slug, email address, or login name."}],"desc":"Retrieve user info by a given field","returns":"bool|object False on failure, WP_User object on success"},"cache_users":{"params":[{"required":"yes","param":"array $user_ids User ID numbers list"}],"desc":"Retrieve info for user lists to prevent multiple queries by get_userdata()","returns":""},"wp_mail":{"params":[{"required":"yes","param":"string|array $to Array or comma-separated list of email addresses to send message."},{"required":"yes","param":"string $subject Email subject"},{"required":"yes","param":"string $message Message contents"},{"required":"no","param":"string|array $headers Optional. Additional headers."},{"required":"no","param":"string|array $attachments Optional. Files to attach."}],"desc":"Send mail, similar to PHP&#039;s mail","returns":"bool Whether the email contents were sent successfully."},"wp_authenticate":{"params":[{"required":"yes","param":"string $username User&#039;s username"},{"required":"yes","param":"string $password User&#039;s password"}],"desc":"Checks a user&#039;s login information and logs them in if it checks out.","returns":"WP_Error|WP_User WP_User object if login successful, otherwise WP_Error object."},"wp_logout":{"params":[],"desc":"Log the current user out.","returns":""},"wp_validate_auth_cookie":{"params":[{"required":"no","param":"string $cookie Optional. If used, will validate contents instead of cookie&#039;s"},{"required":"no","param":"string $scheme Optional. The cookie scheme to use: auth, secure_auth, or logged_in"}],"desc":"Validates authentication cookie.","returns":"bool|int False if invalid cookie, User ID if valid."},"wp_generate_auth_cookie":{"params":[{"required":"yes","param":"int $user_id User ID"},{"required":"yes","param":"int $expiration Cookie expiration in seconds"},{"required":"no","param":"string $scheme Optional. The cookie scheme to use: auth, secure_auth, or logged_in"}],"desc":"Generate authentication cookie contents.","returns":"string Authentication cookie contents"},"wp_parse_auth_cookie":{"params":[{"required":"yes","param":"string $cookie "},{"required":"no","param":"string $scheme Optional. The cookie scheme to use: auth, secure_auth, or logged_in"}],"desc":"Parse a cookie into its components","returns":"array Authentication cookie components"},"wp_set_auth_cookie":{"params":[{"required":"yes","param":"int $user_id User ID"},{"required":"yes","param":"bool $remember Whether to remember the user"}],"desc":"Sets the authentication cookies based User ID.","returns":""},"wp_clear_auth_cookie":{"params":[],"desc":"Removes all of the cookies associated with authentication.","returns":""},"is_user_logged_in":{"params":[],"desc":"Checks if the current visitor is a logged in user.","returns":"bool True if user is logged in, false if not logged in."},"auth_redirect":{"params":[],"desc":"Checks if a user is logged in, if not it redirects them to the login page.","returns":""},"check_admin_referer":{"params":[{"required":"yes","param":"string $action Action nonce"},{"required":"yes","param":"string $query_arg where to look for nonce in $_REQUEST (since 2.5)"}],"desc":"Makes sure that a user was referred from another admin page.","returns":""},"check_ajax_referer":{"params":[{"required":"yes","param":"string $action Action nonce"},{"required":"yes","param":"string $query_arg where to look for nonce in $_REQUEST (since 2.5)"}],"desc":"Verifies the AJAX request to prevent processing requests external of the blog.","returns":""},"wp_redirect":{"params":[{"required":"yes","param":"string $location The path to redirect to"},{"required":"yes","param":"int $status Status code to use"}],"desc":"Redirects to another page.","returns":"bool False if $location is not set"},"wp_sanitize_redirect":{"params":[],"desc":"Sanitizes a URL for use in a redirect.","returns":"string redirect-sanitized URL"},"wp_safe_redirect":{"params":[],"desc":"Performs a safe (local) redirect, using wp_redirect().","returns":"void Does not return anything"},"wp_validate_redirect":{"params":[{"required":"yes","param":"string $location The redirect to validate"},{"required":"yes","param":"string $default The value to return is $location is not allowed"}],"desc":"Validates a URL for use in a redirect.","returns":"string redirect-sanitized URL"},"wp_notify_postauthor":{"params":[{"required":"yes","param":"int $comment_id Comment ID"},{"required":"no","param":"string $comment_type Optional. The comment type either &#039;comment&#039; (default), &#039;trackback&#039;, or &#039;pingback&#039;"}],"desc":"Notify an author of a comment/trackback/pingback to one of their posts.","returns":"bool False if user email does not exist. True on completion."},"wp_notify_moderator":{"params":[{"required":"yes","param":"int $comment_id Comment ID"}],"desc":"Notifies the moderator of the blog about a new comment that is awaiting approval.","returns":"bool Always returns true"},"wp_password_change_notification":{"params":[{"required":"yes","param":"object $user User Object"}],"desc":"Notify the blog admin of a user changing password, normally via email.","returns":""},"wp_new_user_notification":{"params":[{"required":"yes","param":"int $user_id User ID"},{"required":"no","param":"string $plaintext_pass Optional. The user&#039;s plaintext password"}],"desc":"Notify the blog admin of a new user, normally via email.","returns":""},"wp_nonce_tick":{"params":[],"desc":"Get the time-dependent variable for nonce creation.","returns":"int "},"wp_verify_nonce":{"params":[{"required":"yes","param":"string $nonce Nonce that was used in the form to verify"},{"required":"yes","param":"string|int $action Should give context to what is taking place and be the same when nonce was created."}],"desc":"Verify that correct nonce was used with time limit.","returns":"bool Whether the nonce check passed or failed."},"wp_create_nonce":{"params":[{"required":"yes","param":"string|int $action Scalar value to add context to the nonce."}],"desc":"Creates a random, one time use token.","returns":"string The one use form token"},"wp_salt":{"params":[{"required":"yes","param":"string $scheme Authentication scheme"}],"desc":"Get salt to add to hashes to help prevent attacks.","returns":"string Salt value"},"wp_hash":{"params":[{"required":"yes","param":"string $data Plain text to hash"}],"desc":"Get hash of given string.","returns":"string Hash of $data"},"wp_hash_password":{"params":[{"required":"yes","param":"string $password Plain text user password to hash"}],"desc":"Create a hash (encrypt) of a plain text password.","returns":"string The hash string of the password"},"wp_check_password":{"params":[{"required":"yes","param":"string $password Plaintext user&#039;s password"},{"required":"yes","param":"string $hash Hash of the user&#039;s password to check against."}],"desc":"Checks the plaintext password against the encrypted Password.","returns":"bool False, if the $password does not match the hashed password"},"wp_generate_password":{"params":[{"required":"yes","param":"int $length The length of password to generate"},{"required":"yes","param":"bool $special_chars Whether to include standard special characters. Default true."},{"required":"yes","param":"bool $extra_special_chars Whether to include other special characters. Used when generating secret keys and salts. Default false."}],"desc":"Generates a random password drawn from the defined set of characters.","returns":"string The random password"},"wp_rand":{"params":[{"required":"no","param":"int $min Lower limit for the generated number (optional, default is 0)"},{"required":"no","param":"int $max Upper limit for the generated number (optional, default is 4294967295)"}],"desc":"Generates a random number","returns":"int A random number between min and max"},"wp_set_password":{"params":[{"required":"yes","param":"string $password The plaintext new user password"},{"required":"yes","param":"int $user_id User ID"}],"desc":"Updates the user&#039;s password with a new encrypted one.","returns":""},"get_avatar":{"params":[{"required":"yes","param":"int|string|object $id_or_email A user ID, email address, or comment object"},{"required":"yes","param":"int $size Size of the avatar image"},{"required":"yes","param":"string $default URL to a default image to use if no avatar is available"},{"required":"yes","param":"string $alt Alternate text to use in image tag. Defaults to blank"}],"desc":"Retrieve the avatar for a user who provided a user ID or email address.","returns":"string &lt;img&gt; tag for the user&#039;s avatar"},"wp_text_diff":{"params":[{"required":"yes","param":"string $left_string &quot;old&quot; (left) version of string"},{"required":"yes","param":"string $right_string &quot;new&quot; (right) version of string"},{"required":"no","param":"string|array $args Optional. Change &#039;title&#039;, &#039;title_left&#039;, and &#039;title_right&#039; defaults."}],"desc":"Displays a human readable HTML representation of the difference between two strings.","returns":"string Empty string if strings are equivalent or HTML with differences."},"get_comment_author":{"params":[{"required":"no","param":"int $comment_ID The ID of the comment for which to retrieve the author. Optional."}],"desc":"Retrieve the author of the current comment.","returns":"string The comment author"},"comment_author":{"params":[{"required":"no","param":"int $comment_ID The ID of the comment for which to print the author. Optional."}],"desc":"Displays the author of the current comment.","returns":""},"get_comment_author_email":{"params":[{"required":"no","param":"int $comment_ID The ID of the comment for which to get the author&#039;s email. Optional."}],"desc":"Retrieve the email of the author of the current comment.","returns":"string The current comment author&#039;s email"},"comment_author_email":{"params":[{"required":"no","param":"int $comment_ID The ID of the comment for which to print the author&#039;s email. Optional."}],"desc":"Display the email of the author of the current global $comment.","returns":""},"comment_author_email_link":{"params":[{"required":"yes","param":"string $linktext The text to display instead of the comment author&#039;s email address"},{"required":"yes","param":"string $before The text or HTML to display before the email link."},{"required":"yes","param":"string $after The text or HTML to display after the email link."}],"desc":"Display the html email link to the author of the current comment.","returns":""},"get_comment_author_email_link":{"params":[{"required":"yes","param":"string $linktext The text to display instead of the comment author&#039;s email address"},{"required":"yes","param":"string $before The text or HTML to display before the email link."},{"required":"yes","param":"string $after The text or HTML to display after the email link."}],"desc":"Return the html email link to the author of the current comment.","returns":""},"get_comment_author_link":{"params":[{"required":"no","param":"int $comment_ID The ID of the comment for which to get the author&#039;s link. Optional."}],"desc":"Retrieve the html link to the url of the author of the current comment.","returns":"string Comment Author name or HTML link for author&#039;s URL"},"comment_author_link":{"params":[{"required":"no","param":"int $comment_ID The ID of the comment for which to print the author&#039;s link. Optional."}],"desc":"Display the html link to the url of the author of the current comment.","returns":""},"get_comment_author_IP":{"params":[{"required":"no","param":"int $comment_ID The ID of the comment for which to get the author&#039;s IP address. Optional."}],"desc":"Retrieve the IP address of the author of the current comment.","returns":"string The comment author&#039;s IP address."},"comment_author_IP":{"params":[{"required":"no","param":"int $comment_ID The ID of the comment for which to print the author&#039;s IP address. Optional."}],"desc":"Display the IP address of the author of the current comment.","returns":""},"get_comment_author_url":{"params":[{"required":"no","param":"int $comment_ID The ID of the comment for which to get the author&#039;s URL. Optional."}],"desc":"Retrieve the url of the author of the current comment.","returns":"string "},"comment_author_url":{"params":[{"required":"no","param":"int $comment_ID The ID of the comment for which to print the author&#039;s URL. Optional."}],"desc":"Display the url of the author of the current comment.","returns":""},"get_comment_author_url_link":{"params":[{"required":"yes","param":"string $linktext The text to display instead of the comment author&#039;s email address"},{"required":"yes","param":"string $before The text or HTML to display before the email link."},{"required":"yes","param":"string $after The text or HTML to display after the email link."}],"desc":"Retrieves the HTML link of the url of the author of the current comment.","returns":"string The HTML link between the $before and $after parameters"},"comment_author_url_link":{"params":[{"required":"yes","param":"string $linktext The text to display instead of the comment author&#039;s email address"},{"required":"yes","param":"string $before The text or HTML to display before the email link."},{"required":"yes","param":"string $after The text or HTML to display after the email link."}],"desc":"Displays the HTML link of the url of the author of the current comment.","returns":""},"comment_class":{"params":[{"required":"yes","param":"string|array $class One or more classes to add to the class list"},{"required":"no","param":"int $comment_id An optional comment ID"},{"required":"no","param":"int $post_id An optional post ID"},{"required":"yes","param":"bool $echo Whether comment_class should echo or return"}],"desc":"Generates semantic classes for each comment element","returns":""},"get_comment_class":{"params":[{"required":"yes","param":"string|array $class One or more classes to add to the class list"},{"required":"no","param":"int $comment_id An optional comment ID"},{"required":"no","param":"int $post_id An optional post ID"}],"desc":"Returns the classes for the comment div as an array","returns":"array Array of classes"},"get_comment_date":{"params":[{"required":"yes","param":"string $d The format of the date (defaults to user&#039;s config)"},{"required":"no","param":"int $comment_ID The ID of the comment for which to get the date. Optional."}],"desc":"Retrieve the comment date of the current comment.","returns":"string The comment&#039;s date"},"comment_date":{"params":[{"required":"yes","param":"string $d The format of the date (defaults to user&#039;s config)"},{"required":"no","param":"int $comment_ID The ID of the comment for which to print the date. Optional."}],"desc":"Display the comment date of the current comment.","returns":""},"get_comment_excerpt":{"params":[{"required":"no","param":"int $comment_ID The ID of the comment for which to get the excerpt. Optional."}],"desc":"Retrieve the excerpt of the current comment.","returns":"string The maybe truncated comment with 20 words or less"},"comment_excerpt":{"params":[{"required":"no","param":"int $comment_ID The ID of the comment for which to print the excerpt. Optional."}],"desc":"Display the excerpt of the current comment.","returns":""},"get_comment_ID":{"params":[],"desc":"Retrieve the comment id of the current comment.","returns":"int The comment ID"},"comment_ID":{"params":[],"desc":"Displays the comment id of the current comment.","returns":""},"get_comment_link":{"params":[{"required":"yes","param":"object|string|int $comment Comment to retrieve."},{"required":"no","param":"array $args Optional args."}],"desc":"Retrieve the link to a given comment.","returns":"string The permalink to the given comment."},"get_comments_link":{"params":[{"required":"no","param":"int $post_id Optional post id"}],"desc":"Retrieves the link to the current post comments.","returns":"string The link to the comments"},"comments_link":{"params":[{"required":"yes","param":"string $deprecated Not Used"},{"required":"yes","param":"bool $deprecated_2 Not Used"}],"desc":"Displays the link to the current post comments.","returns":""},"get_comments_number":{"params":[{"required":"yes","param":"int $post_id The Post ID"}],"desc":"Retrieve the amount of comments a post has.","returns":"int The number of comments a post has"},"comments_number":{"params":[{"required":"yes","param":"string $zero Text for no comments"},{"required":"yes","param":"string $one Text for one comment"},{"required":"yes","param":"string $more Text for more than one comment"},{"required":"yes","param":"string $deprecated Not used."}],"desc":"Display the language string for the number of comments the current post has.","returns":""},"get_comment_text":{"params":[{"required":"no","param":"int $comment_ID The ID of the comment for which to get the text. Optional."}],"desc":"Retrieve the text of the current comment.","returns":"string The comment content"},"comment_text":{"params":[{"required":"no","param":"int $comment_ID The ID of the comment for which to print the text. Optional."}],"desc":"Displays the text of the current comment.","returns":""},"get_comment_time":{"params":[{"required":"no","param":"string $d Optional. The format of the time (defaults to user&#039;s config)"},{"required":"yes","param":"bool $gmt Whether to use the GMT date"},{"required":"yes","param":"bool $translate Whether to translate the time (for use in feeds)"}],"desc":"Retrieve the comment time of the current comment.","returns":"string The formatted time"},"comment_time":{"params":[{"required":"no","param":"string $d Optional. The format of the time (defaults to user&#039;s config)"}],"desc":"Display the comment time of the current comment.","returns":""},"get_comment_type":{"params":[{"required":"no","param":"int $comment_ID The ID of the comment for which to get the type. Optional."}],"desc":"Retrieve the comment type of the current comment.","returns":"string The comment type"},"comment_type":{"params":[{"required":"yes","param":"string $commenttxt The string to display for comment type"},{"required":"yes","param":"string $trackbacktxt The string to display for trackback type"},{"required":"yes","param":"string $pingbacktxt The string to display for pingback type"}],"desc":"Display the comment type of the current comment.","returns":""},"get_trackback_url":{"params":[],"desc":"Retrieve The current post&#039;s trackback URL.","returns":"string The trackback URL after being filtered"},"trackback_url":{"params":[{"required":"yes","param":"bool $deprecated_echo Remove backwards compat in 2.5"}],"desc":"Displays the current post&#039;s trackback URL.","returns":"void|string Should only be used to echo the trackback URL, use get_trackback_url() for the result instead."},"trackback_rdf":{"params":[{"required":"yes","param":"int $deprecated Not used (Was $timezone = 0)"}],"desc":"Generates and displays the RDF for the trackback information of current post.","returns":""},"comments_open":{"params":[{"required":"no","param":"int $post_id An optional post ID to check instead of the current post."}],"desc":"Whether the current post is open for comments.","returns":"bool True if the comments are open"},"pings_open":{"params":[{"required":"no","param":"int $post_id An optional post ID to check instead of the current post."}],"desc":"Whether the current post is open for pings.","returns":"bool True if pings are accepted"},"wp_comment_form_unfiltered_html_nonce":{"params":[],"desc":"Displays form token for unfiltered comments.","returns":""},"comments_template":{"params":[{"required":"no","param":"string $file Optional, default &#039;/comments.php&#039;. The file to load"},{"required":"no","param":"bool $separate_comments Optional, whether to separate the comments by comment type. Default is false."}],"desc":"Loads the comment template specified in $file.","returns":"null Returns null if no comments appear"},"comments_popup_script":{"params":[{"required":"no","param":"int $width Optional. The width of the popup window"},{"required":"no","param":"int $height Optional. The height of the popup window"},{"required":"no","param":"string $file Optional. Sets the location of the popup window"}],"desc":"Displays the JS popup script to show a comment.","returns":""},"comments_popup_link":{"params":[{"required":"yes","param":"string $zero The string to display when no comments"},{"required":"yes","param":"string $one The string to display when only one comment is available"},{"required":"yes","param":"string $more The string to display when there are more than one comment"},{"required":"yes","param":"string $css_class The CSS class to use for comments"},{"required":"yes","param":"string $none The string to display when comments have been turned off"}],"desc":"Displays the link to the comments popup window for the current post ID.","returns":"null Returns null on single posts and pages."},"get_comment_reply_link":{"params":[{"required":"no","param":"array $args Optional. Override default options."},{"required":"no","param":"int $comment Optional. Comment being replied to."},{"required":"no","param":"int $post Optional. Post that the comment is going to be displayed on."}],"desc":"Retrieve HTML content for reply to comment link.","returns":"string|bool|null Link to show comment form, if successful. False, if comments are closed."},"comment_reply_link":{"params":[{"required":"no","param":"array $args Optional. Override default options."},{"required":"no","param":"int $comment Optional. Comment being replied to."},{"required":"no","param":"int $post Optional. Post that the comment is going to be displayed on."}],"desc":"Displays the HTML content for reply to comment link.","returns":"string|bool|null Link to show comment form, if successful. False, if comments are closed."},"get_post_reply_link":{"params":[{"required":"no","param":"array $args Optional. Override default options."},{"required":"no","param":"int|object $post Optional. Post that the comment is going to be displayed on. Defaults to current post."}],"desc":"Retrieve HTML content for reply to post link.","returns":"string|bool|null Link to show comment form, if successful. False, if comments are closed."},"post_reply_link":{"params":[{"required":"no","param":"array $args Optional. Override default options."},{"required":"no","param":"int|object $post Optional. Post that the comment is going to be displayed on."}],"desc":"Displays the HTML content for reply to post link.","returns":"string|bool|null Link to show comment form, if successful. False, if comments are closed."},"get_cancel_comment_reply_link":{"params":[{"required":"no","param":"string $text Optional. Text to display for cancel reply link."}],"desc":"Retrieve HTML content for cancel comment reply link.","returns":""},"cancel_comment_reply_link":{"params":[{"required":"no","param":"string $text Optional. Text to display for cancel reply link."}],"desc":"Display HTML content for cancel comment reply link.","returns":""},"get_comment_id_fields":{"params":[],"desc":"Retrieve hidden input HTML for replying to comments.","returns":"string Hidden input HTML for replying to comments"},"comment_id_fields":{"params":[],"desc":"Output hidden input HTML for replying to comments.","returns":""},"comment_form_title":{"params":[{"required":"no","param":"string $noreplytext Optional. Text to display when not replying to a comment."},{"required":"no","param":"string $replytext Optional. Text to display when replying to a comment. Accepts &quot;%s&quot; for the author of the comment being replied to."},{"required":"no","param":"string $linktoparent Optional. Boolean to control making the author&#039;s name a link to their comment."}],"desc":"Display text based on comment reply status. Only affects users with Javascript disabled.","returns":""},"wp_list_comments":{"params":[{"required":"yes","param":"string|array $args Formatting options"},{"required":"no","param":"array $comments Optional array of comment objects. Defaults to $wp_query-&gt;comments"}],"desc":"List comments","returns":""},"comment_form":{"params":[{"required":"yes","param":"array $args Options for strings, fields etc in the form"},{"required":"yes","param":"mixed $post_id Post ID to generate the form for, uses the current post if null"}],"desc":"Outputs a complete commenting form for use within a template.","returns":"void "},"is_wp_error":{"params":[{"required":"yes","param":"mixed $thing Check if unknown variable is WordPress Error object."}],"desc":"Check whether variable is a WordPress Error.","returns":"bool True, if WP_Error. False, if not WP_Error."},"image_constrain_size_for_editor":{"params":[{"required":"yes","param":"int $width Width of the image"},{"required":"yes","param":"int $height Height of the image"},{"required":"yes","param":"string|array $size Size of what the result image should be."}],"desc":"Scale down the default size of an image.","returns":"array Width and height of what the result image should resize to."},"image_hwstring":{"params":[{"required":"no","param":"int|string $width Optional. Width attribute value."},{"required":"no","param":"int|string $height Optional. Height attribute value."}],"desc":"Retrieve width and height attributes using given width and height values.","returns":"string HTML attributes for width and, or height."},"image_downsize":{"params":[{"required":"yes","param":"int $id Attachment ID for image."},{"required":"no","param":"array|string $size Optional, default is &#039;medium&#039;. Size of image, either array or string."}],"desc":"Scale an image to fit a particular size (such as &#039;thumb&#039; or &#039;medium&#039;).","returns":"bool|array False on failure, array on success."},"add_image_size":{"params":[],"desc":"Registers a new image size","returns":""},"set_post_thumbnail_size":{"params":[],"desc":"Registers an image size for the post thumbnail","returns":""},"get_image_tag":{"params":[{"required":"yes","param":"int $id Attachment ID."},{"required":"yes","param":"string $alt Image Description for the alt attribute."},{"required":"yes","param":"string $title Image Description for the title attribute."},{"required":"yes","param":"string $align Part of the class name for aligning the image."},{"required":"no","param":"string $size Optional. Default is &#039;medium&#039;."}],"desc":"An &lt;img src /&gt; tag for an image attachment, scaling it down if requested.","returns":"string HTML IMG element for given image attachment"},"wp_load_image":{"params":[{"required":"yes","param":"string $file Filename of the image to load."}],"desc":"Load an image from a string, if PHP supports it.","returns":"resource The resulting image resource on success, Error string on failure."},"wp_constrain_dimensions":{"params":[{"required":"yes","param":"int $current_width Current width of the image."},{"required":"yes","param":"int $current_height Current height of the image."},{"required":"no","param":"int $max_width Optional. Maximum wanted width."},{"required":"no","param":"int $max_height Optional. Maximum wanted height."}],"desc":"Calculates the new dimensions for a downsampled image.","returns":"array First item is the width, the second item is the height."},"image_resize_dimensions":{"params":[{"required":"yes","param":"int $orig_w Original width."},{"required":"yes","param":"int $orig_h Original height."},{"required":"yes","param":"int $dest_w New width."},{"required":"yes","param":"int $dest_h New height."},{"required":"no","param":"bool $crop Optional, default is false. Whether to crop image or resize."}],"desc":"Retrieve calculated resized dimensions for use in imagecopyresampled().","returns":"bool|array False on failure. Returned array matches parameters for imagecopyresampled() PHP function."},"image_resize":{"params":[{"required":"yes","param":"string $file Image file path."},{"required":"yes","param":"int $max_w Maximum width to resize to."},{"required":"yes","param":"int $max_h Maximum height to resize to."},{"required":"no","param":"bool $crop Optional. Whether to crop image or resize."},{"required":"no","param":"string $suffix Optional. File suffix."},{"required":"no","param":"string $dest_path Optional. New image file path."},{"required":"no","param":"int $jpeg_quality Optional, default is 90. Image quality percentage."}],"desc":"Scale down an image to fit a particular size and save a new copy of the image.","returns":"mixed WP_Error on failure. String with new destination path."},"image_make_intermediate_size":{"params":[{"required":"yes","param":"string $file File path."},{"required":"yes","param":"int $width Image width."},{"required":"yes","param":"int $height Image height."},{"required":"no","param":"bool $crop Optional, default is false. Whether to crop image to specified height and width or resize."}],"desc":"Resize an image to make a thumbnail or intermediate size.","returns":"bool|array False, if no image was created. Metadata array on success."},"image_get_intermediate_size":{"params":[{"required":"yes","param":"int $post_id Attachment ID for image."},{"required":"no","param":"array|string $size Optional, default is &#039;thumbnail&#039;. Size of image, either array or string."}],"desc":"Retrieve the image&#039;s intermediate size (resized) path, width, and height.","returns":"bool|array False on failure or array of file path, width, and height on success."},"get_intermediate_image_sizes":{"params":[],"desc":"Get the available image sizes","returns":"array Returns a filtered array of image size strings"},"wp_get_attachment_image_src":{"params":[{"required":"yes","param":"int $attachment_id Image attachment ID."},{"required":"no","param":"string $size Optional, default is &#039;thumbnail&#039;."},{"required":"no","param":"bool $icon Optional, default is false. Whether it is an icon."}],"desc":"Retrieve an image to represent an attachment.","returns":"bool|array Returns an array (url, width, height), or false, if no image is available."},"wp_get_attachment_image":{"params":[{"required":"yes","param":"int $attachment_id Image attachment ID."},{"required":"no","param":"string $size Optional, default is &#039;thumbnail&#039;."},{"required":"no","param":"bool $icon Optional, default is false. Whether it is an icon."}],"desc":"Get an HTML img element representing an image attachment","returns":"string HTML img element or empty string on failure."},"_wp_post_thumbnail_class_filter":{"params":[{"required":"yes","param":"array $attr Attributes including src, class, alt, title"}],"desc":"Adds a &#039;wp-post-image&#039; class to post thumbnails Uses the begin_fetch_post_thumbnail_html and end_fetch_post_thumbnail_html action hooks to dynamically add/remove itself so as to only filter post thumbnails","returns":"array "},"_wp_post_thumbnail_class_filter_add":{"params":[],"desc":"Adds _wp_post_thumbnail_class_filter to the wp_get_attachment_image_attributes filter","returns":""},"_wp_post_thumbnail_class_filter_remove":{"params":[],"desc":"Removes _wp_post_thumbnail_class_filter from the wp_get_attachment_image_attributes filter","returns":""},"img_caption_shortcode":{"params":[{"required":"yes","param":"array $attr Attributes attributed to the shortcode."},{"required":"no","param":"string $content Optional. Shortcode content."}],"desc":"The Caption shortcode.","returns":"string "},"gallery_shortcode":{"params":[{"required":"yes","param":"array $attr Attributes of the shortcode."}],"desc":"The Gallery shortcode.","returns":"string HTML content to display gallery."},"previous_image_link":{"params":[{"required":"no","param":"string $size Optional, default is &#039;thumbnail&#039;. Size of image, either array or string. 0 or &#039;none&#039; will default to post_title or $text;"},{"required":"no","param":"string $text Optional, default is false. If included, link will reflect $text variable."}],"desc":"Display previous image link that has the same post parent.","returns":"string HTML content."},"next_image_link":{"params":[{"required":"no","param":"string $size Optional, default is &#039;thumbnail&#039;. Size of image, either array or string. 0 or &#039;none&#039; will default to post_title or $text;"},{"required":"no","param":"string $text Optional, default is false. If included, link will reflect $text variable."}],"desc":"Display next image link that has the same post parent.","returns":"string HTML content."},"adjacent_image_link":{"params":[{"required":"no","param":"bool $prev Optional. Default is true to display previous link, false for next."}],"desc":"Display next or previous image link that has the same post parent.","returns":""},"get_attachment_taxonomies":{"params":[{"required":"yes","param":"int|array|object $attachment Attachment ID, Attachment data array, or Attachment data object."}],"desc":"Retrieve taxonomies attached to the attachment.","returns":"array Empty array on failure. List of taxonomies on success."},"gd_edit_image_support":{"params":[{"required":"yes","param":"string $mime_type "}],"desc":"Check if the installed version of GD supports particular image type","returns":"bool "},"wp_imagecreatetruecolor":{"params":[{"required":"yes","param":"int $width Image width"},{"required":"yes","param":"int $height Image height"}],"desc":"Create new GD image resource with transparency support","returns":"image resource"},"wp_embed_register_handler":{"params":[],"desc":"Register an embed handler. This function should probably only be used for sites that do not support oEmbed.","returns":""},"wp_embed_unregister_handler":{"params":[],"desc":"Unregister a previously registered embed handler.","returns":""},"wp_embed_defaults":{"params":[],"desc":"Create default array of embed parameters.","returns":"array Default embed parameters."},"wp_expand_dimensions":{"params":[{"required":"yes","param":"int $example_width The width of an example embed."},{"required":"yes","param":"int $example_height The height of an example embed."},{"required":"yes","param":"int $max_width The maximum allowed width."},{"required":"yes","param":"int $max_height The maximum allowed height."}],"desc":"Based on a supplied width/height example, return the biggest possible dimensions based on the max width/height.","returns":"array The maximum possible width and height based on the example ratio."},"wp_oembed_get":{"params":[{"required":"yes","param":"string $url The URL that should be embedded."},{"required":"yes","param":"array $args Additional arguments and parameters."}],"desc":"Attempts to fetch the embed HTML for a provided URL using oEmbed.","returns":"string The original URL on failure or the embed HTML on success."},"wp_oembed_add_provider":{"params":[{"required":"yes","param":"string $format The format of URL that this provider can handle. You can use asterisks as wildcards."},{"required":"yes","param":"string $provider The URL to the oEmbed provider."},{"required":"yes","param":"boolean $regex Whether the $format parameter is in a regex format."}],"desc":"Adds a URL format and oEmbed provider URL pair.","returns":""},"wp_maybe_load_embeds":{"params":[],"desc":"Determines if default embed handlers should be loaded.","returns":""},"wp_embed_handler_googlevideo":{"params":[{"required":"yes","param":"array $matches The regex matches from the provided regex when calling {@link wp_embed_register_handler()}."},{"required":"yes","param":"array $attr Embed attributes."},{"required":"yes","param":"string $url The original URL that was matched by the regex."},{"required":"yes","param":"array $rawattr The original unmodified attributes."}],"desc":"The Google Video embed handler callback. Google Video does not support oEmbed.","returns":"string The embed HTML."},"wp_cache_add":{"params":[{"required":"yes","param":"int|string $key The cache key to use for retrieval later"},{"required":"yes","param":"mixed $data The data to add to the cache store"},{"required":"yes","param":"string $group The group to add the cache to"},{"required":"yes","param":"int $expire When the cache data should be expired"}],"desc":"Adds data to the cache, if the cache key doesn&#039;t already exist.","returns":"unknown "},"wp_cache_close":{"params":[],"desc":"Closes the cache.","returns":"bool Always returns True"},"wp_cache_decr":{"params":[{"required":"yes","param":"int|string $key The cache key to increment"},{"required":"yes","param":"int $offset The amount by which to decrement the item&#039;s value. Default is 1."},{"required":"yes","param":"string $group The group the key is in."}],"desc":"Decrement numeric cache item&#039;s value","returns":"false|int False on failure, the item&#039;s new value on success."},"wp_cache_delete":{"params":[{"required":"yes","param":"int|string $key What the contents in the cache are called"},{"required":"yes","param":"string $group Where the cache contents are grouped"}],"desc":"Removes the cache contents matching key and group.","returns":"bool True on successful removal, false on failure"},"wp_cache_flush":{"params":[],"desc":"Removes all cache items.","returns":"bool Always returns true"},"wp_cache_get":{"params":[{"required":"yes","param":"int|string $key What the contents in the cache are called"},{"required":"yes","param":"string $group Where the cache contents are grouped"},{"required":"yes","param":"bool $force Whether to force an update of the local cache from the persistent cache (default is false)"}],"desc":"Retrieves the cache contents from the cache by key and group.","returns":"bool|mixed False on failure to retrieve contents or the cache contents on success"},"wp_cache_incr":{"params":[{"required":"yes","param":"int|string $key The cache key to increment"},{"required":"yes","param":"int $offset The amount by which to increment the item&#039;s value. Default is 1."},{"required":"yes","param":"string $group The group the key is in."}],"desc":"Increment numeric cache item&#039;s value","returns":"false|int False on failure, the item&#039;s new value on success."},"wp_cache_init":{"params":[],"desc":"Sets up Object Cache Global and assigns it.","returns":""},"wp_cache_replace":{"params":[{"required":"yes","param":"int|string $key What to call the contents in the cache"},{"required":"yes","param":"mixed $data The contents to store in the cache"},{"required":"yes","param":"string $group Where to group the cache contents"},{"required":"yes","param":"int $expire When to expire the cache contents"}],"desc":"Replaces the contents of the cache with new data.","returns":"bool False if cache key and group already exist, true on success"},"wp_cache_set":{"params":[{"required":"yes","param":"int|string $key What to call the contents in the cache"},{"required":"yes","param":"mixed $data The contents to store in the cache"},{"required":"yes","param":"string $group Where to group the cache contents"},{"required":"yes","param":"int $expire When to expire the cache contents"}],"desc":"Saves the data to the cache.","returns":"bool False if cache key and group already exist, true on success"},"wp_cache_add_global_groups":{"params":[{"required":"yes","param":"string|array $groups A group or an array of groups to add"}],"desc":"Adds a group or set of groups to the list of global groups.","returns":""},"wp_cache_add_non_persistent_groups":{"params":[{"required":"yes","param":"string|array $groups A group or an array of groups to add"}],"desc":"Adds a group or set of groups to the list of non-persistent groups.","returns":""},"wp_cache_reset":{"params":[],"desc":"Reset internal cache keys and structures. If the cache backend uses global blog or site IDs as part of its cache keys, this function instructs the backend to reset those keys and perform any cleanup since blog or site IDs have changed since cache init.","returns":""},"wp_initial_constants":{"params":[],"desc":"Defines initial WordPress constants","returns":""},"wp_plugin_directory_constants":{"params":[],"desc":"Defines plugin directory WordPress constants","returns":""},"wp_cookie_constants":{"params":[],"desc":"Defines cookie related WordPress constants","returns":""},"wp_ssl_constants":{"params":[],"desc":"Defines cookie related WordPress constants","returns":""},"wp_functionality_constants":{"params":[],"desc":"Defines functionality related WordPress constants","returns":""},"wp_templating_constants":{"params":[],"desc":"Defines templating related WordPress constants","returns":""},"_":{"params":[],"desc":"","returns":""},"mb_substr":{"params":[],"desc":"","returns":""},"_mb_substr":{"params":[],"desc":"","returns":""},"hash_hmac":{"params":[],"desc":"","returns":""},"_hash_hmac":{"params":[],"desc":"","returns":""},"json_decode":{"params":[],"desc":"","returns":""},"_json_decode_object_helper":{"params":[],"desc":"","returns":""},"wp_widget_rss_output":{"params":[{"required":"yes","param":"string|array|object $rss RSS url."},{"required":"yes","param":"array $args Widget arguments."}],"desc":"Display the RSS entries in a list.","returns":""},"wp_widget_rss_form":{"params":[{"required":"yes","param":"array|string $args Values for input fields."},{"required":"yes","param":"array $inputs Override default display options."}],"desc":"Display RSS widget options form.","returns":""},"wp_widget_rss_process":{"params":[{"required":"yes","param":"array $widget_rss RSS widget feed data. Expects unescaped data."},{"required":"no","param":"bool $check_feed Optional, default is true. Whether to check feed for errors."}],"desc":"Process RSS feed widget data and optionally retrieve feed items.","returns":"array "},"wp_widgets_init":{"params":[],"desc":"Register all of the default WordPress widgets on startup.","returns":""},"get_all_category_ids":{"params":[],"desc":"Retrieves all category IDs.","returns":"object List of all of the category IDs."},"get_categories":{"params":[{"required":"no","param":"string|array $args Optional. Change the defaults retrieving categories."}],"desc":"Retrieve list of category objects.","returns":"array List of categories."},"get_category":{"params":[{"required":"yes","param":"int|object $category Category ID or Category row object"},{"required":"no","param":"string $output Optional. Constant OBJECT, ARRAY_A, or ARRAY_N"},{"required":"no","param":"string $filter Optional. Default is raw or no WordPress defined filter will applied."}],"desc":"Retrieves category data given a category ID or category object.","returns":"mixed Category data in type defined by $output parameter."},"get_category_by_path":{"params":[{"required":"yes","param":"string $category_path URL containing category slugs."},{"required":"no","param":"bool $full_match Optional. Whether full path should be matched."},{"required":"no","param":"string $output Optional. Constant OBJECT, ARRAY_A, or ARRAY_N"}],"desc":"Retrieve category based on URL containing the category slug.","returns":"null|object|array Null on failure. Type is based on $output value."},"get_category_by_slug":{"params":[{"required":"yes","param":"string $slug The category slug."}],"desc":"Retrieve category object by category slug.","returns":"object Category data object"},"get_cat_ID":{"params":[{"required":"no","param":"string $cat_name Optional. Default is &#039;General&#039; and can be any category name."}],"desc":"Retrieve the ID of a category from its name.","returns":"int 0, if failure and ID of category on success."},"get_cat_name":{"params":[{"required":"yes","param":"int $cat_id Category ID"}],"desc":"Retrieve the name of a category from its ID.","returns":"string Category name, or an empty string if category doesn&#039;t exist."},"cat_is_ancestor_of":{"params":[{"required":"yes","param":"int|object $cat1 ID or object to check if this is the parent category."},{"required":"yes","param":"int|object $cat2 The child category."}],"desc":"Check if a category is an ancestor of another category.","returns":"bool Whether $cat2 is child of $cat1"},"sanitize_category":{"params":[{"required":"yes","param":"object|array $category Category data"},{"required":"no","param":"string $context Optional. Default is &#039;display&#039;."}],"desc":"Sanitizes category data based on context.","returns":"object|array Same type as $category with sanitized data for safe use."},"sanitize_category_field":{"params":[{"required":"yes","param":"string $field Category key to sanitize"},{"required":"yes","param":"mixed $value Category value to sanitize"},{"required":"yes","param":"int $cat_id Category ID"},{"required":"yes","param":"string $context What filter to use, &#039;raw&#039;, &#039;display&#039;, etc."}],"desc":"Sanitizes data in single category key field.","returns":"mixed Same type as $value after $value has been sanitized."},"get_tags":{"params":[{"required":"yes","param":"string|array $args Tag arguments to use when retrieving tags."}],"desc":"Retrieves all post tags.","returns":"array List of tags."},"get_tag":{"params":[{"required":"yes","param":"int|object $tag "},{"required":"no","param":"string $output Optional. Constant OBJECT, ARRAY_A, or ARRAY_N"},{"required":"no","param":"string $filter Optional. Default is raw or no WordPress defined filter will applied."}],"desc":"Retrieve post tag by tag ID or tag object.","returns":"object|array Return type based on $output value."},"clean_category_cache":{"params":[{"required":"yes","param":"int $id Category ID"}],"desc":"Remove the category cache data based on ID.","returns":""},"_make_cat_compat":{"params":[{"required":"yes","param":"array|object $category Category Row object or array"}],"desc":"Update category structure to old pre 2.3 from new taxonomy structure.","returns":""},"_wp_http_get_object":{"params":[],"desc":"Returns the initialized WP_Http Object","returns":"WP_Http HTTP Transport object."},"wp_remote_request":{"params":[{"required":"yes","param":"string $url Site URL to retrieve."},{"required":"no","param":"array $args Optional. Override the defaults."}],"desc":"Retrieve the raw response from the HTTP request.","returns":"WP_Error|array The response or WP_Error on failure."},"wp_remote_get":{"params":[{"required":"yes","param":"string $url Site URL to retrieve."},{"required":"no","param":"array $args Optional. Override the defaults."}],"desc":"Retrieve the raw response from the HTTP request using the GET method.","returns":"WP_Error|array The response or WP_Error on failure."},"wp_remote_post":{"params":[{"required":"yes","param":"string $url Site URL to retrieve."},{"required":"no","param":"array $args Optional. Override the defaults."}],"desc":"Retrieve the raw response from the HTTP request using the POST method.","returns":"WP_Error|array The response or WP_Error on failure."},"wp_remote_head":{"params":[{"required":"yes","param":"string $url Site URL to retrieve."},{"required":"no","param":"array $args Optional. Override the defaults."}],"desc":"Retrieve the raw response from the HTTP request using the HEAD method.","returns":"WP_Error|array The response or WP_Error on failure."},"wp_remote_retrieve_headers":{"params":[{"required":"yes","param":"array $response HTTP response."}],"desc":"Retrieve only the headers from the raw response.","returns":"array The headers of the response. Empty array if incorrect parameter given."},"wp_remote_retrieve_header":{"params":[{"required":"yes","param":"array $response "},{"required":"yes","param":"string $header Header name to retrieve value from."}],"desc":"Retrieve a single header by name from the raw response.","returns":"string The header value. Empty string on if incorrect parameter given, or if the header doesn&#039;t exist."},"wp_remote_retrieve_response_code":{"params":[{"required":"yes","param":"array $response HTTP response."}],"desc":"Retrieve only the response code from the raw response.","returns":"string the response code. Empty string on incorrect parameter given."},"wp_remote_retrieve_response_message":{"params":[{"required":"yes","param":"array $response HTTP response."}],"desc":"Retrieve only the response message from the raw response.","returns":"string The response message. Empty string on incorrect parameter given."},"wp_remote_retrieve_body":{"params":[{"required":"yes","param":"array $response HTTP response."}],"desc":"Retrieve only the body from the raw response.","returns":"string The body of the response. Empty string if no body or incorrect parameter given."},"wp_http_supports":{"params":[{"required":"yes","param":"array $capabilities Array of capabilities to test or a wp_remote_request() $args array."},{"required":"no","param":"string $url Optional. If given, will check if the URL requires SSL and adds that requirement to the capabilities array."}],"desc":"Determines if there is an HTTP Transport that can process this request.","returns":"bool "},"wptexturize":{"params":[{"required":"yes","param":"string $text The text to be formatted"}],"desc":"Replaces common plain text characters into formatted entities","returns":"string The string replaced with html entities"},"_wptexturize_pushpop_element":{"params":[{"required":"yes","param":"string $text Text to check. First character is assumed to be $opening"},{"required":"yes","param":"array $stack Array used as stack of opened tag elements"},{"required":"yes","param":"string $disabled_elements Tags to match against formatted as regexp sub-expression"},{"required":"yes","param":"string $opening Tag opening character, assumed to be 1 character long"},{"required":"yes","param":"string $opening Tag closing character"}],"desc":"Search for disabled element tags. Push element to stack on tag open and pop on tag close. Assumes first character of $text is tag opening.","returns":"object "},"clean_pre":{"params":[{"required":"yes","param":"array|string $matches The array or string"}],"desc":"Accepts matches array from preg_replace_callback in wpautop() or a string.","returns":"string The pre block without paragraph/line-break conversion."},"wpautop":{"params":[{"required":"yes","param":"string $pee The text which has to be formatted."},{"required":"no","param":"int|bool $br Optional. If set, this will convert all remaining line-breaks after paragraphing. Default true."}],"desc":"Replaces double line-breaks with paragraph elements.","returns":"string Text which has been converted into correct paragraph tags."},"_autop_newline_preservation_helper":{"params":[{"required":"yes","param":"array $matches preg_replace_callback matches array"}],"desc":"Newline preservation help function for wpautop","returns":""},"shortcode_unautop":{"params":[{"required":"yes","param":"string $pee The content."}],"desc":"Don&#039;t auto-p wrap shortcodes that stand alone","returns":"string The filtered content."},"seems_utf8":{"params":[{"required":"yes","param":"string $str The string to be checked"}],"desc":"Checks to see if a string is utf8 encoded.","returns":"bool True if $str fits a UTF-8 model, false otherwise."},"_wp_specialchars":{"params":[{"required":"yes","param":"string $string The text which is to be encoded."},{"required":"no","param":"mixed $quote_style Optional. Converts double quotes if set to ENT_COMPAT, both single and double if set to ENT_QUOTES or none if set to ENT_NOQUOTES. Also compatible with old values; converting single quotes if set to &#039;single&#039;, double if set to &#039;double&#039; or both if otherwise set. Default is ENT_NOQUOTES."},{"required":"no","param":"string $charset Optional. The character encoding of the string. Default is false."},{"required":"no","param":"boolean $double_encode Optional. Whether to encode existing html entities. Default is false."}],"desc":"Converts a number of special characters into their HTML entities.","returns":"string The encoded text with HTML entities."},"wp_specialchars_decode":{"params":[{"required":"yes","param":"string $string The text which is to be decoded."},{"required":"no","param":"mixed $quote_style Optional. Converts double quotes if set to ENT_COMPAT, both single and double if set to ENT_QUOTES or none if set to ENT_NOQUOTES. Also compatible with old _wp_specialchars() values; converting single quotes if set to &#039;single&#039;, double if set to &#039;double&#039; or both if otherwise set. Default is ENT_NOQUOTES."}],"desc":"Converts a number of HTML entities into their special characters.","returns":"string The decoded text without HTML entities."},"wp_check_invalid_utf8":{"params":[{"required":"yes","param":"string $string The text which is to be checked."},{"required":"no","param":"boolean $strip Optional. Whether to attempt to strip out invalid UTF8. Default is false."}],"desc":"Checks for invalid UTF8 in a string.","returns":"string The checked text."},"utf8_uri_encode":{"params":[{"required":"yes","param":"string $utf8_string "},{"required":"yes","param":"int $length Max length of the string"}],"desc":"Encode the Unicode values to be used in the URI.","returns":"string String with Unicode encoded for URI."},"remove_accents":{"params":[{"required":"yes","param":"string $string Text that might have accent characters"}],"desc":"Converts all accent characters to ASCII characters.","returns":"string Filtered string with replaced &quot;nice&quot; characters."},"sanitize_file_name":{"params":[{"required":"yes","param":"string $filename The filename to be sanitized"}],"desc":"Sanitizes a filename replacing whitespace with dashes","returns":"string The sanitized filename"},"sanitize_user":{"params":[{"required":"yes","param":"string $username The username to be sanitized."},{"required":"yes","param":"bool $strict If set limits $username to specific characters. Default false."}],"desc":"Sanitize username stripping out unsafe characters.","returns":"string The sanitized username, after passing through filters."},"sanitize_key":{"params":[{"required":"yes","param":"string $key String key"}],"desc":"Sanitize a string key.","returns":"string Sanitized key"},"sanitize_title":{"params":[{"required":"yes","param":"string $title The string to be sanitized."},{"required":"no","param":"string $fallback_title Optional. A title to use if $title is empty."},{"required":"no","param":"string $context Optional. The operation for which the string is sanitized"}],"desc":"Sanitizes title or use fallback title.","returns":"string The sanitized string."},"sanitize_title_for_query":{"params":[],"desc":"","returns":""},"sanitize_title_with_dashes":{"params":[{"required":"yes","param":"string $title The title to be sanitized."},{"required":"no","param":"string $raw_title Optional. Not used."},{"required":"no","param":"string $context Optional. The operation for which the string is sanitized."}],"desc":"Sanitizes title, replacing whitespace and a few other characters with dashes.","returns":"string The sanitized title."},"sanitize_sql_orderby":{"params":[{"required":"yes","param":"string $orderby Order by string to be checked."}],"desc":"Ensures a string is a valid SQL order by clause.","returns":"string|false Returns the order by clause if it is a match, false otherwise."},"sanitize_html_class":{"params":[{"required":"yes","param":"string $class The classname to be sanitized"},{"required":"no","param":"string $fallback Optional. The value to return if the sanitization end&#039;s up as an empty string. Defaults to an empty string."}],"desc":"Santizes a html classname to ensure it only contains valid characters","returns":"string The sanitized value"},"convert_chars":{"params":[{"required":"yes","param":"string $content String of characters to be converted."},{"required":"yes","param":"string $deprecated Not used."}],"desc":"Converts a number of characters from a string.","returns":"string Converted string."},"balanceTags":{"params":[{"required":"yes","param":"string $text Text to be balanced"},{"required":"yes","param":"bool $force Forces balancing, ignoring the value of the option. Default false."}],"desc":"Will only balance the tags if forced to and the option is set to balance tags.","returns":"string Balanced text"},"force_balance_tags":{"params":[{"required":"yes","param":"string $text Text to be balanced."}],"desc":"Balances tags of string using a modified stack.","returns":"string Balanced text."},"format_to_edit":{"params":[{"required":"yes","param":"string $content The text about to be edited."},{"required":"yes","param":"bool $richedit Whether the $content should pass through htmlspecialchars(). Default false."}],"desc":"Acts on text which is about to be edited.","returns":"string The text after the filter (and possibly htmlspecialchars()) has been run."},"format_to_post":{"params":[{"required":"yes","param":"string $content The text to pass through the filter."}],"desc":"Holder for the &#039;format_to_post&#039; filter.","returns":"string Text returned from the &#039;format_to_post&#039; filter."},"zeroise":{"params":[{"required":"yes","param":"mixed $number Number to append zeros to if not greater than threshold."},{"required":"yes","param":"int $threshold Digit places number needs to be to not have zeros added."}],"desc":"Add leading zeros when necessary.","returns":"string Adds leading zeros to number if needed."},"backslashit":{"params":[{"required":"yes","param":"string $string Value to which backslashes will be added."}],"desc":"Adds backslashes before letters and before a number at the start of a string.","returns":"string String with backslashes inserted."},"trailingslashit":{"params":[{"required":"yes","param":"string $string What to add the trailing slash to."}],"desc":"Appends a trailing slash.","returns":"string String with trailing slash added."},"untrailingslashit":{"params":[{"required":"yes","param":"string $string What to remove the trailing slash from."}],"desc":"Removes trailing slash if it exists.","returns":"string String without the trailing slash."},"addslashes_gpc":{"params":[{"required":"yes","param":"string $gpc The string returned from HTTP request data."}],"desc":"Adds slashes to escape strings.","returns":"string Returns a string escaped with slashes."},"stripslashes_deep":{"params":[{"required":"yes","param":"array|string $value The array or string to be stripped."}],"desc":"Navigates through an array and removes slashes from the values.","returns":"array|string Stripped array (or string in the callback)."},"urlencode_deep":{"params":[{"required":"yes","param":"array|string $value The array or string to be encoded."}],"desc":"Navigates through an array and encodes the values to be used in a URL.","returns":"array|string $value The encoded array (or string from the callback)."},"antispambot":{"params":[{"required":"yes","param":"string $emailaddy Email address."},{"required":"no","param":"int $mailto Optional. Range from 0 to 1. Used for encoding."}],"desc":"Converts email addresses characters to HTML entities to block spam bots.","returns":"string Converted email address."},"_make_url_clickable_cb":{"params":[{"required":"yes","param":"array $matches Single Regex Match."}],"desc":"Callback to convert URI match to HTML A element.","returns":"string HTML A element with URI address."},"_make_web_ftp_clickable_cb":{"params":[{"required":"yes","param":"array $matches Single Regex Match."}],"desc":"Callback to convert URL match to HTML A element.","returns":"string HTML A element with URL address."},"_make_email_clickable_cb":{"params":[{"required":"yes","param":"array $matches Single Regex Match."}],"desc":"Callback to convert email address match to HTML A element.","returns":"string HTML A element with email address."},"make_clickable":{"params":[{"required":"yes","param":"string $text Content to convert URIs."}],"desc":"Convert plaintext URI to HTML links.","returns":"string Content with converted URIs."},"_split_str_by_whitespace":{"params":[{"required":"yes","param":"string $string The string to split"},{"required":"yes","param":"int $goal The desired chunk length."}],"desc":"Breaks a string into chunks by splitting at whitespace characters.","returns":"array Numeric array of chunks."},"wp_rel_nofollow":{"params":[{"required":"yes","param":"string $text Content that may contain HTML A elements."}],"desc":"Adds rel nofollow string to all HTML A elements in content.","returns":"string Converted content."},"wp_rel_nofollow_callback":{"params":[{"required":"yes","param":"array $matches Single Match"}],"desc":"Callback to used to add rel=nofollow string to HTML A element.","returns":"string HTML A Element with rel nofollow."},"translate_smiley":{"params":[{"required":"yes","param":"string $smiley Smiley code to convert to image."}],"desc":"Convert one smiley code to the icon graphic file equivalent.","returns":"string Image string for smiley."},"convert_smilies":{"params":[{"required":"yes","param":"string $text Content to convert smilies from text."}],"desc":"Convert text equivalent of smilies to images.","returns":"string Converted content with text smilies replaced with images."},"is_email":{"params":[{"required":"yes","param":"string $email Email address to verify."},{"required":"yes","param":"boolean $deprecated Deprecated."}],"desc":"Verifies that an email is valid.","returns":"string|bool Either false or the valid email address."},"wp_iso_descrambler":{"params":[{"required":"yes","param":"string $string Subject line"}],"desc":"Convert to ASCII from email subjects.","returns":"string Converted string to ASCII"},"_wp_iso_convert":{"params":[{"required":"yes","param":"array $match the preg_replace_callback matches array"}],"desc":"Helper function to convert hex encoded chars to ascii","returns":""},"get_gmt_from_date":{"params":[{"required":"yes","param":"string $string The date to be converted."},{"required":"yes","param":"string $format The format string for the returned date (default is Y-m-d H:i:s)"}],"desc":"Returns a date in the GMT equivalent.","returns":"string GMT version of the date provided."},"get_date_from_gmt":{"params":[{"required":"yes","param":"string $string The date to be converted."},{"required":"yes","param":"string $format The format string for the returned date (default is Y-m-d H:i:s)"}],"desc":"Converts a GMT date into the correct format for the blog.","returns":"string Formatted date relative to the GMT offset."},"iso8601_timezone_to_offset":{"params":[{"required":"yes","param":"string $timezone Either &#039;Z&#039; for 0 offset or &#039;\u00b1hhmm&#039;."}],"desc":"Computes an offset in seconds from an iso8601 timezone.","returns":"int|float The offset in seconds."},"iso8601_to_datetime":{"params":[{"required":"yes","param":"string $date_string Date and time in ISO 8601 format {@link http://en.wikipedia.org/wiki/ISO_8601}."},{"required":"no","param":"string $timezone Optional. If set to GMT returns the time minus gmt_offset. Default is &#039;user&#039;."}],"desc":"Converts an iso8601 date to MySQL DateTime format used by post_date[_gmt].","returns":"string The date and time in MySQL DateTime format - Y-m-d H:i:s."},"popuplinks":{"params":[{"required":"yes","param":"string $text Content to replace links to open in a new window."}],"desc":"Adds a element attributes to open links in new windows.","returns":"string Content that has filtered links."},"sanitize_email":{"params":[{"required":"yes","param":"string $email Email address to filter."}],"desc":"Strips out all characters that are not allowable in an email.","returns":"string Filtered email address."},"human_time_diff":{"params":[{"required":"yes","param":"int $from Unix timestamp from which the difference begins."},{"required":"no","param":"int $to Optional. Unix timestamp to end the time difference. Default becomes time() if not set."}],"desc":"Determines the difference between two timestamps.","returns":"string Human readable time difference."},"wp_trim_excerpt":{"params":[{"required":"no","param":"string $text Optional. The excerpt. If set to empty, an excerpt is generated."}],"desc":"Generates an excerpt from the content, if needed.","returns":"string The excerpt."},"wp_trim_words":{"params":[{"required":"yes","param":"string $text Text to trim."},{"required":"yes","param":"int $num_words Number of words. Default 55."},{"required":"yes","param":"string $more What to append if $text needs to be trimmed. Default &#039;&hellip;&#039;."}],"desc":"Trims text to a certain number of words.","returns":"string Trimmed text."},"ent2ncr":{"params":[{"required":"yes","param":"string $text The text within which entities will be converted."}],"desc":"Converts named entities into numbered entities.","returns":"string Text with converted entities."},"wp_richedit_pre":{"params":[{"required":"yes","param":"string $text The text to be formatted."}],"desc":"Formats text for the rich text editor.","returns":"string The formatted text after filter is applied."},"wp_htmledit_pre":{"params":[{"required":"yes","param":"string $output The text to be formatted."}],"desc":"Formats text for the HTML editor.","returns":"string Formatted text after filter applied."},"_deep_replace":{"params":[{"required":"yes","param":"string|array $search "},{"required":"yes","param":"string $subject "}],"desc":"Perform a deep string replace operation to ensure the values in $search are no longer present","returns":"string The processed string"},"esc_sql":{"params":[{"required":"yes","param":"string $sql Unescaped SQL data"}],"desc":"Escapes data for use in a MySQL query","returns":"string The cleaned $sql"},"esc_url":{"params":[{"required":"yes","param":"string $url The URL to be cleaned."},{"required":"no","param":"array $protocols Optional. An array of acceptable protocols. Defaults to &#039;http&#039;, &#039;https&#039;, &#039;ftp&#039;, &#039;ftps&#039;, &#039;mailto&#039;, &#039;news&#039;, &#039;irc&#039;, &#039;gopher&#039;, &#039;nntp&#039;, &#039;feed&#039;, &#039;telnet&#039;, &#039;mms&#039;, &#039;rtsp&#039;, &#039;svn&#039; if not set."},{"required":"yes","param":"string $_context Private. Use esc_url_raw() for database usage."}],"desc":"Checks and cleans a URL.","returns":"string The cleaned $url after the &#039;clean_url&#039; filter is applied."},"esc_url_raw":{"params":[{"required":"yes","param":"string $url The URL to be cleaned."},{"required":"yes","param":"array $protocols An array of acceptable protocols."}],"desc":"Performs esc_url() for database usage.","returns":"string The cleaned URL."},"htmlentities2":{"params":[{"required":"yes","param":"string $myHTML The text to be converted."}],"desc":"Convert entities, while preserving already-encoded entities.","returns":"string Converted text."},"esc_js":{"params":[{"required":"yes","param":"string $text The text to be escaped."}],"desc":"Escape single quotes, htmlspecialchar &quot; &lt; &gt; &amp;, and fix line endings.","returns":"string Escaped text."},"esc_html":{"params":[{"required":"yes","param":"string $text "}],"desc":"Escaping for HTML blocks.","returns":"string "},"esc_textarea":{"params":[{"required":"yes","param":"string $text "}],"desc":"Escaping for textarea values.","returns":"string "},"tag_escape":{"params":[{"required":"yes","param":"string $tag_name "}],"desc":"Escape a HTML tag name.","returns":"string "},"like_escape":{"params":[{"required":"yes","param":"string $text The text to be escaped."}],"desc":"Escapes text for SQL LIKE special characters % and _.","returns":"string text, safe for inclusion in LIKE query."},"wp_make_link_relative":{"params":[{"required":"yes","param":"string $link Full URL path."}],"desc":"Convert full URL paths to absolute paths.","returns":"string Absolute path."},"sanitize_option":{"params":[{"required":"yes","param":"string $option The name of the option."},{"required":"yes","param":"string $value The unsanitised value."}],"desc":"Sanitises various option values based on the nature of the option.","returns":"string Sanitized value."},"wp_parse_str":{"params":[{"required":"yes","param":"string $string The string to be parsed."},{"required":"yes","param":"array $array Variables will be stored in this array."}],"desc":"Parses a string into variables to be stored in an array.","returns":""},"wp_pre_kses_less_than":{"params":[{"required":"yes","param":"string $text Text to be converted."}],"desc":"Convert lone less than signs.","returns":"string Converted text."},"wp_pre_kses_less_than_callback":{"params":[{"required":"yes","param":"array $matches Populated by matches to preg_replace."}],"desc":"Callback function used by preg_replace.","returns":"string The text returned after esc_html if needed."},"wp_sprintf":{"params":[{"required":"yes","param":"string $pattern The string which formatted args are inserted."},{"required":"yes","param":"mixed $args,... Arguments to be formatted into the $pattern string."}],"desc":"WordPress implementation of PHP sprintf() with filters.","returns":"string The formatted string."},"wp_sprintf_l":{"params":[{"required":"yes","param":"string $pattern Content containing &#039;%l&#039; at the beginning."},{"required":"yes","param":"array $args List items to prepend to the content and replace &#039;%l&#039;."}],"desc":"Localize list items before the rest of the content.","returns":"string Localized list items and rest of the content."},"wp_html_excerpt":{"params":[{"required":"yes","param":"integer $str String to get the excerpt from."},{"required":"yes","param":"integer $count Maximum number of characters to take."}],"desc":"Safely extracts not more than the first $count characters from html string.","returns":"string The excerpt."},"links_add_base_url":{"params":[{"required":"yes","param":"string $content String to search for links in."},{"required":"yes","param":"string $base The base URL to prefix to links."},{"required":"yes","param":"array $attrs The attributes which should be processed."}],"desc":"Add a Base url to relative links in passed content.","returns":"string The processed content."},"_links_add_base":{"params":[{"required":"yes","param":"string $m The matched link."}],"desc":"Callback to add a base url to relative links in passed content.","returns":"string The processed link."},"links_add_target":{"params":[{"required":"yes","param":"string $content String to search for links in."},{"required":"yes","param":"string $target The Target to add to the links."},{"required":"yes","param":"array $tags An array of tags to apply to."}],"desc":"Adds a Target attribute to all links in passed content.","returns":"string The processed content."},"_links_add_target":{"params":[{"required":"yes","param":"string $m The matched link."}],"desc":"Callback to add a target attribute to all links in passed content.","returns":"string The processed link."},"normalize_whitespace":{"params":[],"desc":"","returns":""},"wp_strip_all_tags":{"params":[{"required":"yes","param":"string $string String containing HTML tags"},{"required":"no","param":"bool $remove_breaks optional Whether to remove left over line breaks and white space chars"}],"desc":"Properly strip all HTML tags including script and style","returns":"string The processed string."},"sanitize_text_field":{"params":[{"required":"yes","param":"string $str "}],"desc":"Sanitize a string from user input or from the db","returns":"string "},"wp_basename":{"params":[{"required":"yes","param":"string $path A path."},{"required":"yes","param":"string $suffix If the filename ends in suffix this will also be cut off."}],"desc":"i18n friendly version of basename()","returns":"string "},"capital_P_dangit":{"params":[],"desc":"Forever eliminate &quot;Wordpress&quot; from the planet (or at least the little bit we can influence).","returns":""},"sanitize_mime_type":{"params":[{"required":"yes","param":"string $mime_type Mime type"}],"desc":"Sanitize a mime type","returns":"string Sanitized mime type"},"wp_kses":{"params":[{"required":"yes","param":"string $string Content to filter through kses"},{"required":"yes","param":"array $allowed_html List of allowed HTML elements"},{"required":"no","param":"array $allowed_protocols Optional. Allowed protocol in links."}],"desc":"Filters content and keeps only allowable HTML elements.","returns":"string Filtered content with only allowed HTML elements"},"wp_kses_hook":{"params":[{"required":"yes","param":"string $string Content to filter through kses"},{"required":"yes","param":"array $allowed_html List of allowed HTML elements"},{"required":"yes","param":"array $allowed_protocols Allowed protocol in links"}],"desc":"You add any kses hooks here.","returns":"string Filtered content through &#039;pre_kses&#039; hook"},"wp_kses_version":{"params":[],"desc":"This function returns kses&#039; version number.","returns":"string KSES Version Number"},"wp_kses_split":{"params":[{"required":"yes","param":"string $string Content to filter"},{"required":"yes","param":"array $allowed_html Allowed HTML elements"},{"required":"yes","param":"array $allowed_protocols Allowed protocols to keep"}],"desc":"Searches for HTML tags, no matter how malformed.","returns":"string Content with fixed HTML tags"},"_wp_kses_split_callback":{"params":[],"desc":"Callback for wp_kses_split.","returns":""},"wp_kses_split2":{"params":[{"required":"yes","param":"string $string Content to filter"},{"required":"yes","param":"array $allowed_html Allowed HTML elements"},{"required":"yes","param":"array $allowed_protocols Allowed protocols to keep"}],"desc":"Callback for wp_kses_split for fixing malformed HTML tags.","returns":"string Fixed HTML element"},"wp_kses_attr":{"params":[{"required":"yes","param":"string $element HTML element/tag"},{"required":"yes","param":"string $attr HTML attributes from HTML element to closing HTML element tag"},{"required":"yes","param":"array $allowed_html Allowed HTML elements"},{"required":"yes","param":"array $allowed_protocols Allowed protocols to keep"}],"desc":"Removes all attributes, if none are allowed for this element.","returns":"string Sanitized HTML element"},"wp_kses_hair":{"params":[{"required":"yes","param":"string $attr Attribute list from HTML element to closing HTML element tag"},{"required":"yes","param":"array $allowed_protocols Allowed protocols to keep"}],"desc":"Builds an attribute list from string containing attributes.","returns":"array List of attributes after parsing"},"wp_kses_check_attr_val":{"params":[{"required":"yes","param":"string $value Attribute value"},{"required":"yes","param":"string $vless Whether the value is valueless. Use &#039;y&#039; or &#039;n&#039;"},{"required":"yes","param":"string $checkname What $checkvalue is checking for."},{"required":"yes","param":"mixed $checkvalue What constraint the value should pass"}],"desc":"Performs different checks for attribute values.","returns":"bool Whether check passes"},"wp_kses_bad_protocol":{"params":[{"required":"yes","param":"string $string Content to filter bad protocols from"},{"required":"yes","param":"array $allowed_protocols Allowed protocols to keep"}],"desc":"Sanitize string from bad protocols.","returns":"string Filtered content"},"wp_kses_no_null":{"params":[{"required":"yes","param":"string $string "}],"desc":"Removes any NULL characters in $string.","returns":"string "},"wp_kses_stripslashes":{"params":[{"required":"yes","param":"string $string String to strip slashes"}],"desc":"Strips slashes from in front of quotes.","returns":"string Fixed string with quoted slashes"},"wp_kses_array_lc":{"params":[{"required":"yes","param":"array $inarray Unfiltered array"}],"desc":"Goes through an array and changes the keys to all lower case.","returns":"array Fixed array with all lowercase keys"},"wp_kses_js_entities":{"params":[{"required":"yes","param":"string $string "}],"desc":"Removes the HTML JavaScript entities found in early versions of Netscape 4.","returns":"string "},"wp_kses_html_error":{"params":[{"required":"yes","param":"string $string "}],"desc":"Handles parsing errors in wp_kses_hair().","returns":"string "},"wp_kses_bad_protocol_once":{"params":[{"required":"yes","param":"string $string Content to check for bad protocols"},{"required":"yes","param":"string $allowed_protocols Allowed protocols"}],"desc":"Sanitizes content from bad protocols and other characters.","returns":"string Sanitized content"},"wp_kses_bad_protocol_once2":{"params":[{"required":"yes","param":"string $string URI scheme to check against the whitelist"},{"required":"yes","param":"string $allowed_protocols Allowed protocols"}],"desc":"Callback for wp_kses_bad_protocol_once() regular expression.","returns":"string Sanitized content"},"wp_kses_normalize_entities":{"params":[{"required":"yes","param":"string $string Content to normalize entities"}],"desc":"Converts and fixes HTML entities.","returns":"string Content with normalized entities"},"wp_kses_named_entities":{"params":[{"required":"yes","param":"array $matches preg_replace_callback() matches array"}],"desc":"Callback for wp_kses_normalize_entities() regular expression.","returns":"string Correctly encoded entity"},"wp_kses_normalize_entities2":{"params":[{"required":"yes","param":"array $matches preg_replace_callback() matches array"}],"desc":"Callback for wp_kses_normalize_entities() regular expression.","returns":"string Correctly encoded entity"},"wp_kses_normalize_entities3":{"params":[{"required":"yes","param":"array $matches preg_replace_callback() matches array"}],"desc":"Callback for wp_kses_normalize_entities() for regular expression.","returns":"string Correctly encoded entity"},"valid_unicode":{"params":[{"required":"yes","param":"int $i Unicode value"}],"desc":"Helper function to determine if a Unicode value is valid.","returns":"bool True if the value was a valid Unicode number"},"wp_kses_decode_entities":{"params":[{"required":"yes","param":"string $string Content to change entities"}],"desc":"Convert all entities to their character counterparts.","returns":"string Content after decoded entities"},"_wp_kses_decode_entities_chr":{"params":[{"required":"yes","param":"array $match preg match"}],"desc":"Regex callback for wp_kses_decode_entities()","returns":"string "},"_wp_kses_decode_entities_chr_hexdec":{"params":[{"required":"yes","param":"array $match preg match"}],"desc":"Regex callback for wp_kses_decode_entities()","returns":"string "},"wp_filter_kses":{"params":[{"required":"yes","param":"string $data Content to filter, expected to be escaped with slashes"}],"desc":"Sanitize content with allowed HTML Kses rules.","returns":"string Filtered content"},"wp_kses_data":{"params":[{"required":"yes","param":"string $data Content to filter, expected to not be escaped"}],"desc":"Sanitize content with allowed HTML Kses rules.","returns":"string Filtered content"},"wp_filter_post_kses":{"params":[{"required":"yes","param":"string $data Post content to filter, expected to be escaped with slashes"}],"desc":"Sanitize content for allowed HTML tags for post content.","returns":"string Filtered post content with allowed HTML tags and attributes intact."},"wp_kses_post":{"params":[{"required":"yes","param":"string $data Post content to filter"}],"desc":"Sanitize content for allowed HTML tags for post content.","returns":"string Filtered post content with allowed HTML tags and attributes intact."},"wp_filter_nohtml_kses":{"params":[{"required":"yes","param":"string $data Content to strip all HTML from"}],"desc":"Strips all of the HTML in the content.","returns":"string Filtered content without any HTML"},"kses_init_filters":{"params":[],"desc":"Adds all Kses input form content filters.","returns":""},"kses_remove_filters":{"params":[],"desc":"Removes all Kses input form content filters.","returns":""},"kses_init":{"params":[],"desc":"Sets up most of the Kses filters for input form content.","returns":""},"safecss_filter_attr":{"params":[],"desc":"Inline CSS filter","returns":""},"create_initial_post_types":{"params":[],"desc":"Creates the initial post types when &#039;init&#039; action is fired.","returns":""},"get_attached_file":{"params":[{"required":"yes","param":"int $attachment_id Attachment ID."},{"required":"yes","param":"bool $unfiltered Whether to apply filters."}],"desc":"Retrieve attached file path based on attachment ID.","returns":"string The file path to the attached file."},"update_attached_file":{"params":[{"required":"yes","param":"int $attachment_id Attachment ID"},{"required":"yes","param":"string $file File path for the attachment"}],"desc":"Update attachment file path based on attachment ID.","returns":"bool False on failure, true on success."},"_wp_relative_upload_path":{"params":[{"required":"yes","param":"string $path Full path to the file"}],"desc":"Return relative path to an uploaded file.","returns":"string relative path on success, unchanged path on failure."},"get_children":{"params":[{"required":"no","param":"mixed $args Optional. User defined arguments for replacing the defaults."},{"required":"no","param":"string $output Optional. Constant for return type, either OBJECT (default), ARRAY_A, ARRAY_N."}],"desc":"Retrieve all children of the post parent ID.","returns":"array|bool False on failure and the type will be determined by $output parameter."},"get_extended":{"params":[{"required":"yes","param":"string $post Post content."}],"desc":"Get extended entry info (&lt;!--more--&gt;).","returns":"array Post before (&#039;main&#039;) and after (&#039;extended&#039;)."},"get_post":{"params":[{"required":"yes","param":"int|object $post Post ID or post object."},{"required":"no","param":"string $output Optional, default is Object. Either OBJECT, ARRAY_A, or ARRAY_N."},{"required":"no","param":"string $filter Optional, default is raw."}],"desc":"Retrieves post data given a post ID or post object.","returns":"mixed Post data"},"get_post_ancestors":{"params":[{"required":"yes","param":"int|object $post Post ID or post object"}],"desc":"Retrieve ancestors of a post.","returns":"array Ancestor IDs or empty array if none are found."},"get_post_field":{"params":[{"required":"yes","param":"string $field Post field name"},{"required":"yes","param":"id $post Post ID"},{"required":"no","param":"string $context Optional. How to filter the field. Default is display."}],"desc":"Retrieve data from a post field based on Post ID.","returns":"WP_Error|string Value in post field or WP_Error on failure"},"get_post_mime_type":{"params":[{"required":"no","param":"int $ID Optional. Post ID."}],"desc":"Retrieve the mime type of an attachment based on the ID.","returns":"bool|string False on failure or returns the mime type"},"get_post_format":{"params":[{"required":"yes","param":"int|object $post A post"}],"desc":"Retrieve the format slug for a post","returns":"mixed The format if successful. False if no format is set. WP_Error if errors."},"has_post_format":{"params":[{"required":"yes","param":"string $format The format to check for"},{"required":"yes","param":"object|id $post The post to check. If not supplied, defaults to the current post if used in the loop."}],"desc":"Check if a post has a particular format","returns":"bool True if the post has the format, false otherwise."},"set_post_format":{"params":[{"required":"yes","param":"int|object $post The post for which to assign a format"},{"required":"yes","param":"string $format A format to assign. Use an empty string or array to remove all formats from the post."}],"desc":"Assign a format to a post","returns":"mixed WP_Error on error. Array of affected term IDs on success."},"get_post_status":{"params":[{"required":"yes","param":"int $ID Post ID"}],"desc":"Retrieve the post status based on the Post ID.","returns":"string|bool Post status or false on failure."},"get_post_statuses":{"params":[],"desc":"Retrieve all of the WordPress supported post statuses.","returns":"array List of post statuses."},"get_page_statuses":{"params":[],"desc":"Retrieve all of the WordPress support page statuses.","returns":"array List of page statuses."},"register_post_status":{"params":[{"required":"yes","param":"string $post_status Name of the post status."},{"required":"yes","param":"array|string $args See above description.