summaryrefslogtreecommitdiffstats
path: root/reflection/Core.txt
blob: eb3087a1226aa98424a4408b2ed0519d3f3c00b3 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
Extension [ <persistent> extension #0 Core version 5.5.0-dev ] {

  - INI {
    Entry [ highlight.comment <ALL> ]
      Current = '#FF8000'
    }
    Entry [ highlight.default <ALL> ]
      Current = '#0000BB'
    }
    Entry [ highlight.html <ALL> ]
      Current = '#000000'
    }
    Entry [ highlight.keyword <ALL> ]
      Current = '#007700'
    }
    Entry [ highlight.string <ALL> ]
      Current = '#DD0000'
    }
    Entry [ asp_tags <PERDIR,SYSTEM> ]
      Current = '0'
    }
    Entry [ display_errors <ALL> ]
      Current = '1'
    }
    Entry [ display_startup_errors <ALL> ]
      Current = '0'
    }
    Entry [ enable_dl <SYSTEM> ]
      Current = '1'
    }
    Entry [ expose_php <SYSTEM> ]
      Current = '1'
    }
    Entry [ docref_root <ALL> ]
      Current = ''
    }
    Entry [ docref_ext <ALL> ]
      Current = ''
    }
    Entry [ html_errors <ALL> ]
      Current = '0'
    }
    Entry [ xmlrpc_errors <SYSTEM> ]
      Current = '0'
    }
    Entry [ xmlrpc_error_number <ALL> ]
      Current = '0'
    }
    Entry [ max_input_time <PERDIR,SYSTEM> ]
      Current = '-1'
    }
    Entry [ ignore_user_abort <ALL> ]
      Current = '0'
    }
    Entry [ implicit_flush <ALL> ]
      Current = '1'
    }
    Entry [ log_errors <ALL> ]
      Current = '0'
    }
    Entry [ log_errors_max_len <ALL> ]
      Current = '1024'
    }
    Entry [ ignore_repeated_errors <ALL> ]
      Current = '0'
    }
    Entry [ ignore_repeated_source <ALL> ]
      Current = '0'
    }
    Entry [ report_memleaks <ALL> ]
      Current = '1'
    }
    Entry [ report_zend_debug <ALL> ]
      Current = '0'
    }
    Entry [ output_buffering <PERDIR,SYSTEM> ]
      Current = '0'
    }
    Entry [ output_handler <PERDIR,SYSTEM> ]
      Current = ''
    }
    Entry [ register_argc_argv <PERDIR,SYSTEM> ]
      Current = '1'
    }
    Entry [ auto_globals_jit <PERDIR,SYSTEM> ]
      Current = '1'
    }
    Entry [ short_open_tag <PERDIR,SYSTEM> ]
      Current = '1'
    }
    Entry [ sql.safe_mode <SYSTEM> ]
      Current = '0'
    }
    Entry [ track_errors <ALL> ]
      Current = '0'
    }
    Entry [ unserialize_callback_func <ALL> ]
      Current = ''
    }
    Entry [ serialize_precision <ALL> ]
      Current = '17'
    }
    Entry [ arg_separator.output <ALL> ]
      Current = '&'
    }
    Entry [ arg_separator.input <PERDIR,SYSTEM> ]
      Current = '&'
    }
    Entry [ auto_append_file <PERDIR,SYSTEM> ]
      Current = ''
    }
    Entry [ auto_prepend_file <PERDIR,SYSTEM> ]
      Current = ''
    }
    Entry [ doc_root <SYSTEM> ]
      Current = ''
    }
    Entry [ default_charset <ALL> ]
      Current = ''
    }
    Entry [ default_mimetype <ALL> ]
      Current = 'text/html'
    }
    Entry [ error_log <ALL> ]
      Current = ''
    }
    Entry [ extension_dir <SYSTEM> ]
      Current = '/usr/lib64/php/modules'
    }
    Entry [ include_path <ALL> ]
      Current = '.:/usr/share/pear:/usr/share/php'
    }
    Entry [ max_execution_time <ALL> ]
      Current = '0'
    }
    Entry [ open_basedir <ALL> ]
      Current = ''
    }
    Entry [ file_uploads <SYSTEM> ]
      Current = '1'
    }
    Entry [ upload_max_filesize <PERDIR,SYSTEM> ]
      Current = '2M'
    }
    Entry [ post_max_size <PERDIR,SYSTEM> ]
      Current = '8M'
    }
    Entry [ upload_tmp_dir <SYSTEM> ]
      Current = ''
    }
    Entry [ max_input_nesting_level <PERDIR,SYSTEM> ]
      Current = '64'
    }
    Entry [ max_input_vars <PERDIR,SYSTEM> ]
      Current = '1000'
    }
    Entry [ user_dir <SYSTEM> ]
      Current = ''
    }
    Entry [ variables_order <PERDIR,SYSTEM> ]
      Current = 'EGPCS'
    }
    Entry [ request_order <PERDIR,SYSTEM> ]
      Current = ''
    }
    Entry [ error_append_string <ALL> ]
      Current = ''
    }
    Entry [ error_prepend_string <ALL> ]
      Current = ''
    }
    Entry [ SMTP <ALL> ]
      Current = 'localhost'
    }
    Entry [ smtp_port <ALL> ]
      Current = '25'
    }
    Entry [ mail.add_x_header <PERDIR,SYSTEM> ]
      Current = '0'
    }
    Entry [ mail.log <PERDIR,SYSTEM> ]
      Current = ''
    }
    Entry [ browscap <SYSTEM> ]
      Current = ''
    }
    Entry [ memory_limit <ALL> ]
      Current = '-1'
    }
    Entry [ precision <ALL> ]
      Current = '14'
    }
    Entry [ sendmail_from <ALL> ]
      Current = ''
    }
    Entry [ sendmail_path <SYSTEM> ]
      Current = '/usr/sbin/sendmail -t -i '
    }
    Entry [ mail.force_extra_parameters <PERDIR,SYSTEM> ]
      Current = ''
    }
    Entry [ disable_functions <SYSTEM> ]
      Current = ''
    }
    Entry [ disable_classes <SYSTEM> ]
      Current = ''
    }
    Entry [ max_file_uploads <PERDIR,SYSTEM> ]
      Current = '20'
    }
    Entry [ allow_url_fopen <SYSTEM> ]
      Current = '1'
    }
    Entry [ allow_url_include <SYSTEM> ]
      Current = '0'
    }
    Entry [ enable_post_data_reading <PERDIR,SYSTEM> ]
      Current = '1'
    }
    Entry [ always_populate_raw_post_data <PERDIR,SYSTEM> ]
      Current = '0'
    }
    Entry [ realpath_cache_size <SYSTEM> ]
      Current = '16K'
    }
    Entry [ realpath_cache_ttl <SYSTEM> ]
      Current = '120'
    }
    Entry [ user_ini.filename <SYSTEM> ]
      Current = '.user.ini'
    }
    Entry [ user_ini.cache_ttl <SYSTEM> ]
      Current = '300'
    }
    Entry [ exit_on_timeout <ALL> ]
      Current = '0'
    }
    Entry [ error_reporting <ALL> ]
      Current = ''
    }
    Entry [ zend.enable_gc <ALL> ]
      Current = '1'
    }
    Entry [ zend.multibyte <PERDIR> ]
      Current = '0'
    }
    Entry [ zend.script_encoding <ALL> ]
      Current = ''
    }
    Entry [ zend.detect_unicode <ALL> ]
      Current = '1'
    }
  }

  - Constants [73] {
    Constant [ integer E_ERROR ] { 1 }
    Constant [ integer E_RECOVERABLE_ERROR ] { 4096 }
    Constant [ integer E_WARNING ] { 2 }
    Constant [ integer E_PARSE ] { 4 }
    Constant [ integer E_NOTICE ] { 8 }
    Constant [ integer E_STRICT ] { 2048 }
    Constant [ integer E_DEPRECATED ] { 8192 }
    Constant [ integer E_CORE_ERROR ] { 16 }
    Constant [ integer E_CORE_WARNING ] { 32 }
    Constant [ integer E_COMPILE_ERROR ] { 64 }
    Constant [ integer E_COMPILE_WARNING ] { 128 }
    Constant [ integer E_USER_ERROR ] { 256 }
    Constant [ integer E_USER_WARNING ] { 512 }
    Constant [ integer E_USER_NOTICE ] { 1024 }
    Constant [ integer E_USER_DEPRECATED ] { 16384 }
    Constant [ integer E_ALL ] { 32767 }
    Constant [ integer DEBUG_BACKTRACE_PROVIDE_OBJECT ] { 1 }
    Constant [ integer DEBUG_BACKTRACE_IGNORE_ARGS ] { 2 }
    Constant [ boolean TRUE ] { 1 }
    Constant [ boolean FALSE ] {  }
    Constant [ null NULL ] {  }
    Constant [ boolean ZEND_THREAD_SAFE ] {  }
    Constant [ boolean ZEND_DEBUG_BUILD ] {  }
    Constant [ string PHP_VERSION ] { 5.5.0-dev }
    Constant [ integer PHP_MAJOR_VERSION ] { 5 }
    Constant [ integer PHP_MINOR_VERSION ] { 5 }
    Constant [ integer PHP_RELEASE_VERSION ] { 0 }
    Constant [ string PHP_EXTRA_VERSION ] { -dev }
    Constant [ integer PHP_VERSION_ID ] { 50500 }
    Constant [ integer PHP_ZTS ] { 0 }
    Constant [ integer PHP_DEBUG ] { 0 }
    Constant [ string PHP_OS ] { Linux }
    Constant [ string PHP_SAPI ] { cli }
    Constant [ string DEFAULT_INCLUDE_PATH ] { .:/usr/share/pear:/usr/share/php }
    Constant [ string PEAR_INSTALL_DIR ] { /usr/share/pear }
    Constant [ string PEAR_EXTENSION_DIR ] { /usr/lib64/php/modules }
    Constant [ string PHP_EXTENSION_DIR ] { /usr/lib64/php/modules }
    Constant [ string PHP_PREFIX ] { /usr }
    Constant [ string PHP_BINDIR ] { /usr/bin }
    Constant [ string PHP_MANDIR ] { /usr/share/man }
    Constant [ string PHP_LIBDIR ] { /usr/lib64/php }
    Constant [ string PHP_DATADIR ] { /usr/share }
    Constant [ string PHP_SYSCONFDIR ] { /etc }
    Constant [ string PHP_LOCALSTATEDIR ] { /var }
    Constant [ string PHP_CONFIG_FILE_PATH ] { /etc }
    Constant [ string PHP_CONFIG_FILE_SCAN_DIR ] { /etc/php.d }
    Constant [ string PHP_SHLIB_SUFFIX ] { so }
    Constant [ string PHP_EOL ] { 
 }
    Constant [ integer PHP_MAXPATHLEN ] { 4096 }
    Constant [ integer PHP_INT_MAX ] { 9223372036854775807 }
    Constant [ integer PHP_INT_SIZE ] { 8 }
    Constant [ string PHP_BINARY ] { /usr/bin/php }
    Constant [ integer PHP_OUTPUT_HANDLER_START ] { 1 }
    Constant [ integer PHP_OUTPUT_HANDLER_WRITE ] { 0 }
    Constant [ integer PHP_OUTPUT_HANDLER_FLUSH ] { 4 }
    Constant [ integer PHP_OUTPUT_HANDLER_CLEAN ] { 2 }
    Constant [ integer PHP_OUTPUT_HANDLER_FINAL ] { 8 }
    Constant [ integer PHP_OUTPUT_HANDLER_CONT ] { 0 }
    Constant [ integer PHP_OUTPUT_HANDLER_END ] { 8 }
    Constant [ integer PHP_OUTPUT_HANDLER_CLEANABLE ] { 16 }
    Constant [ integer PHP_OUTPUT_HANDLER_FLUSHABLE ] { 32 }
    Constant [ integer PHP_OUTPUT_HANDLER_REMOVABLE ] { 64 }
    Constant [ integer PHP_OUTPUT_HANDLER_STDFLAGS ] { 112 }
    Constant [ integer PHP_OUTPUT_HANDLER_STARTED ] { 4096 }
    Constant [ integer PHP_OUTPUT_HANDLER_DISABLED ] { 8192 }
    Constant [ integer UPLOAD_ERR_OK ] { 0 }
    Constant [ integer UPLOAD_ERR_INI_SIZE ] { 1 }
    Constant [ integer UPLOAD_ERR_FORM_SIZE ] { 2 }
    Constant [ integer UPLOAD_ERR_PARTIAL ] { 3 }
    Constant [ integer UPLOAD_ERR_NO_FILE ] { 4 }
    Constant [ integer UPLOAD_ERR_NO_TMP_DIR ] { 6 }
    Constant [ integer UPLOAD_ERR_CANT_WRITE ] { 7 }
    Constant [ integer UPLOAD_ERR_EXTENSION ] { 8 }
  }

  - Functions {
    Function [ <internal:Core> function zend_version ] {

      - Parameters [0] {
      }
    }
    Function [ <internal:Core> function func_num_args ] {

      - Parameters [0] {
      }
    }
    Function [ <internal:Core> function func_get_arg ] {

      - Parameters [1] {
        Parameter #0 [ <required> $arg_num ]
      }
    }
    Function [ <internal:Core> function func_get_args ] {

      - Parameters [0] {
      }
    }
    Function [ <internal:Core> function strlen ] {

      - Parameters [1] {
        Parameter #0 [ <required> $str ]
      }
    }
    Function [ <internal:Core> function strcmp ] {

      - Parameters [2] {
        Parameter #0 [ <required> $str1 ]
        Parameter #1 [ <required> $str2 ]
      }
    }
    Function [ <internal:Core> function strncmp ] {

      - Parameters [3] {
        Parameter #0 [ <required> $str1 ]
        Parameter #1 [ <required> $str2 ]
        Parameter #2 [ <required> $len ]
      }
    }
    Function [ <internal:Core> function strcasecmp ] {

      - Parameters [2] {
        Parameter #0 [ <required> $str1 ]
        Parameter #1 [ <required> $str2 ]
      }
    }
    Function [ <internal:Core> function strncasecmp ] {

      - Parameters [3] {
        Parameter #0 [ <required> $str1 ]
        Parameter #1 [ <required> $str2 ]
        Parameter #2 [ <required> $len ]
      }
    }
    Function [ <internal:Core> function each ] {

      - Parameters [1] {
        Parameter #0 [ <required> &$arr ]
      }
    }
    Function [ <internal:Core> function error_reporting ] {

      - Parameters [1] {
        Parameter #0 [ <optional> $new_error_level ]
      }
    }
    Function [ <internal:Core> function define ] {

      - Parameters [3] {
        Parameter #0 [ <required> $constant_name ]
        Parameter #1 [ <required> $value ]
        Parameter #2 [ <required> $case_insensitive ]
      }
    }
    Function [ <internal:Core> function defined ] {

      - Parameters [1] {
        Parameter #0 [ <required> $constant_name ]
      }
    }
    Function [ <internal:Core> function get_class ] {

      - Parameters [1] {
        Parameter #0 [ <optional> $object ]
      }
    }
    Function [ <internal:Core> function get_called_class ] {

      - Parameters [0] {
      }
    }
    Function [ <internal:Core> function get_parent_class ] {

      - Parameters [1] {
        Parameter #0 [ <optional> $object ]
      }
    }
    Function [ <internal:Core> function method_exists ] {

      - Parameters [2] {
        Parameter #0 [ <required> $object ]
        Parameter #1 [ <required> $method ]
      }
    }
    Function [ <internal:Core> function property_exists ] {

      - Parameters [2] {
        Parameter #0 [ <required> $object_or_class ]
        Parameter #1 [ <required> $property_name ]
      }
    }
    Function [ <internal:Core> function class_exists ] {

      - Parameters [2] {
        Parameter #0 [ <required> $classname ]
        Parameter #1 [ <optional> $autoload ]
      }
    }
    Function [ <internal:Core> function interface_exists ] {

      - Parameters [2] {
        Parameter #0 [ <required> $classname ]
        Parameter #1 [ <optional> $autoload ]
      }
    }
    Function [ <internal:Core> function trait_exists ] {

      - Parameters [2] {
        Parameter #0 [ <required> $traitname ]
        Parameter #1 [ <optional> $autoload ]
      }
    }
    Function [ <internal:Core> function function_exists ] {

      - Parameters [1] {
        Parameter #0 [ <required> $function_name ]
      }
    }
    Function [ <internal:Core> function class_alias ] {

      - Parameters [3] {
        Parameter #0 [ <required> $user_class_name ]
        Parameter #1 [ <required> $alias_name ]
        Parameter #2 [ <optional> $autoload ]
      }
    }
    Function [ <internal:Core> function get_included_files ] {

      - Parameters [0] {
      }
    }
    Function [ <internal:Core> function get_required_files ] {

      - Parameters [0] {
      }
    }
    Function [ <internal:Core> function is_subclass_of ] {

      - Parameters [3] {
        Parameter #0 [ <required> $object ]
        Parameter #1 [ <required> $class_name ]
        Parameter #2 [ <optional> $allow_string ]
      }
    }
    Function [ <internal:Core> function is_a ] {

      - Parameters [3] {
        Parameter #0 [ <required> $object ]
        Parameter #1 [ <required> $class_name ]
        Parameter #2 [ <optional> $allow_string ]
      }
    }
    Function [ <internal:Core> function get_class_vars ] {

      - Parameters [1] {
        Parameter #0 [ <required> $class_name ]
      }
    }
    Function [ <internal:Core> function get_object_vars ] {

      - Parameters [1] {
        Parameter #0 [ <required> $obj ]
      }
    }
    Function [ <internal:Core> function get_class_methods ] {

      - Parameters [1] {
        Parameter #0 [ <required> $class ]
      }
    }
    Function [ <internal:Core> function trigger_error ] {

      - Parameters [2] {
        Parameter #0 [ <required> $message ]
        Parameter #1 [ <optional> $error_type ]
      }
    }
    Function [ <internal:Core> function user_error ] {

      - Parameters [2] {
        Parameter #0 [ <required> $message ]
        Parameter #1 [ <optional> $error_type ]
      }
    }
    Function [ <internal:Core> function set_error_handler ] {

      - Parameters [2] {
        Parameter #0 [ <required> $error_handler ]
        Parameter #1 [ <optional> $error_types ]
      }
    }
    Function [ <internal:Core> function restore_error_handler ] {

      - Parameters [0] {
      }
    }
    Function [ <internal:Core> function set_exception_handler ] {

      - Parameters [1] {
        Parameter #0 [ <required> $exception_handler ]
      }
    }
    Function [ <internal:Core> function restore_exception_handler ] {

      - Parameters [0] {
      }
    }
    Function [ <internal:Core> function get_declared_classes ] {

      - Parameters [0] {
      }
    }
    Function [ <internal:Core> function get_declared_traits ] {

      - Parameters [0] {
      }
    }
    Function [ <internal:Core> function get_declared_interfaces ] {

      - Parameters [0] {
      }
    }
    Function [ <internal:Core> function get_defined_functions ] {

      - Parameters [0] {
      }
    }
    Function [ <internal:Core> function get_defined_vars ] {

      - Parameters [0] {
      }
    }
    Function [ <internal:Core> function create_function ] {

      - Parameters [2] {
        Parameter #0 [ <required> $args ]
        Parameter #1 [ <required> $code ]
      }
    }
    Function [ <internal:Core> function get_resource_type ] {

      - Parameters [1] {
        Parameter #0 [ <required> $res ]
      }
    }
    Function [ <internal:Core> function get_loaded_extensions ] {

      - Parameters [1] {
        Parameter #0 [ <optional> $zend_extensions ]
      }
    }
    Function [ <internal:Core> function extension_loaded ] {

      - Parameters [1] {
        Parameter #0 [ <required> $extension_name ]
      }
    }
    Function [ <internal:Core> function get_extension_funcs ] {

      - Parameters [1] {
        Parameter #0 [ <required> $extension_name ]
      }
    }
    Function [ <internal:Core> function get_defined_constants ] {

      - Parameters [1] {
        Parameter #0 [ <optional> $categorize ]
      }
    }
    Function [ <internal:Core> function debug_backtrace ] {

      - Parameters [2] {
        Parameter #0 [ <optional> $options ]
        Parameter #1 [ <optional> $limit ]
      }
    }
    Function [ <internal:Core> function debug_print_backtrace ] {

      - Parameters [1] {
        Parameter #0 [ <optional> $options ]
      }
    }
    Function [ <internal:Core> function gc_collect_cycles ] {

      - Parameters [0] {
      }
    }
    Function [ <internal:Core> function gc_enabled ] {

      - Parameters [0] {
      }
    }
    Function [ <internal:Core> function gc_enable ] {

      - Parameters [0] {
      }
    }
    Function [ <internal:Core> function gc_disable ] {

      - Parameters [0] {
      }
    }
  }

  - Classes [10] {
    Class [ <internal:Core> class stdClass ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [0] {
      }
    }

    Interface [ <internal:Core> interface Traversable ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [0] {
      }
    }

    Interface [ <internal:Core> interface IteratorAggregate extends Traversable ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [1] {
        Method [ <internal:Core> abstract public method getIterator ] {
        }
      }
    }

    Interface [ <internal:Core> interface Iterator extends Traversable ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [5] {
        Method [ <internal:Core> abstract public method current ] {
        }

        Method [ <internal:Core> abstract public method next ] {
        }

        Method [ <internal:Core> abstract public method key ] {
        }

        Method [ <internal:Core> abstract public method valid ] {
        }

        Method [ <internal:Core> abstract public method rewind ] {
        }
      }
    }

    Interface [ <internal:Core> interface ArrayAccess ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [4] {
        Method [ <internal:Core> abstract public method offsetExists ] {

          - Parameters [1] {
            Parameter #0 [ <required> $offset ]
          }
        }

        Method [ <internal:Core> abstract public method offsetGet ] {

          - Parameters [1] {
            Parameter #0 [ <required> $offset ]
          }
        }

        Method [ <internal:Core> abstract public method offsetSet ] {

          - Parameters [2] {
            Parameter #0 [ <required> $offset ]
            Parameter #1 [ <required> $value ]
          }
        }

        Method [ <internal:Core> abstract public method offsetUnset ] {

          - Parameters [1] {
            Parameter #0 [ <required> $offset ]
          }
        }
      }
    }

    Interface [ <internal:Core> interface Serializable ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [2] {
        Method [ <internal:Core> abstract public method serialize ] {
        }

        Method [ <internal:Core, ctor> abstract public method unserialize ] {

          - Parameters [1] {
            Parameter #0 [ <required> $serialized ]
          }
        }
      }
    }

    Class [ <internal:Core> class Exception ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [7] {
        Property [ <default> protected $message ]
        Property [ <default> private $string ]
        Property [ <default> protected $code ]
        Property [ <default> protected $file ]
        Property [ <default> protected $line ]
        Property [ <default> private $trace ]
        Property [ <default> private $previous ]
      }

      - Methods [10] {
        Method [ <internal:Core> final private method __clone ] {
        }

        Method [ <internal:Core, ctor> public method __construct ] {

          - Parameters [3] {
            Parameter #0 [ <optional> $message ]
            Parameter #1 [ <optional> $code ]
            Parameter #2 [ <optional> $previous ]
          }
        }

        Method [ <internal:Core> final public method getMessage ] {
        }

        Method [ <internal:Core> final public method getCode ] {
        }

        Method [ <internal:Core> final public method getFile ] {
        }

        Method [ <internal:Core> final public method getLine ] {
        }

        Method [ <internal:Core> final public method getTrace ] {
        }

        Method [ <internal:Core> final public method getPrevious ] {
        }

        Method [ <internal:Core> final public method getTraceAsString ] {
        }

        Method [ <internal:Core> public method __toString ] {
        }
      }
    }

    Class [ <internal:Core> class ErrorException extends Exception ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [5] {
        Property [ <default> protected $message ]
        Property [ <default> protected $code ]
        Property [ <default> protected $file ]
        Property [ <default> protected $line ]
        Property [ <default> protected $severity ]
      }

      - Methods [10] {
        Method [ <internal:Core, overwrites Exception, ctor> public method __construct ] {

          - Parameters [6] {
            Parameter #0 [ <optional> $message ]
            Parameter #1 [ <optional> $code ]
            Parameter #2 [ <optional> $severity ]
            Parameter #3 [ <optional> $filename ]
            Parameter #4 [ <optional> $lineno ]
            Parameter #5 [ <optional> $previous ]
          }
        }

        Method [ <internal:Core> final public method getSeverity ] {
        }

        Method [ <internal:Core, inherits Exception> final public method getMessage ] {
        }

        Method [ <internal:Core, inherits Exception> final public method getCode ] {
        }

        Method [ <internal:Core, inherits Exception> final public method getFile ] {
        }

        Method [ <internal:Core, inherits Exception> final public method getLine ] {
        }

        Method [ <internal:Core, inherits Exception> final public method getTrace ] {
        }

        Method [ <internal:Core, inherits Exception> final public method getPrevious ] {
        }

        Method [ <internal:Core, inherits Exception> final public method getTraceAsString ] {
        }

        Method [ <internal:Core, inherits Exception> public method __toString ] {
        }
      }
    }

    Class [ <internal:Core> final class Closure ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [1] {
        Method [ <internal:Core> static public method bind ] {

          - Parameters [3] {
            Parameter #0 [ <required> $closure ]
            Parameter #1 [ <required> $newthis ]
            Parameter #2 [ <optional> $newscope ]
          }
        }
      }

      - Properties [0] {
      }

      - Methods [2] {
        Method [ <internal:Core, ctor> private method __construct ] {
        }

        Method [ <internal:Core> public method bindTo ] {

          - Parameters [2] {
            Parameter #0 [ <required> $newthis ]
            Parameter #1 [ <optional> $newscope ]
          }
        }
      }
    }

    Class [ <internal:Core> <iterateable> final class Generator implements Iterator, Traversable ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [7] {
        Method [ <internal:Core, prototype Iterator> public method rewind ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:Core, prototype Iterator> public method valid ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:Core, prototype Iterator> public method current ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:Core, prototype Iterator> public method key ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:Core, prototype Iterator> public method next ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:Core> public method send ] {

          - Parameters [1] {
            Parameter #0 [ <required> $value ]
          }
        }

        Method [ <internal:Core> public method __wakeup ] {

          - Parameters [0] {
          }
        }
      }
    }
  }
}