-
Notifications
You must be signed in to change notification settings - Fork 8
/
Php8StubsMap.php
2859 lines (2842 loc) · 176 KB
/
Php8StubsMap.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 declare(strict_types = 1);
namespace PHPStan;
class Php8StubsMap
{
/** @var array<string, string> */
public $classes;
/** @var array<string, string> */
public $functions;
public function __construct(int $phpVersionId)
{
$classes = [
'addressinfo' => 'stubs/ext/sockets/AddressInfo.php',
'appenditerator' => 'stubs/ext/spl/AppendIterator.php',
'argumentcounterror' => 'stubs/Zend/ArgumentCountError.php',
'arithmeticerror' => 'stubs/Zend/ArithmeticError.php',
'arrayaccess' => 'stubs/Zend/ArrayAccess.php',
'arrayiterator' => 'stubs/ext/spl/ArrayIterator.php',
'arrayobject' => 'stubs/ext/spl/ArrayObject.php',
'attribute' => 'stubs/Zend/Attribute.php',
'cachingiterator' => 'stubs/ext/spl/CachingIterator.php',
'callbackfilteriterator' => 'stubs/ext/spl/CallbackFilterIterator.php',
'closedgeneratorexception' => 'stubs/Zend/ClosedGeneratorException.php',
'closure' => 'stubs/Zend/Closure.php',
'collator' => 'stubs/ext/intl/collator/Collator.php',
'com' => 'stubs/ext/com_dotnet/com.php',
'com_exception' => 'stubs/ext/com_dotnet/com_exception.php',
'compersisthelper' => 'stubs/ext/com_dotnet/COMPersistHelper.php',
'compileerror' => 'stubs/Zend/CompileError.php',
'countable' => 'stubs/Zend/Countable.php',
'curlfile' => 'stubs/ext/curl/CURLFile.php',
'curlhandle' => 'stubs/ext/curl/CurlHandle.php',
'curlmultihandle' => 'stubs/ext/curl/CurlMultiHandle.php',
'curlsharehandle' => 'stubs/ext/curl/CurlShareHandle.php',
'dateinterval' => 'stubs/ext/date/DateInterval.php',
'dateperiod' => 'stubs/ext/date/DatePeriod.php',
'datetime' => 'stubs/ext/date/DateTime.php',
'datetimeimmutable' => 'stubs/ext/date/DateTimeImmutable.php',
'datetimeinterface' => 'stubs/ext/date/DateTimeInterface.php',
'datetimezone' => 'stubs/ext/date/DateTimeZone.php',
'deflatecontext' => 'stubs/ext/zlib/DeflateContext.php',
'directory' => 'stubs/ext/standard/Directory.php',
'directoryiterator' => 'stubs/ext/spl/DirectoryIterator.php',
'divisionbyzeroerror' => 'stubs/Zend/DivisionByZeroError.php',
'domattr' => 'stubs/ext/dom/DOMAttr.php',
'domcdatasection' => 'stubs/ext/dom/DOMCdataSection.php',
'domcharacterdata' => 'stubs/ext/dom/DOMCharacterData.php',
'domchildnode' => 'stubs/ext/dom/DOMChildNode.php',
'domcomment' => 'stubs/ext/dom/DOMComment.php',
'domdocument' => 'stubs/ext/dom/DOMDocument.php',
'domdocumentfragment' => 'stubs/ext/dom/DOMDocumentFragment.php',
'domdocumenttype' => 'stubs/ext/dom/DOMDocumentType.php',
'domelement' => 'stubs/ext/dom/DOMElement.php',
'domentity' => 'stubs/ext/dom/DOMEntity.php',
'domentityreference' => 'stubs/ext/dom/DOMEntityReference.php',
'domexception' => 'stubs/ext/dom/DOMException.php',
'domimplementation' => 'stubs/ext/dom/DOMImplementation.php',
'domnamednodemap' => 'stubs/ext/dom/DOMNamedNodeMap.php',
'domnamespacenode' => 'stubs/ext/dom/DOMNameSpaceNode.php',
'domnode' => 'stubs/ext/dom/DOMNode.php',
'domnodelist' => 'stubs/ext/dom/DOMNodeList.php',
'domnotation' => 'stubs/ext/dom/DOMNotation.php',
'domparentnode' => 'stubs/ext/dom/DOMParentNode.php',
'domprocessinginstruction' => 'stubs/ext/dom/DOMProcessingInstruction.php',
'domtext' => 'stubs/ext/dom/DOMText.php',
'domxpath' => 'stubs/ext/dom/DOMXPath.php',
'dotnet' => 'stubs/ext/com_dotnet/dotnet.php',
'emptyiterator' => 'stubs/ext/spl/EmptyIterator.php',
'enchantbroker' => 'stubs/ext/enchant/EnchantBroker.php',
'enchantdictionary' => 'stubs/ext/enchant/EnchantDictionary.php',
'error' => 'stubs/Zend/Error.php',
'errorexception' => 'stubs/Zend/ErrorException.php',
'exception' => 'stubs/Zend/Exception.php',
'ffi' => 'stubs/ext/ffi/FFI.php',
'ffi\\cdata' => 'stubs/ext/ffi/FFI/CData.php',
'ffi\\ctype' => 'stubs/ext/ffi/FFI/CType.php',
'ffi\\exception' => 'stubs/ext/ffi/FFI/Exception.php',
'ffi\\parserexception' => 'stubs/ext/ffi/FFI/ParserException.php',
'filesystemiterator' => 'stubs/ext/spl/FilesystemIterator.php',
'filteriterator' => 'stubs/ext/spl/FilterIterator.php',
'finfo' => 'stubs/ext/fileinfo/finfo.php',
'gdimage' => 'stubs/ext/gd/GdImage.php',
'generator' => 'stubs/Zend/Generator.php',
'globiterator' => 'stubs/ext/spl/GlobIterator.php',
'gmp' => 'stubs/ext/gmp/GMP.php',
'hashcontext' => 'stubs/ext/hash/HashContext.php',
'infiniteiterator' => 'stubs/ext/spl/InfiniteIterator.php',
'inflatecontext' => 'stubs/ext/zlib/InflateContext.php',
'internaliterator' => 'stubs/Zend/InternalIterator.php',
'intlbreakiterator' => 'stubs/ext/intl/breakiterator/IntlBreakIterator.php',
'intlcalendar' => 'stubs/ext/intl/calendar/IntlCalendar.php',
'intlchar' => 'stubs/ext/intl/uchar/IntlChar.php',
'intlcodepointbreakiterator' => 'stubs/ext/intl/breakiterator/IntlCodePointBreakIterator.php',
'intldateformatter' => 'stubs/ext/intl/dateformat/IntlDateFormatter.php',
'intlexception' => 'stubs/ext/intl/IntlException.php',
'intlgregoriancalendar' => 'stubs/ext/intl/calendar/IntlGregorianCalendar.php',
'intliterator' => 'stubs/ext/intl/common/IntlIterator.php',
'intlpartsiterator' => 'stubs/ext/intl/breakiterator/IntlPartsIterator.php',
'intlrulebasedbreakiterator' => 'stubs/ext/intl/breakiterator/IntlRuleBasedBreakIterator.php',
'intltimezone' => 'stubs/ext/intl/timezone/IntlTimeZone.php',
'iterator' => 'stubs/Zend/Iterator.php',
'iteratoraggregate' => 'stubs/Zend/IteratorAggregate.php',
'iteratoriterator' => 'stubs/ext/spl/IteratorIterator.php',
'jsonexception' => 'stubs/ext/json/JsonException.php',
'jsonserializable' => 'stubs/ext/json/JsonSerializable.php',
'libxmlerror' => 'stubs/ext/libxml/LibXMLError.php',
'limititerator' => 'stubs/ext/spl/LimitIterator.php',
'locale' => 'stubs/ext/intl/locale/Locale.php',
'messageformatter' => 'stubs/ext/intl/msgformat/MessageFormatter.php',
'multipleiterator' => 'stubs/ext/spl/MultipleIterator.php',
'mysqli' => 'stubs/ext/mysqli/mysqli.php',
'mysqli_driver' => 'stubs/ext/mysqli/mysqli_driver.php',
'mysqli_result' => 'stubs/ext/mysqli/mysqli_result.php',
'mysqli_sql_exception' => 'stubs/ext/mysqli/mysqli_sql_exception.php',
'mysqli_stmt' => 'stubs/ext/mysqli/mysqli_stmt.php',
'mysqli_warning' => 'stubs/ext/mysqli/mysqli_warning.php',
'norewinditerator' => 'stubs/ext/spl/NoRewindIterator.php',
'normalizer' => 'stubs/ext/intl/normalizer/Normalizer.php',
'numberformatter' => 'stubs/ext/intl/formatter/NumberFormatter.php',
'ocicollection' => 'stubs/ext/oci8/OCICollection.php',
'ocilob' => 'stubs/ext/oci8/OCILob.php',
'opensslasymmetrickey' => 'stubs/ext/openssl/OpenSSLAsymmetricKey.php',
'opensslcertificate' => 'stubs/ext/openssl/OpenSSLCertificate.php',
'opensslcertificatesigningrequest' => 'stubs/ext/openssl/OpenSSLCertificateSigningRequest.php',
'outeriterator' => 'stubs/ext/spl/OuterIterator.php',
'parentiterator' => 'stubs/ext/spl/ParentIterator.php',
'parseerror' => 'stubs/Zend/ParseError.php',
'pdo' => 'stubs/ext/pdo/PDO.php',
'pdo_pgsql_ext' => 'stubs/ext/pdo_pgsql/PDO_PGSql_Ext.php',
'pdo_sqlite_ext' => 'stubs/ext/pdo_sqlite/PDO_SQLite_Ext.php',
'pdoexception' => 'stubs/ext/pdo/PDOException.php',
'pdorow' => 'stubs/ext/pdo/PDORow.php',
'pdostatement' => 'stubs/ext/pdo/PDOStatement.php',
'phar' => 'stubs/ext/phar/Phar.php',
'phardata' => 'stubs/ext/phar/PharData.php',
'pharexception' => 'stubs/ext/phar/PharException.php',
'pharfileinfo' => 'stubs/ext/phar/PharFileInfo.php',
'php_user_filter' => 'stubs/ext/standard/php_user_filter.php',
'phptoken' => 'stubs/ext/tokenizer/PhpToken.php',
'recursivearrayiterator' => 'stubs/ext/spl/RecursiveArrayIterator.php',
'recursivecachingiterator' => 'stubs/ext/spl/RecursiveCachingIterator.php',
'recursivecallbackfilteriterator' => 'stubs/ext/spl/RecursiveCallbackFilterIterator.php',
'recursivedirectoryiterator' => 'stubs/ext/spl/RecursiveDirectoryIterator.php',
'recursivefilteriterator' => 'stubs/ext/spl/RecursiveFilterIterator.php',
'recursiveiterator' => 'stubs/ext/spl/RecursiveIterator.php',
'recursiveiteratoriterator' => 'stubs/ext/spl/RecursiveIteratorIterator.php',
'recursiveregexiterator' => 'stubs/ext/spl/RecursiveRegexIterator.php',
'recursivetreeiterator' => 'stubs/ext/spl/RecursiveTreeIterator.php',
'reflection' => 'stubs/ext/reflection/Reflection.php',
'reflectionattribute' => 'stubs/ext/reflection/ReflectionAttribute.php',
'reflectionclass' => 'stubs/ext/reflection/ReflectionClass.php',
'reflectionclassconstant' => 'stubs/ext/reflection/ReflectionClassConstant.php',
'reflectionexception' => 'stubs/ext/reflection/ReflectionException.php',
'reflectionextension' => 'stubs/ext/reflection/ReflectionExtension.php',
'reflectionfunction' => 'stubs/ext/reflection/ReflectionFunction.php',
'reflectionfunctionabstract' => 'stubs/ext/reflection/ReflectionFunctionAbstract.php',
'reflectiongenerator' => 'stubs/ext/reflection/ReflectionGenerator.php',
'reflectionmethod' => 'stubs/ext/reflection/ReflectionMethod.php',
'reflectionnamedtype' => 'stubs/ext/reflection/ReflectionNamedType.php',
'reflectionobject' => 'stubs/ext/reflection/ReflectionObject.php',
'reflectionparameter' => 'stubs/ext/reflection/ReflectionParameter.php',
'reflectionproperty' => 'stubs/ext/reflection/ReflectionProperty.php',
'reflectionreference' => 'stubs/ext/reflection/ReflectionReference.php',
'reflectiontype' => 'stubs/ext/reflection/ReflectionType.php',
'reflectionuniontype' => 'stubs/ext/reflection/ReflectionUnionType.php',
'reflectionzendextension' => 'stubs/ext/reflection/ReflectionZendExtension.php',
'reflector' => 'stubs/ext/reflection/Reflector.php',
'regexiterator' => 'stubs/ext/spl/RegexIterator.php',
'resourcebundle' => 'stubs/ext/intl/resourcebundle/ResourceBundle.php',
'seekableiterator' => 'stubs/ext/spl/SeekableIterator.php',
'serializable' => 'stubs/Zend/Serializable.php',
'sessionhandler' => 'stubs/ext/session/SessionHandler.php',
'sessionhandlerinterface' => 'stubs/ext/session/SessionHandlerInterface.php',
'sessionidinterface' => 'stubs/ext/session/SessionIdInterface.php',
'sessionupdatetimestamphandlerinterface' => 'stubs/ext/session/SessionUpdateTimestampHandlerInterface.php',
'shmop' => 'stubs/ext/shmop/Shmop.php',
'simplexmlelement' => 'stubs/ext/simplexml/SimpleXMLElement.php',
'simplexmliterator' => 'stubs/ext/simplexml/SimpleXMLIterator.php',
'snmp' => 'stubs/ext/snmp/SNMP.php',
'snmpexception' => 'stubs/ext/snmp/SNMPException.php',
'soapclient' => 'stubs/ext/soap/SoapClient.php',
'soapfault' => 'stubs/ext/soap/SoapFault.php',
'soapheader' => 'stubs/ext/soap/SoapHeader.php',
'soapparam' => 'stubs/ext/soap/SoapParam.php',
'soapserver' => 'stubs/ext/soap/SoapServer.php',
'soapvar' => 'stubs/ext/soap/SoapVar.php',
'socket' => 'stubs/ext/sockets/Socket.php',
'sodiumexception' => 'stubs/ext/sodium/SodiumException.php',
'spldoublylinkedlist' => 'stubs/ext/spl/SplDoublyLinkedList.php',
'splfileinfo' => 'stubs/ext/spl/SplFileInfo.php',
'splfileobject' => 'stubs/ext/spl/SplFileObject.php',
'splfixedarray' => 'stubs/ext/spl/SplFixedArray.php',
'splheap' => 'stubs/ext/spl/SplHeap.php',
'splmaxheap' => 'stubs/ext/spl/SplMaxHeap.php',
'splminheap' => 'stubs/ext/spl/SplMinHeap.php',
'splobjectstorage' => 'stubs/ext/spl/SplObjectStorage.php',
'splobserver' => 'stubs/ext/spl/SplObserver.php',
'splpriorityqueue' => 'stubs/ext/spl/SplPriorityQueue.php',
'splqueue' => 'stubs/ext/spl/SplQueue.php',
'splstack' => 'stubs/ext/spl/SplStack.php',
'splsubject' => 'stubs/ext/spl/SplSubject.php',
'spltempfileobject' => 'stubs/ext/spl/SplTempFileObject.php',
'spoofchecker' => 'stubs/ext/intl/spoofchecker/Spoofchecker.php',
'sqlite3' => 'stubs/ext/sqlite3/SQLite3.php',
'sqlite3result' => 'stubs/ext/sqlite3/SQLite3Result.php',
'sqlite3stmt' => 'stubs/ext/sqlite3/SQLite3Stmt.php',
'stringable' => 'stubs/Zend/Stringable.php',
'sysvmessagequeue' => 'stubs/ext/sysvmsg/SysvMessageQueue.php',
'sysvsemaphore' => 'stubs/ext/sysvsem/SysvSemaphore.php',
'sysvsharedmemory' => 'stubs/ext/sysvshm/SysvSharedMemory.php',
'throwable' => 'stubs/Zend/Throwable.php',
'tidy' => 'stubs/ext/tidy/tidy.php',
'tidynode' => 'stubs/ext/tidy/tidyNode.php',
'transliterator' => 'stubs/ext/intl/transliterator/Transliterator.php',
'traversable' => 'stubs/Zend/Traversable.php',
'typeerror' => 'stubs/Zend/TypeError.php',
'uconverter' => 'stubs/ext/intl/converter/UConverter.php',
'unhandledmatcherror' => 'stubs/Zend/UnhandledMatchError.php',
'valueerror' => 'stubs/Zend/ValueError.php',
'variant' => 'stubs/ext/com_dotnet/variant.php',
'weakmap' => 'stubs/Zend/WeakMap.php',
'weakreference' => 'stubs/Zend/WeakReference.php',
'xmlparser' => 'stubs/ext/xml/XMLParser.php',
'xmlreader' => 'stubs/ext/xmlreader/XMLReader.php',
'xmlwriter' => 'stubs/ext/xmlwriter/XMLWriter.php',
'xsltprocessor' => 'stubs/ext/xsl/XSLTProcessor.php',
'ziparchive' => 'stubs/ext/zip/ZipArchive.php',
];
$functions = [
'_' => 'stubs/ext/gettext/_.php',
'abs' => 'stubs/ext/standard/abs.php',
'acos' => 'stubs/ext/standard/acos.php',
'acosh' => 'stubs/ext/standard/acosh.php',
'addcslashes' => 'stubs/ext/standard/addcslashes.php',
'addslashes' => 'stubs/ext/standard/addslashes.php',
'apache_child_terminate' => 'stubs/sapi/cgi/apache_child_terminate.php',
'apache_get_modules' => 'stubs/sapi/apache2handler/apache_get_modules.php',
'apache_get_version' => 'stubs/sapi/apache2handler/apache_get_version.php',
'apache_getenv' => 'stubs/sapi/apache2handler/apache_getenv.php',
'apache_lookup_uri' => 'stubs/sapi/apache2handler/apache_lookup_uri.php',
'apache_note' => 'stubs/sapi/apache2handler/apache_note.php',
'apache_request_headers' => 'stubs/sapi/apache2handler/apache_request_headers.php',
'apache_response_headers' => 'stubs/sapi/apache2handler/apache_response_headers.php',
'apache_setenv' => 'stubs/sapi/apache2handler/apache_setenv.php',
'array_change_key_case' => 'stubs/ext/standard/array_change_key_case.php',
'array_chunk' => 'stubs/ext/standard/array_chunk.php',
'array_column' => 'stubs/ext/standard/array_column.php',
'array_combine' => 'stubs/ext/standard/array_combine.php',
'array_count_values' => 'stubs/ext/standard/array_count_values.php',
'array_diff' => 'stubs/ext/standard/array_diff.php',
'array_diff_assoc' => 'stubs/ext/standard/array_diff_assoc.php',
'array_diff_key' => 'stubs/ext/standard/array_diff_key.php',
'array_diff_uassoc' => 'stubs/ext/standard/array_diff_uassoc.php',
'array_diff_ukey' => 'stubs/ext/standard/array_diff_ukey.php',
'array_fill' => 'stubs/ext/standard/array_fill.php',
'array_fill_keys' => 'stubs/ext/standard/array_fill_keys.php',
'array_filter' => 'stubs/ext/standard/array_filter.php',
'array_flip' => 'stubs/ext/standard/array_flip.php',
'array_intersect' => 'stubs/ext/standard/array_intersect.php',
'array_intersect_assoc' => 'stubs/ext/standard/array_intersect_assoc.php',
'array_intersect_key' => 'stubs/ext/standard/array_intersect_key.php',
'array_intersect_uassoc' => 'stubs/ext/standard/array_intersect_uassoc.php',
'array_intersect_ukey' => 'stubs/ext/standard/array_intersect_ukey.php',
'array_key_exists' => 'stubs/ext/standard/array_key_exists.php',
'array_key_first' => 'stubs/ext/standard/array_key_first.php',
'array_key_last' => 'stubs/ext/standard/array_key_last.php',
'array_keys' => 'stubs/ext/standard/array_keys.php',
'array_map' => 'stubs/ext/standard/array_map.php',
'array_merge' => 'stubs/ext/standard/array_merge.php',
'array_merge_recursive' => 'stubs/ext/standard/array_merge_recursive.php',
'array_multisort' => 'stubs/ext/standard/array_multisort.php',
'array_pad' => 'stubs/ext/standard/array_pad.php',
'array_pop' => 'stubs/ext/standard/array_pop.php',
'array_product' => 'stubs/ext/standard/array_product.php',
'array_push' => 'stubs/ext/standard/array_push.php',
'array_rand' => 'stubs/ext/standard/array_rand.php',
'array_reduce' => 'stubs/ext/standard/array_reduce.php',
'array_replace' => 'stubs/ext/standard/array_replace.php',
'array_replace_recursive' => 'stubs/ext/standard/array_replace_recursive.php',
'array_reverse' => 'stubs/ext/standard/array_reverse.php',
'array_search' => 'stubs/ext/standard/array_search.php',
'array_shift' => 'stubs/ext/standard/array_shift.php',
'array_slice' => 'stubs/ext/standard/array_slice.php',
'array_splice' => 'stubs/ext/standard/array_splice.php',
'array_sum' => 'stubs/ext/standard/array_sum.php',
'array_udiff' => 'stubs/ext/standard/array_udiff.php',
'array_udiff_assoc' => 'stubs/ext/standard/array_udiff_assoc.php',
'array_udiff_uassoc' => 'stubs/ext/standard/array_udiff_uassoc.php',
'array_uintersect' => 'stubs/ext/standard/array_uintersect.php',
'array_uintersect_assoc' => 'stubs/ext/standard/array_uintersect_assoc.php',
'array_uintersect_uassoc' => 'stubs/ext/standard/array_uintersect_uassoc.php',
'array_unique' => 'stubs/ext/standard/array_unique.php',
'array_unshift' => 'stubs/ext/standard/array_unshift.php',
'array_values' => 'stubs/ext/standard/array_values.php',
'array_walk' => 'stubs/ext/standard/array_walk.php',
'array_walk_recursive' => 'stubs/ext/standard/array_walk_recursive.php',
'arsort' => 'stubs/ext/standard/arsort.php',
'asin' => 'stubs/ext/standard/asin.php',
'asinh' => 'stubs/ext/standard/asinh.php',
'asort' => 'stubs/ext/standard/asort.php',
'assert' => 'stubs/ext/standard/assert.php',
'assert_options' => 'stubs/ext/standard/assert_options.php',
'atan' => 'stubs/ext/standard/atan.php',
'atan2' => 'stubs/ext/standard/atan2.php',
'atanh' => 'stubs/ext/standard/atanh.php',
'base64_decode' => 'stubs/ext/standard/base64_decode.php',
'base64_encode' => 'stubs/ext/standard/base64_encode.php',
'base_convert' => 'stubs/ext/standard/base_convert.php',
'basename' => 'stubs/ext/standard/basename.php',
'bcadd' => 'stubs/ext/bcmath/bcadd.php',
'bccomp' => 'stubs/ext/bcmath/bccomp.php',
'bcdiv' => 'stubs/ext/bcmath/bcdiv.php',
'bcmod' => 'stubs/ext/bcmath/bcmod.php',
'bcmul' => 'stubs/ext/bcmath/bcmul.php',
'bcpow' => 'stubs/ext/bcmath/bcpow.php',
'bcpowmod' => 'stubs/ext/bcmath/bcpowmod.php',
'bcscale' => 'stubs/ext/bcmath/bcscale.php',
'bcsqrt' => 'stubs/ext/bcmath/bcsqrt.php',
'bcsub' => 'stubs/ext/bcmath/bcsub.php',
'bin2hex' => 'stubs/ext/standard/bin2hex.php',
'bind_textdomain_codeset' => 'stubs/ext/gettext/bind_textdomain_codeset.php',
'bindec' => 'stubs/ext/standard/bindec.php',
'bindtextdomain' => 'stubs/ext/gettext/bindtextdomain.php',
'boolval' => 'stubs/ext/standard/boolval.php',
'bzclose' => 'stubs/ext/bz2/bzclose.php',
'bzcompress' => 'stubs/ext/bz2/bzcompress.php',
'bzdecompress' => 'stubs/ext/bz2/bzdecompress.php',
'bzerrno' => 'stubs/ext/bz2/bzerrno.php',
'bzerror' => 'stubs/ext/bz2/bzerror.php',
'bzerrstr' => 'stubs/ext/bz2/bzerrstr.php',
'bzflush' => 'stubs/ext/bz2/bzflush.php',
'bzopen' => 'stubs/ext/bz2/bzopen.php',
'bzread' => 'stubs/ext/bz2/bzread.php',
'bzwrite' => 'stubs/ext/bz2/bzwrite.php',
'cal_days_in_month' => 'stubs/ext/calendar/cal_days_in_month.php',
'cal_from_jd' => 'stubs/ext/calendar/cal_from_jd.php',
'cal_info' => 'stubs/ext/calendar/cal_info.php',
'cal_to_jd' => 'stubs/ext/calendar/cal_to_jd.php',
'call_user_func' => 'stubs/ext/standard/call_user_func.php',
'call_user_func_array' => 'stubs/ext/standard/call_user_func_array.php',
'ceil' => 'stubs/ext/standard/ceil.php',
'chdir' => 'stubs/ext/standard/chdir.php',
'checkdate' => 'stubs/ext/date/checkdate.php',
'checkdnsrr' => 'stubs/ext/standard/checkdnsrr.php',
'chgrp' => 'stubs/ext/standard/chgrp.php',
'chmod' => 'stubs/ext/standard/chmod.php',
'chop' => 'stubs/ext/standard/chop.php',
'chown' => 'stubs/ext/standard/chown.php',
'chr' => 'stubs/ext/standard/chr.php',
'chroot' => 'stubs/ext/standard/chroot.php',
'chunk_split' => 'stubs/ext/standard/chunk_split.php',
'class_alias' => 'stubs/Zend/class_alias.php',
'class_exists' => 'stubs/Zend/class_exists.php',
'class_implements' => 'stubs/ext/spl/class_implements.php',
'class_parents' => 'stubs/ext/spl/class_parents.php',
'class_uses' => 'stubs/ext/spl/class_uses.php',
'clearstatcache' => 'stubs/ext/standard/clearstatcache.php',
'cli_get_process_title' => 'stubs/sapi/cli/cli_get_process_title.php',
'cli_set_process_title' => 'stubs/sapi/cli/cli_set_process_title.php',
'closedir' => 'stubs/ext/standard/closedir.php',
'closelog' => 'stubs/ext/standard/closelog.php',
'collator_asort' => 'stubs/ext/intl/collator_asort.php',
'collator_compare' => 'stubs/ext/intl/collator_compare.php',
'collator_create' => 'stubs/ext/intl/collator_create.php',
'collator_get_attribute' => 'stubs/ext/intl/collator_get_attribute.php',
'collator_get_error_code' => 'stubs/ext/intl/collator_get_error_code.php',
'collator_get_error_message' => 'stubs/ext/intl/collator_get_error_message.php',
'collator_get_locale' => 'stubs/ext/intl/collator_get_locale.php',
'collator_get_sort_key' => 'stubs/ext/intl/collator_get_sort_key.php',
'collator_get_strength' => 'stubs/ext/intl/collator_get_strength.php',
'collator_set_attribute' => 'stubs/ext/intl/collator_set_attribute.php',
'collator_set_strength' => 'stubs/ext/intl/collator_set_strength.php',
'collator_sort' => 'stubs/ext/intl/collator_sort.php',
'collator_sort_with_sort_keys' => 'stubs/ext/intl/collator_sort_with_sort_keys.php',
'com_create_guid' => 'stubs/ext/com_dotnet/com_create_guid.php',
'com_event_sink' => 'stubs/ext/com_dotnet/com_event_sink.php',
'com_get_active_object' => 'stubs/ext/com_dotnet/com_get_active_object.php',
'com_load_typelib' => 'stubs/ext/com_dotnet/com_load_typelib.php',
'com_message_pump' => 'stubs/ext/com_dotnet/com_message_pump.php',
'com_print_typeinfo' => 'stubs/ext/com_dotnet/com_print_typeinfo.php',
'compact' => 'stubs/ext/standard/compact.php',
'config_get_hash' => 'stubs/ext/standard/config_get_hash.php',
'connection_aborted' => 'stubs/ext/standard/connection_aborted.php',
'connection_status' => 'stubs/ext/standard/connection_status.php',
'constant' => 'stubs/ext/standard/constant.php',
'convert_uudecode' => 'stubs/ext/standard/convert_uudecode.php',
'convert_uuencode' => 'stubs/ext/standard/convert_uuencode.php',
'copy' => 'stubs/ext/standard/copy.php',
'cos' => 'stubs/ext/standard/cos.php',
'cosh' => 'stubs/ext/standard/cosh.php',
'count' => 'stubs/ext/standard/count.php',
'count_chars' => 'stubs/ext/standard/count_chars.php',
'crc32' => 'stubs/ext/standard/crc32.php',
'crypt' => 'stubs/ext/standard/crypt.php',
'ctype_alnum' => 'stubs/ext/ctype/ctype_alnum.php',
'ctype_alpha' => 'stubs/ext/ctype/ctype_alpha.php',
'ctype_cntrl' => 'stubs/ext/ctype/ctype_cntrl.php',
'ctype_digit' => 'stubs/ext/ctype/ctype_digit.php',
'ctype_graph' => 'stubs/ext/ctype/ctype_graph.php',
'ctype_lower' => 'stubs/ext/ctype/ctype_lower.php',
'ctype_print' => 'stubs/ext/ctype/ctype_print.php',
'ctype_punct' => 'stubs/ext/ctype/ctype_punct.php',
'ctype_space' => 'stubs/ext/ctype/ctype_space.php',
'ctype_upper' => 'stubs/ext/ctype/ctype_upper.php',
'ctype_xdigit' => 'stubs/ext/ctype/ctype_xdigit.php',
'curl_close' => 'stubs/ext/curl/curl_close.php',
'curl_copy_handle' => 'stubs/ext/curl/curl_copy_handle.php',
'curl_errno' => 'stubs/ext/curl/curl_errno.php',
'curl_error' => 'stubs/ext/curl/curl_error.php',
'curl_escape' => 'stubs/ext/curl/curl_escape.php',
'curl_exec' => 'stubs/ext/curl/curl_exec.php',
'curl_file_create' => 'stubs/ext/curl/curl_file_create.php',
'curl_getinfo' => 'stubs/ext/curl/curl_getinfo.php',
'curl_init' => 'stubs/ext/curl/curl_init.php',
'curl_multi_add_handle' => 'stubs/ext/curl/curl_multi_add_handle.php',
'curl_multi_close' => 'stubs/ext/curl/curl_multi_close.php',
'curl_multi_errno' => 'stubs/ext/curl/curl_multi_errno.php',
'curl_multi_exec' => 'stubs/ext/curl/curl_multi_exec.php',
'curl_multi_getcontent' => 'stubs/ext/curl/curl_multi_getcontent.php',
'curl_multi_info_read' => 'stubs/ext/curl/curl_multi_info_read.php',
'curl_multi_init' => 'stubs/ext/curl/curl_multi_init.php',
'curl_multi_remove_handle' => 'stubs/ext/curl/curl_multi_remove_handle.php',
'curl_multi_select' => 'stubs/ext/curl/curl_multi_select.php',
'curl_multi_setopt' => 'stubs/ext/curl/curl_multi_setopt.php',
'curl_multi_strerror' => 'stubs/ext/curl/curl_multi_strerror.php',
'curl_pause' => 'stubs/ext/curl/curl_pause.php',
'curl_reset' => 'stubs/ext/curl/curl_reset.php',
'curl_setopt' => 'stubs/ext/curl/curl_setopt.php',
'curl_setopt_array' => 'stubs/ext/curl/curl_setopt_array.php',
'curl_share_close' => 'stubs/ext/curl/curl_share_close.php',
'curl_share_errno' => 'stubs/ext/curl/curl_share_errno.php',
'curl_share_init' => 'stubs/ext/curl/curl_share_init.php',
'curl_share_setopt' => 'stubs/ext/curl/curl_share_setopt.php',
'curl_share_strerror' => 'stubs/ext/curl/curl_share_strerror.php',
'curl_strerror' => 'stubs/ext/curl/curl_strerror.php',
'curl_unescape' => 'stubs/ext/curl/curl_unescape.php',
'curl_version' => 'stubs/ext/curl/curl_version.php',
'current' => 'stubs/ext/standard/current.php',
'date' => 'stubs/ext/date/date.php',
'date_add' => 'stubs/ext/date/date_add.php',
'date_create' => 'stubs/ext/date/date_create.php',
'date_create_from_format' => 'stubs/ext/date/date_create_from_format.php',
'date_create_immutable' => 'stubs/ext/date/date_create_immutable.php',
'date_create_immutable_from_format' => 'stubs/ext/date/date_create_immutable_from_format.php',
'date_date_set' => 'stubs/ext/date/date_date_set.php',
'date_default_timezone_get' => 'stubs/ext/date/date_default_timezone_get.php',
'date_default_timezone_set' => 'stubs/ext/date/date_default_timezone_set.php',
'date_diff' => 'stubs/ext/date/date_diff.php',
'date_format' => 'stubs/ext/date/date_format.php',
'date_get_last_errors' => 'stubs/ext/date/date_get_last_errors.php',
'date_interval_create_from_date_string' => 'stubs/ext/date/date_interval_create_from_date_string.php',
'date_interval_format' => 'stubs/ext/date/date_interval_format.php',
'date_isodate_set' => 'stubs/ext/date/date_isodate_set.php',
'date_modify' => 'stubs/ext/date/date_modify.php',
'date_offset_get' => 'stubs/ext/date/date_offset_get.php',
'date_parse' => 'stubs/ext/date/date_parse.php',
'date_parse_from_format' => 'stubs/ext/date/date_parse_from_format.php',
'date_sub' => 'stubs/ext/date/date_sub.php',
'date_sun_info' => 'stubs/ext/date/date_sun_info.php',
'date_sunrise' => 'stubs/ext/date/date_sunrise.php',
'date_sunset' => 'stubs/ext/date/date_sunset.php',
'date_time_set' => 'stubs/ext/date/date_time_set.php',
'date_timestamp_get' => 'stubs/ext/date/date_timestamp_get.php',
'date_timestamp_set' => 'stubs/ext/date/date_timestamp_set.php',
'date_timezone_get' => 'stubs/ext/date/date_timezone_get.php',
'date_timezone_set' => 'stubs/ext/date/date_timezone_set.php',
'datefmt_create' => 'stubs/ext/intl/datefmt_create.php',
'datefmt_format' => 'stubs/ext/intl/datefmt_format.php',
'datefmt_format_object' => 'stubs/ext/intl/datefmt_format_object.php',
'datefmt_get_calendar' => 'stubs/ext/intl/datefmt_get_calendar.php',
'datefmt_get_calendar_object' => 'stubs/ext/intl/datefmt_get_calendar_object.php',
'datefmt_get_datetype' => 'stubs/ext/intl/datefmt_get_datetype.php',
'datefmt_get_error_code' => 'stubs/ext/intl/datefmt_get_error_code.php',
'datefmt_get_error_message' => 'stubs/ext/intl/datefmt_get_error_message.php',
'datefmt_get_locale' => 'stubs/ext/intl/datefmt_get_locale.php',
'datefmt_get_pattern' => 'stubs/ext/intl/datefmt_get_pattern.php',
'datefmt_get_timetype' => 'stubs/ext/intl/datefmt_get_timetype.php',
'datefmt_get_timezone' => 'stubs/ext/intl/datefmt_get_timezone.php',
'datefmt_get_timezone_id' => 'stubs/ext/intl/datefmt_get_timezone_id.php',
'datefmt_is_lenient' => 'stubs/ext/intl/datefmt_is_lenient.php',
'datefmt_localtime' => 'stubs/ext/intl/datefmt_localtime.php',
'datefmt_parse' => 'stubs/ext/intl/datefmt_parse.php',
'datefmt_set_calendar' => 'stubs/ext/intl/datefmt_set_calendar.php',
'datefmt_set_lenient' => 'stubs/ext/intl/datefmt_set_lenient.php',
'datefmt_set_pattern' => 'stubs/ext/intl/datefmt_set_pattern.php',
'datefmt_set_timezone' => 'stubs/ext/intl/datefmt_set_timezone.php',
'dba_close' => 'stubs/ext/dba/dba_close.php',
'dba_delete' => 'stubs/ext/dba/dba_delete.php',
'dba_exists' => 'stubs/ext/dba/dba_exists.php',
'dba_fetch' => 'stubs/ext/dba/dba_fetch.php',
'dba_firstkey' => 'stubs/ext/dba/dba_firstkey.php',
'dba_handlers' => 'stubs/ext/dba/dba_handlers.php',
'dba_insert' => 'stubs/ext/dba/dba_insert.php',
'dba_key_split' => 'stubs/ext/dba/dba_key_split.php',
'dba_list' => 'stubs/ext/dba/dba_list.php',
'dba_nextkey' => 'stubs/ext/dba/dba_nextkey.php',
'dba_open' => 'stubs/ext/dba/dba_open.php',
'dba_optimize' => 'stubs/ext/dba/dba_optimize.php',
'dba_popen' => 'stubs/ext/dba/dba_popen.php',
'dba_replace' => 'stubs/ext/dba/dba_replace.php',
'dba_sync' => 'stubs/ext/dba/dba_sync.php',
'dcgettext' => 'stubs/ext/gettext/dcgettext.php',
'dcngettext' => 'stubs/ext/gettext/dcngettext.php',
'debug_backtrace' => 'stubs/Zend/debug_backtrace.php',
'debug_print_backtrace' => 'stubs/Zend/debug_print_backtrace.php',
'debug_zval_dump' => 'stubs/ext/standard/debug_zval_dump.php',
'decbin' => 'stubs/ext/standard/decbin.php',
'dechex' => 'stubs/ext/standard/dechex.php',
'decoct' => 'stubs/ext/standard/decoct.php',
'define' => 'stubs/Zend/define.php',
'defined' => 'stubs/Zend/defined.php',
'deflate_add' => 'stubs/ext/zlib/deflate_add.php',
'deflate_init' => 'stubs/ext/zlib/deflate_init.php',
'deg2rad' => 'stubs/ext/standard/deg2rad.php',
'dgettext' => 'stubs/ext/gettext/dgettext.php',
'dir' => 'stubs/ext/standard/dir.php',
'dirname' => 'stubs/ext/standard/dirname.php',
'disk_free_space' => 'stubs/ext/standard/disk_free_space.php',
'disk_total_space' => 'stubs/ext/standard/disk_total_space.php',
'diskfreespace' => 'stubs/ext/standard/diskfreespace.php',
'dl' => 'stubs/ext/standard/dl.php',
'dngettext' => 'stubs/ext/gettext/dngettext.php',
'dns_check_record' => 'stubs/ext/standard/dns_check_record.php',
'dns_get_mx' => 'stubs/ext/standard/dns_get_mx.php',
'dns_get_record' => 'stubs/ext/standard/dns_get_record.php',
'dom_import_simplexml' => 'stubs/ext/dom/dom_import_simplexml.php',
'doubleval' => 'stubs/ext/standard/doubleval.php',
'easter_date' => 'stubs/ext/calendar/easter_date.php',
'easter_days' => 'stubs/ext/calendar/easter_days.php',
'enchant_broker_describe' => 'stubs/ext/enchant/enchant_broker_describe.php',
'enchant_broker_dict_exists' => 'stubs/ext/enchant/enchant_broker_dict_exists.php',
'enchant_broker_free' => 'stubs/ext/enchant/enchant_broker_free.php',
'enchant_broker_free_dict' => 'stubs/ext/enchant/enchant_broker_free_dict.php',
'enchant_broker_get_dict_path' => 'stubs/ext/enchant/enchant_broker_get_dict_path.php',
'enchant_broker_get_error' => 'stubs/ext/enchant/enchant_broker_get_error.php',
'enchant_broker_init' => 'stubs/ext/enchant/enchant_broker_init.php',
'enchant_broker_list_dicts' => 'stubs/ext/enchant/enchant_broker_list_dicts.php',
'enchant_broker_request_dict' => 'stubs/ext/enchant/enchant_broker_request_dict.php',
'enchant_broker_request_pwl_dict' => 'stubs/ext/enchant/enchant_broker_request_pwl_dict.php',
'enchant_broker_set_dict_path' => 'stubs/ext/enchant/enchant_broker_set_dict_path.php',
'enchant_broker_set_ordering' => 'stubs/ext/enchant/enchant_broker_set_ordering.php',
'enchant_dict_add' => 'stubs/ext/enchant/enchant_dict_add.php',
'enchant_dict_add_to_personal' => 'stubs/ext/enchant/enchant_dict_add_to_personal.php',
'enchant_dict_add_to_session' => 'stubs/ext/enchant/enchant_dict_add_to_session.php',
'enchant_dict_check' => 'stubs/ext/enchant/enchant_dict_check.php',
'enchant_dict_describe' => 'stubs/ext/enchant/enchant_dict_describe.php',
'enchant_dict_get_error' => 'stubs/ext/enchant/enchant_dict_get_error.php',
'enchant_dict_is_added' => 'stubs/ext/enchant/enchant_dict_is_added.php',
'enchant_dict_is_in_session' => 'stubs/ext/enchant/enchant_dict_is_in_session.php',
'enchant_dict_quick_check' => 'stubs/ext/enchant/enchant_dict_quick_check.php',
'enchant_dict_store_replacement' => 'stubs/ext/enchant/enchant_dict_store_replacement.php',
'enchant_dict_suggest' => 'stubs/ext/enchant/enchant_dict_suggest.php',
'end' => 'stubs/ext/standard/end.php',
'error_clear_last' => 'stubs/ext/standard/error_clear_last.php',
'error_get_last' => 'stubs/ext/standard/error_get_last.php',
'error_log' => 'stubs/ext/standard/error_log.php',
'error_reporting' => 'stubs/Zend/error_reporting.php',
'escapeshellarg' => 'stubs/ext/standard/escapeshellarg.php',
'escapeshellcmd' => 'stubs/ext/standard/escapeshellcmd.php',
'exec' => 'stubs/ext/standard/exec.php',
'exif_imagetype' => 'stubs/ext/exif/exif_imagetype.php',
'exif_read_data' => 'stubs/ext/exif/exif_read_data.php',
'exif_tagname' => 'stubs/ext/exif/exif_tagname.php',
'exif_thumbnail' => 'stubs/ext/exif/exif_thumbnail.php',
'exp' => 'stubs/ext/standard/exp.php',
'explode' => 'stubs/ext/standard/explode.php',
'expm1' => 'stubs/ext/standard/expm1.php',
'extension_loaded' => 'stubs/Zend/extension_loaded.php',
'extract' => 'stubs/ext/standard/extract.php',
'fastcgi_finish_request' => 'stubs/sapi/fpm/fpm/fastcgi_finish_request.php',
'fclose' => 'stubs/ext/standard/fclose.php',
'fdiv' => 'stubs/ext/standard/fdiv.php',
'feof' => 'stubs/ext/standard/feof.php',
'fflush' => 'stubs/ext/standard/fflush.php',
'fgetc' => 'stubs/ext/standard/fgetc.php',
'fgetcsv' => 'stubs/ext/standard/fgetcsv.php',
'fgets' => 'stubs/ext/standard/fgets.php',
'file' => 'stubs/ext/standard/file.php',
'file_exists' => 'stubs/ext/standard/file_exists.php',
'file_get_contents' => 'stubs/ext/standard/file_get_contents.php',
'file_put_contents' => 'stubs/ext/standard/file_put_contents.php',
'fileatime' => 'stubs/ext/standard/fileatime.php',
'filectime' => 'stubs/ext/standard/filectime.php',
'filegroup' => 'stubs/ext/standard/filegroup.php',
'fileinode' => 'stubs/ext/standard/fileinode.php',
'filemtime' => 'stubs/ext/standard/filemtime.php',
'fileowner' => 'stubs/ext/standard/fileowner.php',
'fileperms' => 'stubs/ext/standard/fileperms.php',
'filesize' => 'stubs/ext/standard/filesize.php',
'filetype' => 'stubs/ext/standard/filetype.php',
'filter_has_var' => 'stubs/ext/filter/filter_has_var.php',
'filter_id' => 'stubs/ext/filter/filter_id.php',
'filter_input' => 'stubs/ext/filter/filter_input.php',
'filter_input_array' => 'stubs/ext/filter/filter_input_array.php',
'filter_list' => 'stubs/ext/filter/filter_list.php',
'filter_var' => 'stubs/ext/filter/filter_var.php',
'filter_var_array' => 'stubs/ext/filter/filter_var_array.php',
'finfo_buffer' => 'stubs/ext/fileinfo/finfo_buffer.php',
'finfo_close' => 'stubs/ext/fileinfo/finfo_close.php',
'finfo_file' => 'stubs/ext/fileinfo/finfo_file.php',
'finfo_open' => 'stubs/ext/fileinfo/finfo_open.php',
'finfo_set_flags' => 'stubs/ext/fileinfo/finfo_set_flags.php',
'floatval' => 'stubs/ext/standard/floatval.php',
'flock' => 'stubs/ext/standard/flock.php',
'floor' => 'stubs/ext/standard/floor.php',
'flush' => 'stubs/ext/standard/flush.php',
'fmod' => 'stubs/ext/standard/fmod.php',
'fnmatch' => 'stubs/ext/standard/fnmatch.php',
'fopen' => 'stubs/ext/standard/fopen.php',
'forward_static_call' => 'stubs/ext/standard/forward_static_call.php',
'forward_static_call_array' => 'stubs/ext/standard/forward_static_call_array.php',
'fpassthru' => 'stubs/ext/standard/fpassthru.php',
'fpm_get_status' => 'stubs/sapi/fpm/fpm/fpm_get_status.php',
'fprintf' => 'stubs/ext/standard/fprintf.php',
'fputcsv' => 'stubs/ext/standard/fputcsv.php',
'fputs' => 'stubs/ext/standard/fputs.php',
'fread' => 'stubs/ext/standard/fread.php',
'frenchtojd' => 'stubs/ext/calendar/frenchtojd.php',
'fscanf' => 'stubs/ext/standard/fscanf.php',
'fseek' => 'stubs/ext/standard/fseek.php',
'fsockopen' => 'stubs/ext/standard/fsockopen.php',
'fstat' => 'stubs/ext/standard/fstat.php',
'ftell' => 'stubs/ext/standard/ftell.php',
'ftok' => 'stubs/ext/standard/ftok.php',
'ftp_alloc' => 'stubs/ext/ftp/ftp_alloc.php',
'ftp_append' => 'stubs/ext/ftp/ftp_append.php',
'ftp_cdup' => 'stubs/ext/ftp/ftp_cdup.php',
'ftp_chdir' => 'stubs/ext/ftp/ftp_chdir.php',
'ftp_chmod' => 'stubs/ext/ftp/ftp_chmod.php',
'ftp_close' => 'stubs/ext/ftp/ftp_close.php',
'ftp_connect' => 'stubs/ext/ftp/ftp_connect.php',
'ftp_delete' => 'stubs/ext/ftp/ftp_delete.php',
'ftp_exec' => 'stubs/ext/ftp/ftp_exec.php',
'ftp_fget' => 'stubs/ext/ftp/ftp_fget.php',
'ftp_fput' => 'stubs/ext/ftp/ftp_fput.php',
'ftp_get' => 'stubs/ext/ftp/ftp_get.php',
'ftp_get_option' => 'stubs/ext/ftp/ftp_get_option.php',
'ftp_login' => 'stubs/ext/ftp/ftp_login.php',
'ftp_mdtm' => 'stubs/ext/ftp/ftp_mdtm.php',
'ftp_mkdir' => 'stubs/ext/ftp/ftp_mkdir.php',
'ftp_mlsd' => 'stubs/ext/ftp/ftp_mlsd.php',
'ftp_nb_continue' => 'stubs/ext/ftp/ftp_nb_continue.php',
'ftp_nb_fget' => 'stubs/ext/ftp/ftp_nb_fget.php',
'ftp_nb_fput' => 'stubs/ext/ftp/ftp_nb_fput.php',
'ftp_nb_get' => 'stubs/ext/ftp/ftp_nb_get.php',
'ftp_nb_put' => 'stubs/ext/ftp/ftp_nb_put.php',
'ftp_nlist' => 'stubs/ext/ftp/ftp_nlist.php',
'ftp_pasv' => 'stubs/ext/ftp/ftp_pasv.php',
'ftp_put' => 'stubs/ext/ftp/ftp_put.php',
'ftp_pwd' => 'stubs/ext/ftp/ftp_pwd.php',
'ftp_quit' => 'stubs/ext/ftp/ftp_quit.php',
'ftp_raw' => 'stubs/ext/ftp/ftp_raw.php',
'ftp_rawlist' => 'stubs/ext/ftp/ftp_rawlist.php',
'ftp_rename' => 'stubs/ext/ftp/ftp_rename.php',
'ftp_rmdir' => 'stubs/ext/ftp/ftp_rmdir.php',
'ftp_set_option' => 'stubs/ext/ftp/ftp_set_option.php',
'ftp_site' => 'stubs/ext/ftp/ftp_site.php',
'ftp_size' => 'stubs/ext/ftp/ftp_size.php',
'ftp_ssl_connect' => 'stubs/ext/ftp/ftp_ssl_connect.php',
'ftp_systype' => 'stubs/ext/ftp/ftp_systype.php',
'ftruncate' => 'stubs/ext/standard/ftruncate.php',
'func_get_arg' => 'stubs/Zend/func_get_arg.php',
'func_get_args' => 'stubs/Zend/func_get_args.php',
'func_num_args' => 'stubs/Zend/func_num_args.php',
'function_exists' => 'stubs/Zend/function_exists.php',
'fwrite' => 'stubs/ext/standard/fwrite.php',
'gc_collect_cycles' => 'stubs/Zend/gc_collect_cycles.php',
'gc_disable' => 'stubs/Zend/gc_disable.php',
'gc_enable' => 'stubs/Zend/gc_enable.php',
'gc_enabled' => 'stubs/Zend/gc_enabled.php',
'gc_mem_caches' => 'stubs/Zend/gc_mem_caches.php',
'gc_status' => 'stubs/Zend/gc_status.php',
'gd_info' => 'stubs/ext/gd/gd_info.php',
'get_browser' => 'stubs/ext/standard/get_browser.php',
'get_called_class' => 'stubs/Zend/get_called_class.php',
'get_cfg_var' => 'stubs/ext/standard/get_cfg_var.php',
'get_class' => 'stubs/Zend/get_class.php',
'get_class_methods' => 'stubs/Zend/get_class_methods.php',
'get_class_vars' => 'stubs/Zend/get_class_vars.php',
'get_current_user' => 'stubs/ext/standard/get_current_user.php',
'get_debug_type' => 'stubs/ext/standard/get_debug_type.php',
'get_declared_classes' => 'stubs/Zend/get_declared_classes.php',
'get_declared_interfaces' => 'stubs/Zend/get_declared_interfaces.php',
'get_declared_traits' => 'stubs/Zend/get_declared_traits.php',
'get_defined_constants' => 'stubs/Zend/get_defined_constants.php',
'get_defined_functions' => 'stubs/Zend/get_defined_functions.php',
'get_defined_vars' => 'stubs/Zend/get_defined_vars.php',
'get_extension_funcs' => 'stubs/Zend/get_extension_funcs.php',
'get_headers' => 'stubs/ext/standard/get_headers.php',
'get_html_translation_table' => 'stubs/ext/standard/get_html_translation_table.php',
'get_include_path' => 'stubs/ext/standard/get_include_path.php',
'get_included_files' => 'stubs/Zend/get_included_files.php',
'get_loaded_extensions' => 'stubs/Zend/get_loaded_extensions.php',
'get_mangled_object_vars' => 'stubs/Zend/get_mangled_object_vars.php',
'get_meta_tags' => 'stubs/ext/standard/get_meta_tags.php',
'get_object_vars' => 'stubs/Zend/get_object_vars.php',
'get_parent_class' => 'stubs/Zend/get_parent_class.php',
'get_required_files' => 'stubs/Zend/get_required_files.php',
'get_resource_id' => 'stubs/Zend/get_resource_id.php',
'get_resource_type' => 'stubs/Zend/get_resource_type.php',
'get_resources' => 'stubs/Zend/get_resources.php',
'getallheaders' => 'stubs/sapi/apache2handler/getallheaders.php',
'getcwd' => 'stubs/ext/standard/getcwd.php',
'getdate' => 'stubs/ext/date/getdate.php',
'getenv' => 'stubs/ext/standard/getenv.php',
'gethostbyaddr' => 'stubs/ext/standard/gethostbyaddr.php',
'gethostbyname' => 'stubs/ext/standard/gethostbyname.php',
'gethostbynamel' => 'stubs/ext/standard/gethostbynamel.php',
'gethostname' => 'stubs/ext/standard/gethostname.php',
'getimagesize' => 'stubs/ext/standard/getimagesize.php',
'getimagesizefromstring' => 'stubs/ext/standard/getimagesizefromstring.php',
'getlastmod' => 'stubs/ext/standard/getlastmod.php',
'getmxrr' => 'stubs/ext/standard/getmxrr.php',
'getmygid' => 'stubs/ext/standard/getmygid.php',
'getmyinode' => 'stubs/ext/standard/getmyinode.php',
'getmypid' => 'stubs/ext/standard/getmypid.php',
'getmyuid' => 'stubs/ext/standard/getmyuid.php',
'getopt' => 'stubs/ext/standard/getopt.php',
'getprotobyname' => 'stubs/ext/standard/getprotobyname.php',
'getprotobynumber' => 'stubs/ext/standard/getprotobynumber.php',
'getrandmax' => 'stubs/ext/standard/getrandmax.php',
'getrusage' => 'stubs/ext/standard/getrusage.php',
'getservbyname' => 'stubs/ext/standard/getservbyname.php',
'getservbyport' => 'stubs/ext/standard/getservbyport.php',
'gettext' => 'stubs/ext/gettext/gettext.php',
'gettimeofday' => 'stubs/ext/standard/gettimeofday.php',
'gettype' => 'stubs/ext/standard/gettype.php',
'glob' => 'stubs/ext/standard/glob.php',
'gmdate' => 'stubs/ext/date/gmdate.php',
'gmmktime' => 'stubs/ext/date/gmmktime.php',
'gmp_abs' => 'stubs/ext/gmp/gmp_abs.php',
'gmp_add' => 'stubs/ext/gmp/gmp_add.php',
'gmp_and' => 'stubs/ext/gmp/gmp_and.php',
'gmp_binomial' => 'stubs/ext/gmp/gmp_binomial.php',
'gmp_clrbit' => 'stubs/ext/gmp/gmp_clrbit.php',
'gmp_cmp' => 'stubs/ext/gmp/gmp_cmp.php',
'gmp_com' => 'stubs/ext/gmp/gmp_com.php',
'gmp_div' => 'stubs/ext/gmp/gmp_div.php',
'gmp_div_q' => 'stubs/ext/gmp/gmp_div_q.php',
'gmp_div_qr' => 'stubs/ext/gmp/gmp_div_qr.php',
'gmp_div_r' => 'stubs/ext/gmp/gmp_div_r.php',
'gmp_divexact' => 'stubs/ext/gmp/gmp_divexact.php',
'gmp_export' => 'stubs/ext/gmp/gmp_export.php',
'gmp_fact' => 'stubs/ext/gmp/gmp_fact.php',
'gmp_gcd' => 'stubs/ext/gmp/gmp_gcd.php',
'gmp_gcdext' => 'stubs/ext/gmp/gmp_gcdext.php',
'gmp_hamdist' => 'stubs/ext/gmp/gmp_hamdist.php',
'gmp_import' => 'stubs/ext/gmp/gmp_import.php',
'gmp_init' => 'stubs/ext/gmp/gmp_init.php',
'gmp_intval' => 'stubs/ext/gmp/gmp_intval.php',
'gmp_invert' => 'stubs/ext/gmp/gmp_invert.php',
'gmp_jacobi' => 'stubs/ext/gmp/gmp_jacobi.php',
'gmp_kronecker' => 'stubs/ext/gmp/gmp_kronecker.php',
'gmp_lcm' => 'stubs/ext/gmp/gmp_lcm.php',
'gmp_legendre' => 'stubs/ext/gmp/gmp_legendre.php',
'gmp_mod' => 'stubs/ext/gmp/gmp_mod.php',
'gmp_mul' => 'stubs/ext/gmp/gmp_mul.php',
'gmp_neg' => 'stubs/ext/gmp/gmp_neg.php',
'gmp_nextprime' => 'stubs/ext/gmp/gmp_nextprime.php',
'gmp_or' => 'stubs/ext/gmp/gmp_or.php',
'gmp_perfect_power' => 'stubs/ext/gmp/gmp_perfect_power.php',
'gmp_perfect_square' => 'stubs/ext/gmp/gmp_perfect_square.php',
'gmp_popcount' => 'stubs/ext/gmp/gmp_popcount.php',
'gmp_pow' => 'stubs/ext/gmp/gmp_pow.php',
'gmp_powm' => 'stubs/ext/gmp/gmp_powm.php',
'gmp_prob_prime' => 'stubs/ext/gmp/gmp_prob_prime.php',
'gmp_random_bits' => 'stubs/ext/gmp/gmp_random_bits.php',
'gmp_random_range' => 'stubs/ext/gmp/gmp_random_range.php',
'gmp_random_seed' => 'stubs/ext/gmp/gmp_random_seed.php',
'gmp_root' => 'stubs/ext/gmp/gmp_root.php',
'gmp_rootrem' => 'stubs/ext/gmp/gmp_rootrem.php',
'gmp_scan0' => 'stubs/ext/gmp/gmp_scan0.php',
'gmp_scan1' => 'stubs/ext/gmp/gmp_scan1.php',
'gmp_setbit' => 'stubs/ext/gmp/gmp_setbit.php',
'gmp_sign' => 'stubs/ext/gmp/gmp_sign.php',
'gmp_sqrt' => 'stubs/ext/gmp/gmp_sqrt.php',
'gmp_sqrtrem' => 'stubs/ext/gmp/gmp_sqrtrem.php',
'gmp_strval' => 'stubs/ext/gmp/gmp_strval.php',
'gmp_sub' => 'stubs/ext/gmp/gmp_sub.php',
'gmp_testbit' => 'stubs/ext/gmp/gmp_testbit.php',
'gmp_xor' => 'stubs/ext/gmp/gmp_xor.php',
'gmstrftime' => 'stubs/ext/date/gmstrftime.php',
'grapheme_extract' => 'stubs/ext/intl/grapheme_extract.php',
'grapheme_stripos' => 'stubs/ext/intl/grapheme_stripos.php',
'grapheme_stristr' => 'stubs/ext/intl/grapheme_stristr.php',
'grapheme_strlen' => 'stubs/ext/intl/grapheme_strlen.php',
'grapheme_strpos' => 'stubs/ext/intl/grapheme_strpos.php',
'grapheme_strripos' => 'stubs/ext/intl/grapheme_strripos.php',
'grapheme_strrpos' => 'stubs/ext/intl/grapheme_strrpos.php',
'grapheme_strstr' => 'stubs/ext/intl/grapheme_strstr.php',
'grapheme_substr' => 'stubs/ext/intl/grapheme_substr.php',
'gregoriantojd' => 'stubs/ext/calendar/gregoriantojd.php',
'gzclose' => 'stubs/ext/zlib/gzclose.php',
'gzcompress' => 'stubs/ext/zlib/gzcompress.php',
'gzdecode' => 'stubs/ext/zlib/gzdecode.php',
'gzdeflate' => 'stubs/ext/zlib/gzdeflate.php',
'gzencode' => 'stubs/ext/zlib/gzencode.php',
'gzeof' => 'stubs/ext/zlib/gzeof.php',
'gzfile' => 'stubs/ext/zlib/gzfile.php',
'gzgetc' => 'stubs/ext/zlib/gzgetc.php',
'gzgets' => 'stubs/ext/zlib/gzgets.php',
'gzinflate' => 'stubs/ext/zlib/gzinflate.php',
'gzopen' => 'stubs/ext/zlib/gzopen.php',
'gzpassthru' => 'stubs/ext/zlib/gzpassthru.php',
'gzputs' => 'stubs/ext/zlib/gzputs.php',
'gzread' => 'stubs/ext/zlib/gzread.php',
'gzrewind' => 'stubs/ext/zlib/gzrewind.php',
'gzseek' => 'stubs/ext/zlib/gzseek.php',
'gztell' => 'stubs/ext/zlib/gztell.php',
'gzuncompress' => 'stubs/ext/zlib/gzuncompress.php',
'gzwrite' => 'stubs/ext/zlib/gzwrite.php',
'hash' => 'stubs/ext/hash/hash.php',
'hash_algos' => 'stubs/ext/hash/hash_algos.php',
'hash_copy' => 'stubs/ext/hash/hash_copy.php',
'hash_equals' => 'stubs/ext/hash/hash_equals.php',
'hash_file' => 'stubs/ext/hash/hash_file.php',
'hash_final' => 'stubs/ext/hash/hash_final.php',
'hash_hkdf' => 'stubs/ext/hash/hash_hkdf.php',
'hash_hmac' => 'stubs/ext/hash/hash_hmac.php',
'hash_hmac_algos' => 'stubs/ext/hash/hash_hmac_algos.php',
'hash_hmac_file' => 'stubs/ext/hash/hash_hmac_file.php',
'hash_init' => 'stubs/ext/hash/hash_init.php',
'hash_pbkdf2' => 'stubs/ext/hash/hash_pbkdf2.php',
'hash_update' => 'stubs/ext/hash/hash_update.php',
'hash_update_file' => 'stubs/ext/hash/hash_update_file.php',
'hash_update_stream' => 'stubs/ext/hash/hash_update_stream.php',
'header' => 'stubs/ext/standard/header.php',
'header_register_callback' => 'stubs/ext/standard/header_register_callback.php',
'header_remove' => 'stubs/ext/standard/header_remove.php',
'headers_list' => 'stubs/ext/standard/headers_list.php',
'headers_sent' => 'stubs/ext/standard/headers_sent.php',
'hebrev' => 'stubs/ext/standard/hebrev.php',
'hex2bin' => 'stubs/ext/standard/hex2bin.php',
'hexdec' => 'stubs/ext/standard/hexdec.php',
'highlight_file' => 'stubs/ext/standard/highlight_file.php',
'highlight_string' => 'stubs/ext/standard/highlight_string.php',
'hrtime' => 'stubs/ext/standard/hrtime.php',
'html_entity_decode' => 'stubs/ext/standard/html_entity_decode.php',
'htmlentities' => 'stubs/ext/standard/htmlentities.php',
'htmlspecialchars' => 'stubs/ext/standard/htmlspecialchars.php',
'htmlspecialchars_decode' => 'stubs/ext/standard/htmlspecialchars_decode.php',
'http_build_query' => 'stubs/ext/standard/http_build_query.php',
'http_response_code' => 'stubs/ext/standard/http_response_code.php',
'hypot' => 'stubs/ext/standard/hypot.php',
'iconv' => 'stubs/ext/iconv/iconv.php',
'iconv_get_encoding' => 'stubs/ext/iconv/iconv_get_encoding.php',
'iconv_mime_decode' => 'stubs/ext/iconv/iconv_mime_decode.php',
'iconv_mime_decode_headers' => 'stubs/ext/iconv/iconv_mime_decode_headers.php',
'iconv_mime_encode' => 'stubs/ext/iconv/iconv_mime_encode.php',
'iconv_set_encoding' => 'stubs/ext/iconv/iconv_set_encoding.php',
'iconv_strlen' => 'stubs/ext/iconv/iconv_strlen.php',
'iconv_strpos' => 'stubs/ext/iconv/iconv_strpos.php',
'iconv_strrpos' => 'stubs/ext/iconv/iconv_strrpos.php',
'iconv_substr' => 'stubs/ext/iconv/iconv_substr.php',
'idate' => 'stubs/ext/date/idate.php',
'idn_to_ascii' => 'stubs/ext/intl/idn_to_ascii.php',
'idn_to_utf8' => 'stubs/ext/intl/idn_to_utf8.php',
'ignore_user_abort' => 'stubs/ext/standard/ignore_user_abort.php',
'image_type_to_extension' => 'stubs/ext/standard/image_type_to_extension.php',
'image_type_to_mime_type' => 'stubs/ext/standard/image_type_to_mime_type.php',
'imageaffine' => 'stubs/ext/gd/imageaffine.php',
'imageaffinematrixconcat' => 'stubs/ext/gd/imageaffinematrixconcat.php',
'imageaffinematrixget' => 'stubs/ext/gd/imageaffinematrixget.php',
'imagealphablending' => 'stubs/ext/gd/imagealphablending.php',
'imageantialias' => 'stubs/ext/gd/imageantialias.php',
'imagearc' => 'stubs/ext/gd/imagearc.php',
'imagebmp' => 'stubs/ext/gd/imagebmp.php',
'imagechar' => 'stubs/ext/gd/imagechar.php',
'imagecharup' => 'stubs/ext/gd/imagecharup.php',
'imagecolorallocate' => 'stubs/ext/gd/imagecolorallocate.php',
'imagecolorallocatealpha' => 'stubs/ext/gd/imagecolorallocatealpha.php',
'imagecolorat' => 'stubs/ext/gd/imagecolorat.php',
'imagecolorclosest' => 'stubs/ext/gd/imagecolorclosest.php',
'imagecolorclosestalpha' => 'stubs/ext/gd/imagecolorclosestalpha.php',
'imagecolorclosesthwb' => 'stubs/ext/gd/imagecolorclosesthwb.php',
'imagecolordeallocate' => 'stubs/ext/gd/imagecolordeallocate.php',
'imagecolorexact' => 'stubs/ext/gd/imagecolorexact.php',
'imagecolorexactalpha' => 'stubs/ext/gd/imagecolorexactalpha.php',
'imagecolormatch' => 'stubs/ext/gd/imagecolormatch.php',
'imagecolorresolve' => 'stubs/ext/gd/imagecolorresolve.php',
'imagecolorresolvealpha' => 'stubs/ext/gd/imagecolorresolvealpha.php',
'imagecolorset' => 'stubs/ext/gd/imagecolorset.php',
'imagecolorsforindex' => 'stubs/ext/gd/imagecolorsforindex.php',
'imagecolorstotal' => 'stubs/ext/gd/imagecolorstotal.php',
'imagecolortransparent' => 'stubs/ext/gd/imagecolortransparent.php',
'imageconvolution' => 'stubs/ext/gd/imageconvolution.php',
'imagecopy' => 'stubs/ext/gd/imagecopy.php',
'imagecopymerge' => 'stubs/ext/gd/imagecopymerge.php',
'imagecopymergegray' => 'stubs/ext/gd/imagecopymergegray.php',
'imagecopyresampled' => 'stubs/ext/gd/imagecopyresampled.php',
'imagecopyresized' => 'stubs/ext/gd/imagecopyresized.php',
'imagecreate' => 'stubs/ext/gd/imagecreate.php',
'imagecreatefrombmp' => 'stubs/ext/gd/imagecreatefrombmp.php',
'imagecreatefromgd' => 'stubs/ext/gd/imagecreatefromgd.php',
'imagecreatefromgd2' => 'stubs/ext/gd/imagecreatefromgd2.php',
'imagecreatefromgd2part' => 'stubs/ext/gd/imagecreatefromgd2part.php',
'imagecreatefromgif' => 'stubs/ext/gd/imagecreatefromgif.php',
'imagecreatefromjpeg' => 'stubs/ext/gd/imagecreatefromjpeg.php',
'imagecreatefrompng' => 'stubs/ext/gd/imagecreatefrompng.php',
'imagecreatefromstring' => 'stubs/ext/gd/imagecreatefromstring.php',
'imagecreatefromtga' => 'stubs/ext/gd/imagecreatefromtga.php',
'imagecreatefromwbmp' => 'stubs/ext/gd/imagecreatefromwbmp.php',
'imagecreatefromwebp' => 'stubs/ext/gd/imagecreatefromwebp.php',
'imagecreatefromxbm' => 'stubs/ext/gd/imagecreatefromxbm.php',
'imagecreatefromxpm' => 'stubs/ext/gd/imagecreatefromxpm.php',
'imagecreatetruecolor' => 'stubs/ext/gd/imagecreatetruecolor.php',
'imagecrop' => 'stubs/ext/gd/imagecrop.php',
'imagecropauto' => 'stubs/ext/gd/imagecropauto.php',
'imagedashedline' => 'stubs/ext/gd/imagedashedline.php',
'imagedestroy' => 'stubs/ext/gd/imagedestroy.php',
'imageellipse' => 'stubs/ext/gd/imageellipse.php',
'imagefill' => 'stubs/ext/gd/imagefill.php',
'imagefilledarc' => 'stubs/ext/gd/imagefilledarc.php',
'imagefilledellipse' => 'stubs/ext/gd/imagefilledellipse.php',
'imagefilledpolygon' => 'stubs/ext/gd/imagefilledpolygon.php',
'imagefilledrectangle' => 'stubs/ext/gd/imagefilledrectangle.php',
'imagefilltoborder' => 'stubs/ext/gd/imagefilltoborder.php',
'imagefilter' => 'stubs/ext/gd/imagefilter.php',
'imageflip' => 'stubs/ext/gd/imageflip.php',
'imagefontheight' => 'stubs/ext/gd/imagefontheight.php',
'imagefontwidth' => 'stubs/ext/gd/imagefontwidth.php',
'imageftbbox' => 'stubs/ext/gd/imageftbbox.php',
'imagefttext' => 'stubs/ext/gd/imagefttext.php',
'imagegammacorrect' => 'stubs/ext/gd/imagegammacorrect.php',
'imagegd' => 'stubs/ext/gd/imagegd.php',
'imagegd2' => 'stubs/ext/gd/imagegd2.php',
'imagegetclip' => 'stubs/ext/gd/imagegetclip.php',
'imagegetinterpolation' => 'stubs/ext/gd/imagegetinterpolation.php',
'imagegif' => 'stubs/ext/gd/imagegif.php',
'imagegrabscreen' => 'stubs/ext/gd/imagegrabscreen.php',
'imagegrabwindow' => 'stubs/ext/gd/imagegrabwindow.php',
'imageinterlace' => 'stubs/ext/gd/imageinterlace.php',
'imageistruecolor' => 'stubs/ext/gd/imageistruecolor.php',
'imagejpeg' => 'stubs/ext/gd/imagejpeg.php',
'imagelayereffect' => 'stubs/ext/gd/imagelayereffect.php',
'imageline' => 'stubs/ext/gd/imageline.php',
'imageloadfont' => 'stubs/ext/gd/imageloadfont.php',
'imageopenpolygon' => 'stubs/ext/gd/imageopenpolygon.php',
'imagepalettecopy' => 'stubs/ext/gd/imagepalettecopy.php',
'imagepalettetotruecolor' => 'stubs/ext/gd/imagepalettetotruecolor.php',
'imagepng' => 'stubs/ext/gd/imagepng.php',
'imagepolygon' => 'stubs/ext/gd/imagepolygon.php',
'imagerectangle' => 'stubs/ext/gd/imagerectangle.php',
'imageresolution' => 'stubs/ext/gd/imageresolution.php',
'imagerotate' => 'stubs/ext/gd/imagerotate.php',
'imagesavealpha' => 'stubs/ext/gd/imagesavealpha.php',
'imagescale' => 'stubs/ext/gd/imagescale.php',
'imagesetbrush' => 'stubs/ext/gd/imagesetbrush.php',
'imagesetclip' => 'stubs/ext/gd/imagesetclip.php',
'imagesetinterpolation' => 'stubs/ext/gd/imagesetinterpolation.php',
'imagesetpixel' => 'stubs/ext/gd/imagesetpixel.php',
'imagesetstyle' => 'stubs/ext/gd/imagesetstyle.php',
'imagesetthickness' => 'stubs/ext/gd/imagesetthickness.php',
'imagesettile' => 'stubs/ext/gd/imagesettile.php',
'imagestring' => 'stubs/ext/gd/imagestring.php',
'imagestringup' => 'stubs/ext/gd/imagestringup.php',
'imagesx' => 'stubs/ext/gd/imagesx.php',
'imagesy' => 'stubs/ext/gd/imagesy.php',
'imagetruecolortopalette' => 'stubs/ext/gd/imagetruecolortopalette.php',
'imagettfbbox' => 'stubs/ext/gd/imagettfbbox.php',
'imagettftext' => 'stubs/ext/gd/imagettftext.php',
'imagetypes' => 'stubs/ext/gd/imagetypes.php',
'imagewbmp' => 'stubs/ext/gd/imagewbmp.php',
'imagewebp' => 'stubs/ext/gd/imagewebp.php',
'imagexbm' => 'stubs/ext/gd/imagexbm.php',
'imap_8bit' => 'stubs/ext/imap/imap_8bit.php',
'imap_alerts' => 'stubs/ext/imap/imap_alerts.php',
'imap_append' => 'stubs/ext/imap/imap_append.php',
'imap_base64' => 'stubs/ext/imap/imap_base64.php',
'imap_binary' => 'stubs/ext/imap/imap_binary.php',
'imap_body' => 'stubs/ext/imap/imap_body.php',
'imap_bodystruct' => 'stubs/ext/imap/imap_bodystruct.php',
'imap_check' => 'stubs/ext/imap/imap_check.php',
'imap_clearflag_full' => 'stubs/ext/imap/imap_clearflag_full.php',
'imap_close' => 'stubs/ext/imap/imap_close.php',
'imap_create' => 'stubs/ext/imap/imap_create.php',
'imap_createmailbox' => 'stubs/ext/imap/imap_createmailbox.php',
'imap_delete' => 'stubs/ext/imap/imap_delete.php',
'imap_deletemailbox' => 'stubs/ext/imap/imap_deletemailbox.php',
'imap_errors' => 'stubs/ext/imap/imap_errors.php',
'imap_expunge' => 'stubs/ext/imap/imap_expunge.php',
'imap_fetch_overview' => 'stubs/ext/imap/imap_fetch_overview.php',
'imap_fetchbody' => 'stubs/ext/imap/imap_fetchbody.php',
'imap_fetchheader' => 'stubs/ext/imap/imap_fetchheader.php',
'imap_fetchmime' => 'stubs/ext/imap/imap_fetchmime.php',
'imap_fetchstructure' => 'stubs/ext/imap/imap_fetchstructure.php',
'imap_fetchtext' => 'stubs/ext/imap/imap_fetchtext.php',
'imap_gc' => 'stubs/ext/imap/imap_gc.php',
'imap_get_quota' => 'stubs/ext/imap/imap_get_quota.php',
'imap_get_quotaroot' => 'stubs/ext/imap/imap_get_quotaroot.php',
'imap_getacl' => 'stubs/ext/imap/imap_getacl.php',
'imap_getmailboxes' => 'stubs/ext/imap/imap_getmailboxes.php',
'imap_getsubscribed' => 'stubs/ext/imap/imap_getsubscribed.php',
'imap_headerinfo' => 'stubs/ext/imap/imap_headerinfo.php',
'imap_headers' => 'stubs/ext/imap/imap_headers.php',