forked from JetBrains/phpstorm-stubs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCore.php
1011 lines (954 loc) · 28.4 KB
/
Core.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
// Start of Core v.5.3.6-13ubuntu3.2
/**
* Gets the version of the current Zend engine
* @link http://php.net/manual/en/function.zend-version.php
* @return string the Zend Engine version number, as a string.
*/
function zend_version () {}
/**
* (PHP 4, PHP 5)<br/>
* Returns the number of arguments passed to the function
* @link http://php.net/manual/en/function.func-num-args.php
* @return int the number of arguments passed into the current user-defined
* function.
*/
function func_num_args () {}
/**
* (PHP 4, PHP 5)<br/>
* Return an item from the argument list
* @link http://php.net/manual/en/function.func-get-arg.php
* @param int $arg_num <p>
* The argument offset. Function arguments are counted starting from
* zero.
* </p>
* @return mixed the specified argument, or false on error.
*/
function func_get_arg ($arg_num) {}
/**
* (PHP 4, PHP 5)<br/>
* Returns an array comprising a function's argument list
* @link http://php.net/manual/en/function.func-get-args.php
* @return array an array in which each element is a copy of the corresponding
* member of the current user-defined function's argument list.
*/
function func_get_args () {}
/**
* (PHP 4, PHP 5)<br/>
* Get string length
* @link http://php.net/manual/en/function.strlen.php
* @param string $string <p>
* The string being measured for length.
* </p>
* @return int The length of the <i>string</i> on success,
* and 0 if the <i>string</i> is empty.
*/
function strlen ($string) {}
/**
* (PHP 4, PHP 5)<br/>
* Binary safe string comparison
* @link http://php.net/manual/en/function.strcmp.php
* @param string $str1 <p>
* The first string.
* </p>
* @param string $str2 <p>
* The second string.
* </p>
* @return int < 0 if <i>str1</i> is less than
* <i>str2</i>; > 0 if <i>str1</i>
* is greater than <i>str2</i>, and 0 if they are
* equal.
*/
function strcmp ($str1, $str2) {}
/**
* (PHP 4, PHP 5)<br/>
* Binary safe string comparison of the first n characters
* @link http://php.net/manual/en/function.strncmp.php
* @param string $str1 <p>
* The first string.
* </p>
* @param string $str2 <p>
* The second string.
* </p>
* @param int $len <p>
* Number of characters to use in the comparison.
* </p>
* @return int < 0 if <i>str1</i> is less than
* <i>str2</i>; > 0 if <i>str1</i>
* is greater than <i>str2</i>, and 0 if they are
* equal.
*/
function strncmp ($str1, $str2, $len) {}
/**
* (PHP 4, PHP 5)<br/>
* Binary safe case-insensitive string comparison
* @link http://php.net/manual/en/function.strcasecmp.php
* @param string $str1 <p>
* The first string
* </p>
* @param string $str2 <p>
* The second string
* </p>
* @return int < 0 if <i>str1</i> is less than
* <i>str2</i>; > 0 if <i>str1</i>
* is greater than <i>str2</i>, and 0 if they are
* equal.
*/
function strcasecmp ($str1, $str2) {}
/**
* (PHP 4 >= 4.0.2, PHP 5)<br/>
* Binary safe case-insensitive string comparison of the first n characters
* @link http://php.net/manual/en/function.strncasecmp.php
* @param string $str1 <p>
* The first string.
* </p>
* @param string $str2 <p>
* The second string.
* </p>
* @param int $len <p>
* The length of strings to be used in the comparison.
* </p>
* @return int < 0 if <i>str1</i> is less than
* <i>str2</i>; > 0 if <i>str1</i> is
* greater than <i>str2</i>, and 0 if they are equal.
*/
function strncasecmp ($str1, $str2, $len) {}
/**
* (PHP 4, PHP 5)<br/>
* Return the current key and value pair from an array and advance the array cursor
* @link http://php.net/manual/en/function.each.php
* @param array $array <p>
* The input array.
* </p>
* @return array the current key and value pair from the array
* <i>array</i>. This pair is returned in a four-element
* array, with the keys 0, 1,
* key, and value. Elements
* 0 and key contain the key name of
* the array element, and 1 and value
* contain the data.
* </p>
* <p>
* If the internal pointer for the array points past the end of the
* array contents, <b>each</b> returns
* false.
*/
function each (array &$array) {}
/**
* (PHP 4, PHP 5)<br/>
* Sets which PHP errors are reported
* @link http://php.net/manual/en/function.error-reporting.php
* @param int $level [optional] <p>
* The new error_reporting
* level. It takes on either a bitmask, or named constants. Using named
* constants is strongly encouraged to ensure compatibility for future
* versions. As error levels are added, the range of integers increases,
* so older integer-based error levels will not always behave as expected.
* </p>
* <p>
* The available error level constants and the actual
* meanings of these error levels are described in the
* predefined constants.
* <table>
* error_reporting level constants and bit values
* <tr valign="top">
* <td>value</td>
* <td>constant</td>
* </tr>
* <tr valign="top">
* <td>1</td>
* <td>
* E_ERROR
* </td>
* </tr>
* <tr valign="top">
* <td>2</td>
* <td>
* E_WARNING
* </td>
* </tr>
* <tr valign="top">
* <td>4</td>
* <td>
* E_PARSE
* </td>
* </tr>
* <tr valign="top">
* <td>8</td>
* <td>
* E_NOTICE
* </td>
* </tr>
* <tr valign="top">
* <td>16</td>
* <td>
* E_CORE_ERROR
* </td>
* </tr>
* <tr valign="top">
* <td>32</td>
* <td>
* E_CORE_WARNING
* </td>
* </tr>
* <tr valign="top">
* <td>64</td>
* <td>
* E_COMPILE_ERROR
* </td>
* </tr>
* <tr valign="top">
* <td>128</td>
* <td>
* E_COMPILE_WARNING
* </td>
* </tr>
* <tr valign="top">
* <td>256</td>
* <td>
* E_USER_ERROR
* </td>
* </tr>
* <tr valign="top">
* <td>512</td>
* <td>
* E_USER_WARNING
* </td>
* </tr>
* <tr valign="top">
* <td>1024</td>
* <td>
* E_USER_NOTICE
* </td>
* </tr>
* <tr valign="top">
* <td>6143</td>
* <td>
* E_ALL
* </td>
* </tr>
* <tr valign="top">
* <td>2048</td>
* <td>
* E_STRICT
* </td>
* </tr>
* <tr valign="top">
* <td>4096</td>
* <td>
* E_RECOVERABLE_ERROR
* </td>
* </tr>
* <tr valign="top">
* <td>8192</td>
* <td>
* E_DEPRECATED
* </td>
* </tr>
* <tr valign="top">
* <td>16384</td>
* <td>
* E_USER_DEPRECATED
* </td>
* </tr>
* </table>
* </p>
* @return int the old error_reporting
* level or the current level if no <i>level</i> parameter is
* given.
*/
function error_reporting ($level = null) {}
/**
* (PHP 4, PHP 5)<br/>
* Defines a named constant
* @link http://php.net/manual/en/function.define.php
* @param string $name <p>
* The name of the constant.
* </p>
* @param mixed $value <p>
* The value of the constant; only scalar and null values are allowed.
* Scalar values are integer,
* float, string or boolean values. It is
* possible to define resource constants, however it is not recommended
* and may cause unpredictable behavior.
* </p>
* @param bool $case_insensitive [optional] <p>
* If set to true, the constant will be defined case-insensitive.
* The default behavior is case-sensitive; i.e.
* CONSTANT and Constant represent
* different values.
* </p>
* <p>
* Case-insensitive constants are stored as lower-case.
* </p>
* @return bool true on success or false on failure.
*/
function define ($name, $value, $case_insensitive = false) {}
/**
* (PHP 4, PHP 5)<br/>
* Checks whether a given named constant exists
* @link http://php.net/manual/en/function.defined.php
* @param string $name <p>
* The constant name.
* </p>
* @return bool true if the named constant given by <i>name</i>
* has been defined, false otherwise.
*/
function defined ($name) {}
/**
* (PHP 4, PHP 5)<br/>
* Returns the name of the class of an object
* @link http://php.net/manual/en/function.get-class.php
* @param object $object [optional] <p>
* The tested object. This parameter may be omitted when inside a class.
* </p>
* @return string the name of the class of which <i>object</i> is an
* instance. Returns false if <i>object</i> is not an
* object.
* </p>
* <p>
* If <i>object</i> is omitted when inside a class, the
* name of that class is returned.
*/
function get_class ($object = null) {}
/**
* (PHP 5 >= 5.3.0)<br/>
* the "Late Static Binding" class name
* @link http://php.net/manual/en/function.get-called-class.php
* @return string the class name. Returns false if called from outside a class.
*/
function get_called_class () {}
/**
* (PHP 4, PHP 5)<br/>
* Retrieves the parent class name for object or class
* @link http://php.net/manual/en/function.get-parent-class.php
* @param mixed $object [optional] <p>
* The tested object or class name
* </p>
* @return string the name of the parent class of the class of which
* <i>object</i> is an instance or the name.
* </p>
* <p>
* If the object does not have a parent false will be returned.
* </p>
* <p>
* If called without parameter outside object, this function returns false.
*/
function get_parent_class ($object = null) {}
/**
* (PHP 4, PHP 5)<br/>
* Checks if the class method exists
* @link http://php.net/manual/en/function.method-exists.php
* @param mixed $object <p>
* An object instance or a class name
* </p>
* @param string $method_name <p>
* The method name
* </p>
* @return bool true if the method given by <i>method_name</i>
* has been defined for the given <i>object</i>, false
* otherwise.
*/
function method_exists ($object, $method_name) {}
/**
* (PHP 5 >= 5.1.0)<br/>
* Checks if the object or class has a property
* @link http://php.net/manual/en/function.property-exists.php
* @param mixed $class <p>
* The class name or an object of the class to test for
* </p>
* @param string $property <p>
* The name of the property
* </p>
* @return bool true if the property exists, false if it doesn't exist or
* null in case of an error.
*/
function property_exists ($class, $property) {}
/**
* (PHP 5 >= 5.4.0)<br/>
* Checks if the trait exists
* @param string $traitname Name of the trait to check
* @param bool $autoload [optional] Whether to autoload if not already loaded.
* @return boolean Returns TRUE if trait exists, FALSE if not, NULL in case of an error.
* @link http://www.php.net/manual/en/function.trait-exists.php
*/
function trait_exists($traitname, $autoload ) {}
/**
* (PHP 4, PHP 5)<br/>
* Checks if the class has been defined
* @link http://php.net/manual/en/function.class-exists.php
* @param string $class_name <p>
* The class name. The name is matched in a case-insensitive manner.
* </p>
* @param bool $autoload [optional] <p>
* Whether or not to call &link.autoload; by default.
* </p>
* @return bool true if <i>class_name</i> is a defined class,
* false otherwise.
*/
function class_exists ($class_name, $autoload = true) {}
/**
* (PHP 5 >= 5.0.2)<br/>
* Checks if the interface has been defined
* @link http://php.net/manual/en/function.interface-exists.php
* @param string $interface_name <p>
* The interface name
* </p>
* @param bool $autoload [optional] <p>
* Whether to call &link.autoload; or not by default.
* </p>
* @return bool true if the interface given by
* <i>interface_name</i> has been defined, false otherwise.
*/
function interface_exists ($interface_name, $autoload = true) {}
/**
* (PHP 4, PHP 5)<br/>
* Return true if the given function has been defined
* @link http://php.net/manual/en/function.function-exists.php
* @param string $function_name <p>
* The function name, as a string.
* </p>
* @return bool true if <i>function_name</i> exists and is a
* function, false otherwise.
* </p>
* <p>
* This function will return false for constructs, such as
* <b>include_once</b> and <b>echo</b>.
*/
function function_exists ($function_name) {}
/**
* (PHP 5 >= 5.3.0)<br/>
* Creates an alias for a class
* @link http://php.net/manual/en/function.class-alias.php
* @param string $original The original class.
* @param string $alias The alias name for the class.
* @param bool $autoload [optional] Whether to autoload if the original class is not found.
* @return bool true on success or false on failure.
*/
function class_alias ($original, $alias, $autoload = TRUE) {}
/**
* (PHP 4, PHP 5)<br/>
* Returns an array with the names of included or required files
* @link http://php.net/manual/en/function.get-included-files.php
* @return string[] an array of the names of all files.
* </p>
* <p>
* The script originally called is considered an "included file," so it will
* be listed together with the files referenced by
* <b>include</b> and family.
* </p>
* <p>
* Files that are included or required multiple times only show up once in
* the returned array.
*/
function get_included_files () {}
/**
* (PHP 4, PHP 5)<br/>
* Alias of <b>get_included_files</b>
* @link http://php.net/manual/en/function.get-required-files.php
* @return string[]
*/
function get_required_files () {}
/**
* (PHP 4, PHP 5)<br/>
* Checks if the object has this class as one of its parents
* @link http://php.net/manual/en/function.is-subclass-of.php
* @param mixed $object <p>
* A class name or an object instance
* </p>
* @param string $class_name <p>
* The class name
* </p>
* @return bool This function returns true if the object <i>object</i>,
* belongs to a class which is a subclass of
* <i>class_name</i>, false otherwise.
*/
function is_subclass_of ($object, $class_name) {}
/**
* (PHP 4 >= 4.2.0, PHP 5)<br/>
* Checks if the object is of this class or has this class as one of its parents
* @link http://php.net/manual/en/function.is-a.php
* @param object|string $object <p>
* The tested object
* </p>
* @param string $class_name <p>
* The class name
* </p>
* @param bool $allow_string [optional] <p>
* If this parameter set to <b>FALSE</b>, string class name as <em><b>object</b></em>
* is not allowed. This also prevents from calling autoloader if the class doesn't exist.
* </p>
* @return bool <b>TRUE</b> if the object is of this class or has this class as one of
* its parents, <b>FALSE</b> otherwise.
*/
function is_a ($object, $class_name, $allow_string = FALSE) {}
/**
* (PHP 4, PHP 5)<br/>
* Get the default properties of the class
* @link http://php.net/manual/en/function.get-class-vars.php
* @param string $class_name <p>
* The class name
* </p>
* @return array an associative array of declared properties visible from the
* current scope, with their default value.
* The resulting array elements are in the form of
* varname => value.
*/
function get_class_vars ($class_name) {}
/**
* (PHP 4, PHP 5)<br/>
* Gets the properties of the given object
* @link http://php.net/manual/en/function.get-object-vars.php
* @param object $object <p>
* An object instance.
* </p>
* @return array an associative array of defined object accessible non-static properties
* for the specified <i>object</i> in scope. If a property have
* not been assigned a value, it will be returned with a null value.
*/
function get_object_vars ($object) {}
/**
* (PHP 4, PHP 5)<br/>
* Gets the class methods' names
* @link http://php.net/manual/en/function.get-class-methods.php
* @param mixed $class_name <p>
* The class name or an object instance
* </p>
* @return array an array of method names defined for the class specified by
* <i>class_name</i>. In case of an error, it returns null.
*/
function get_class_methods ($class_name) {}
/**
* (PHP 4 >= 4.0.1, PHP 5)<br/>
* Generates a user-level error/warning/notice message
* @link http://php.net/manual/en/function.trigger-error.php
* @param string $error_msg <p>
* The designated error message for this error. It's limited to 1024
* characters in length. Any additional characters beyond 1024 will be
* truncated.
* </p>
* @param int $error_type [optional] <p>
* The designated error type for this error. It only works with the E_USER
* family of constants, and will default to <b>E_USER_NOTICE</b>.
* </p>
* @return bool This function returns false if wrong <i>error_type</i> is
* specified, true otherwise.
*/
function trigger_error ($error_msg, $error_type = E_USER_NOTICE) {}
/**
* (PHP 4, PHP 5)<br/>
* Alias of <b>trigger_error</b>
* @link http://php.net/manual/en/function.user-error.php
* @param $message
* @param $error_type [optional]
*/
function user_error ($message, $error_type) {}
/**
* (PHP 4 >= 4.0.1, PHP 5)<br/>
* Sets a user-defined error handler function
* @link http://php.net/manual/en/function.set-error-handler.php
* @param callback $error_handler <p>
* The user function needs to accept two parameters: the error code, and a
* string describing the error. Then there are three optional parameters
* that may be supplied: the filename in which the error occurred, the
* line number in which the error occurred, and the context in which the
* error occurred (an array that points to the active symbol table at the
* point the error occurred). The function can be shown as:
* </p>
* <p>
* <b>handler</b>
* <b>int<i>errno</i></b>
* <b>string<i>errstr</i></b>
* <b>string<i>errfile</i></b>
* <b>int<i>errline</i></b>
* <b>array<i>errcontext</i></b>
* <i>errno</i>
* The first parameter, <i>errno</i>, contains the
* level of the error raised, as an integer.
* @param int $error_types [optional] <p>
* Can be used to mask the triggering of the
* <i>error_handler</i> function just like the error_reporting ini setting
* controls which errors are shown. Without this mask set the
* <i>error_handler</i> will be called for every error
* regardless to the setting of the error_reporting setting.
* </p>
* @return mixed a string containing the previously defined error handler (if any). If
* the built-in error handler is used null is returned. null is also returned
* in case of an error such as an invalid callback. If the previous error handler
* was a class method, this function will return an indexed array with the class
* and the method name.
*/
function set_error_handler ($error_handler, $error_types = E_ALL | E_STRICT) {}
/**
* (PHP 4 >= 4.0.1, PHP 5)<br/>
* Restores the previous error handler function
* @link http://php.net/manual/en/function.restore-error-handler.php
* @return bool This function always returns true.
*/
function restore_error_handler () {}
/**
* (PHP 5)<br/>
* Sets a user-defined exception handler function
* @link http://php.net/manual/en/function.set-exception-handler.php
* @param callback $exception_handler <p>
* Name of the function to be called when an uncaught exception occurs.
* This function must be defined before calling
* <b>set_exception_handler</b>. This handler function
* needs to accept one parameter, which will be the exception object that
* was thrown.
* </p>
* @return callback the name of the previously defined exception handler, or null on error. If
* no previous handler was defined, null is also returned.
*/
function set_exception_handler ($exception_handler) {}
/**
* (PHP 5)<br/>
* Restores the previously defined exception handler function
* @link http://php.net/manual/en/function.restore-exception-handler.php
* @return bool This function always returns true.
*/
function restore_exception_handler () {}
/**
* (PHP 4, PHP 5)<br/>
* Returns an array with the name of the defined classes
* @link http://php.net/manual/en/function.get-declared-classes.php
* @return array an array of the names of the declared classes in the current
* script.
* </p>
* <p>
* Note that depending on what extensions you have compiled or
* loaded into PHP, additional classes could be present. This means that
* you will not be able to define your own classes using these
* names. There is a list of predefined classes in the Predefined Classes section of
* the appendices.
*/
function get_declared_classes () {}
/**
* (PHP 5)<br/>
* Returns an array of all declared interfaces
* @link http://php.net/manual/en/function.get-declared-interfaces.php
* @return array an array of the names of the declared interfaces in the current
* script.
*/
function get_declared_interfaces () {}
/**
* (PHP 5 >= 5.4.0)<br/>
* Returns an array of all declared traits
* @return array with names of all declared traits in values. Returns NULL in case of a failure.
* @link http://www.php.net/manual/en/function.get-declared-traits.php
* @see class_uses()
*/
function get_declared_traits() {}
/**
* (PHP 4 >= 4.0.4, PHP 5)<br/>
* Returns an array of all defined functions
* @link http://php.net/manual/en/function.get-defined-functions.php
* @return array an multidimensional array containing a list of all defined
* functions, both built-in (internal) and user-defined. The internal
* functions will be accessible via $arr["internal"], and
* the user defined ones using $arr["user"] (see example
* below).
*/
function get_defined_functions () {}
/**
* (PHP 4 >= 4.0.4, PHP 5)<br/>
* Returns an array of all defined variables
* @link http://php.net/manual/en/function.get-defined-vars.php
* @return array A multidimensional array with all the variables.
*/
function get_defined_vars () {}
/**
* (PHP 4 >= 4.0.1, PHP 5)<br/>
* Create an anonymous (lambda-style) function
* @link http://php.net/manual/en/function.create-function.php
* @param string $args <p>
* The function arguments.
* </p>
* @param string $code <p>
* The function code.
* </p>
* @return string a unique function name as a string, or false on error.
*/
function create_function ($args, $code) {}
/**
* (PHP 4 >= 4.0.2, PHP 5)<br/>
* Returns the resource type
* @link http://php.net/manual/en/function.get-resource-type.php
* @param resource $handle <p>
* The evaluated resource handle.
* </p>
* @return string If the given <i>handle</i> is a resource, this function
* will return a string representing its type. If the type is not identified
* by this function, the return value will be the string
* Unknown.
* </p>
* <p>
* This function will return false and generate an error if
* <i>handle</i> is not a resource.
*/
function get_resource_type ($handle) {}
/**
* (PHP 4, PHP 5)<br/>
* Returns an array with the names of all modules compiled and loaded
* @link http://php.net/manual/en/function.get-loaded-extensions.php
* @param bool $zend_extensions [optional] <p>
* Only return Zend extensions, if not then regular extensions, like
* mysqli are listed. Defaults to false (return regular extensions).
* </p>
* @return array an indexed array of all the modules names.
*/
function get_loaded_extensions ($zend_extensions = false) {}
/**
* (PHP 4, PHP 5)<br/>
* Find out whether an extension is loaded
* @link http://php.net/manual/en/function.extension-loaded.php
* @param string $name <p>
* The extension name.
* </p>
* <p>
* You can see the names of various extensions by using
* <b>phpinfo</b> or if you're using the
* CGI or CLI version of
* PHP you can use the -m switch to
* list all available extensions:
* <pre>
* $ php -m
* [PHP Modules]
* xml
* tokenizer
* standard
* sockets
* session
* posix
* pcre
* overload
* mysql
* mbstring
* ctype
* [Zend Modules]
* </pre>
* </p>
* @return bool true if the extension identified by <i>name</i>
* is loaded, false otherwise.
*/
function extension_loaded ($name) {}
/**
* (PHP 4, PHP 5)<br/>
* Returns an array with the names of the functions of a module
* @link http://php.net/manual/en/function.get-extension-funcs.php
* @param string $module_name <p>
* The module name.
* </p>
* <p>
* This parameter must be in lowercase.
* </p>
* @return array an array with all the functions, or false if
* <i>module_name</i> is not a valid extension.
*/
function get_extension_funcs ($module_name) {}
/**
* (PHP 4 >= 4.1.0, PHP 5)<br/>
* Returns an associative array with the names of all the constants and their values
* @link http://php.net/manual/en/function.get-defined-constants.php
* @param bool $categorize [optional] <p>
* Causing this function to return a multi-dimensional
* array with categories in the keys of the first dimension and constants
* and their values in the second dimension.
* <code>
* define("MY_CONSTANT", 1);
* print_r(get_defined_constants(true));
* </code>
* The above example will output something similar to:
* <pre>
* Array
* (
* [Core] => Array
* (
* [E_ERROR] => 1
* [E_WARNING] => 2
* [E_PARSE] => 4
* [E_NOTICE] => 8
* [E_CORE_ERROR] => 16
* [E_CORE_WARNING] => 32
* [E_COMPILE_ERROR] => 64
* [E_COMPILE_WARNING] => 128
* [E_USER_ERROR] => 256
* [E_USER_WARNING] => 512
* [E_USER_NOTICE] => 1024
* [E_ALL] => 2047
* [TRUE] => 1
* )
* [pcre] => Array
* (
* [PREG_PATTERN_ORDER] => 1
* [PREG_SET_ORDER] => 2
* [PREG_OFFSET_CAPTURE] => 256
* [PREG_SPLIT_NO_EMPTY] => 1
* [PREG_SPLIT_DELIM_CAPTURE] => 2
* [PREG_SPLIT_OFFSET_CAPTURE] => 4
* [PREG_GREP_INVERT] => 1
* )
* [user] => Array
* (
* [MY_CONSTANT] => 1
* )
* )
* </pre>
* </p>
* @return array
*/
function get_defined_constants ($categorize = false) {}
/**
* (PHP 4 >= 4.3.0, PHP 5)<br/>
* Generates a backtrace
* @link http://php.net/manual/en/function.debug-backtrace.php
* @param int $options [optional] <p>
* As of 5.3.6, this parameter is a bitmask for the following options:
* <table>
* <b>debug_backtrace</b> options
* <tr valign="top">
* <td>DEBUG_BACKTRACE_PROVIDE_OBJECT</td>
* <td>
* Whether or not to populate the "object" index.
* </td>
* </tr>
* <tr valign="top">
* <td>DEBUG_BACKTRACE_IGNORE_ARGS</td>
* <td>
* Whether or not to omit the "args" index, and thus all the function/method arguments,
* to save memory.
* </td>
* </tr>
* </table>
* Before 5.3.6, the only values recognized are true or false, which are the same as
* setting or not setting the <b>DEBUG_BACKTRACE_PROVIDE_OBJECT</b> option respectively.
* </p>
* @param int $limit [optional] <p>
* As of 5.4.0, this parameter can be used to limit the number of stack frames returned.
* By default (<i>limit</i>=0) it returns all stack frames.
* </p>
* @return array an array of associative arrays. The possible returned elements
* are as follows:
* </p>
* <p>
* <table>
* Possible returned elements from <b>debug_backtrace</b>
* <tr valign="top">
* <td>&Name;</td>
* <td>&Type;</td>
* <td>Description</td>
* </tr>
* <tr valign="top">
* <td>function</td>
* <td>string</td>
* <td>
* The current function name. See also
* __FUNCTION__.
* </td>
* </tr>
* <tr valign="top">
* <td>line</td>
* <td>integer</td>
* <td>
* The current line number. See also
* __LINE__.
* </td>
* </tr>
* <tr valign="top">
* <td>file</td>
* <td>string</td>
* <td>
* The current file name. See also
* __FILE__.
* </td>
* </tr>
* <tr valign="top">
* <td>class</td>
* <td>string</td>
* <td>
* The current class name. See also
* __CLASS__
* </td>
* </tr>
* <tr valign="top">
* <td>object</td>
* <td>object</td>
* <td>
* The current object.
* </td>
* </tr>
* <tr valign="top">
* <td>type</td>
* <td>string</td>
* <td>
* The current call type. If a method call, "->" is returned. If a static
* method call, "::" is returned. If a function call, nothing is returned.
* </td>
* </tr>
* <tr valign="top">
* <td>args</td>
* <td>array</td>
* <td>
* If inside a function, this lists the functions arguments. If
* inside an included file, this lists the included file name(s).
* </td>
* </tr>
* </table>
*/
function debug_backtrace ($provide_object = DEBUG_BACKTRACE_PROVIDE_OBJECT, $limit = 0) {}
const DEBUG_BACKTRACE_PROVIDE_OBJECT = 0;
const DEBUG_BACKTRACE_IGNORE_ARGS = 0;
/**
* (PHP 5)<br/>
* Prints a backtrace
* @link http://php.net/manual/en/function.debug-print-backtrace.php
* @param int $options [optional] <p>
* As of 5.3.6, this parameter is a bitmask for the following options:
* <table>
* <b>debug_print_backtrace</b> options
* <tr valign="top">
* <td>DEBUG_BACKTRACE_IGNORE_ARGS</td>
* <td>
* Whether or not to omit the "args" index, and thus all the function/method arguments,
* to save memory.
* </td>
* </tr>
* </table>
* </p>
* @param int $limit [optional] <p>
* As of 5.4.0, this parameter can be used to limit the number of stack frames printed.
* By default (<i>limit</i>=0) it prints all stack frames.
* </p>
* @return void
*/
function debug_print_backtrace ($options = 0, $limit = 0) {}
/**
* (PHP 5 >= 5.3.0)<br/>
* Forces collection of any existing garbage cycles
* @link http://php.net/manual/en/function.gc-collect-cycles.php
* @return int number of collected cycles.
*/
function gc_collect_cycles () {}
/**
* (PHP 5 >= 5.3.0)<br/>
* Returns status of the circular reference collector
* @link http://php.net/manual/en/function.gc-enabled.php
* @return bool true if the garbage collector is enabled, false otherwise.
*/
function gc_enabled () {}
/**
* (PHP 5 >= 5.3.0)<br/>
* Activates the circular reference collector
* @link http://php.net/manual/en/function.gc-enable.php
* @return void
*/
function gc_enable () {}