-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap.xml
2415 lines (2415 loc) · 84 KB
/
sitemap.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/$_cookie.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/$_env.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/$_files.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/$_get.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/$_post.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/$_request.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/$_server.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/$argc.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/$argv.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/$http_raw_post_data.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/$php_errormsg.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/$this.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/__call.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/__callstatic.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/__clone.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/__get.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/__invoke.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/__isset.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/__serialize.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/__set.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/__set_state.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/__sleep.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/__tostring.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/__unserialize.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/__wakeup.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/absolute.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/abstract-class.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/abstract.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/abstraction-layer.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/accessibility.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/active-record.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/adapter.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/addition.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/alias-types.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/alias.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/allowdynamicproperties.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/alternative-syntax.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/and.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/annotation.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/anonymous-catch.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/anonymous-class.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/anonymous-constant.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/anonymous-function.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/anonymous.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/api.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/apm.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/append.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/arbitrary-argument.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/archive.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/argument.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/argumentcounterror.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/arithmeticerror.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/arm.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/array-curly-braces.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/array-spread.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/array-syntax.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/array.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/arrayaccess.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/arrayobject.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/arrow-function.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/artifact.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/as.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/assertion.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/asset.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/assignation.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/associative-array.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/assumption.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/ast.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/asymmetric-property.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/asymmetric-visibility.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/asynchronous.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/attribute-class.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/attribute.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/authenticate.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/authorize.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/autoload.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/autovivification.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/autowiring.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/backend.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/badfunctioncallexception.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/basename.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/batch.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/bcmath.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/benchmarking.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/best-practice.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/binary-integer.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/binary-operator.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/binary.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/bitshit-operator.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/bitwise-operator.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/blind-key.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/block.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/body.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/boolean.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/branch.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/break.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/browscap.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/bucket.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/by-reference.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/by-value.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/c2-framework.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/cache.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/call.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/callable.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/callback.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/case-sensitivity.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/case.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/cast.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/catch.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/cgi.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/chaining.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/character.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/child-class.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/ci.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/class-alias.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/class-constant-visibility.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/class-constant.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/class-entity.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/class-hoisting.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/class-invasion.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/class-operator.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/class.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/class_alias.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/clean-architecture.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/clean-code.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/cli.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/clone.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/close-tag.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/closedgeneratorexception.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/closure-binding.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/closure.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/coalesce.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/code-freeze.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/code-injection.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/code-reuse.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/code-smell.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/codepoint.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/coding-convention.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/collection.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/collision.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/colon.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/comma.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/command-bus.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/comment.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/compact-array.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/compact.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/comparison.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/compile-time.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/component.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/composer.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/compression.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/concatenation.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/concrete.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/condition.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/conditional-structure.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/conditioned.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/configuration.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/const.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/constant-in-trait.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/constant-scalar-expression.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/constant.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/constructor.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/container.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/continue.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/contract.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/control-flow.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/control-structure.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/controller.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/convention.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/cookie.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/core.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/coroutine.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/countable.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/coupling.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/crc32.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/crud.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/cryptography.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/csv-injection.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/csv.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/ctype.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/curl.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/curly-bracket.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/custom.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/cvs.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/cyclomatic-complexity.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/dangling-reference.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/data-container.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/data-mapper.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/data.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/database.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/dataset.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/date.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/datetime-trap.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/day-in-seconds.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/days-in-month.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/dbal.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/ddd.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/dead-code.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/debugger.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/declaration.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/declare-encoding.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/declare.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/decorator.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/deep-clone.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/default-parameter.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/default-value.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/default.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/define.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/defined.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/definition.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/dependency-injection-container.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/dependency-injection.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/deploy.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/deprecated.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/deprecation.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/dereferencing.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/design-pattern.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/destructor.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/dictionary.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/directive.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/directoryiterator.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/dirname.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/disable-classes.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/disable-functions.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/division.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/divisionbyzeroerror.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/dnf-type.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/do-while.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/domainexception.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/domxml.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/double-quote.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/dowhile.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/downtime.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/dry.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/dsn.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/dto.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/ducktyping.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/dynamic-call.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/dynamic-class.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/dynamic-constant.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/dynamic-loading.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/dynamic-property.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/dynamic-variable.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/each.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/early-binding.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/echo-tag.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/echo.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/ellipsis.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/email.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/empty.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/encoding-text.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/encoding.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/engine.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/entity.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/enum-backed.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/enum-case.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/enum.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/environment-variables.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/error-handler.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/error-handling.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/error-reporting.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/error.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/escape-character.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/escape-data.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/escape-html.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/escape-sequence.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/eval.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/event-driven.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/event-loop.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/event-storming.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/exception-chain.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/exception-handler.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/exception.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/execution-time.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/exit.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/exponent.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/exponential.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/expression.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/extends.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/extension.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/extract.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/facade.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/fallback-function.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/fallback-to-global.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/fallthrough.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/false.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/falsy.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/fastcgi.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/feature-flag.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/feature.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/ffi.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/file.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/filesystem.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/filesystemiterator.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/final-class-constant.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/final.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/finally.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/first-class-callable.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/fixture.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/float.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/fluent-interface.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/for.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/foreach.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/form.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/format.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/fossilized-method.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/fpm.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/framework.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/frontend.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/fully-qualified-name.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/function-subscripting.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/function.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/garbage-collection.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/generator.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/generics.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/getter.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/git.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/glob.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/global-code.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/global-space.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/global-variable.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/global.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/globals.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/god-object.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/goto.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/graphql.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/halt-compiler.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/handle.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/handler.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/hard-coded.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/hash-comparison.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/hash-crypto.ini.html</loc>
</url>
<url>
<loc>https://php-dictionary.readthedocs.io/en/latest/dictionary/hash-function.ini.html</loc>