-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdump.sql
911 lines (911 loc) · 252 KB
/
dump.sql
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
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(1,'https://wiki.php.net/rfc/compact','Make compact function reports undefined passed variables','close',NULL,'7.3','[]','2019-11-02 23:33:04',0,'2018-06-20 00:00:00');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(2,'https://wiki.php.net/rfc/argon2_password_hash_enhancements','Argon2 Password Hash Enhancements','close',NULL,'7.3','[]','2019-11-02 23:33:04',0,'2018-06-20 00:00:00');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(3,'https://wiki.php.net/rfc/umaintained_extensions','Cleaning up unmaintained extensions','close',NULL,'7.3','[]','2019-11-02 23:33:04',0,'2018-06-20 00:00:00');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(4,'https://wiki.php.net/rfc/iterable_to_array-and-iterable_count','iterable_to_array() and iterable_count()','close',NULL,'7.3','[]','2019-11-02 23:33:04',1,'2018-07-11 08:01:11');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(5,'https://wiki.php.net/rfc/friend-classes','Class Friendship','close',NULL,'7.4','[]','2019-11-02 23:33:04',1,'2018-07-06 20:21:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(6,'https://wiki.php.net/rfc/deprecations_php_7_3','Deprecations for PHP 7.3','close',NULL,'7.3','[]','2019-11-02 23:33:04',0,'2018-07-11 08:01:13');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(7,'https://wiki.php.net/rfc/case_insensitive_constant_deprecation','Deprecate and Remove Case-Insensitive Constants','close',NULL,'7.3','[]','2019-11-02 23:33:04',0,'2018-07-09 08:50:06');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(8,'https://wiki.php.net/rfc/array_key_first_last','array_key_first(), array_key_last() and array_value_first(), array_value_last()','close',NULL,'7.4','[]','2019-11-02 23:33:04',0,'2018-07-11 08:01:15');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(9,'https://wiki.php.net/rfc/object-comparison','User-defined object comparison','close',NULL,'7.3','[]','2019-11-02 23:33:04',1,'2018-07-09 17:59:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(10,'https://wiki.php.net/rfc/typed_properties_v2','Typed Properties 2.0','close',NULL,'7.4','[]','2019-11-02 23:33:04',0,'2018-09-11 06:40:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(11,'https://wiki.php.net/rfc/permanent_hash_ext','RFC: Always available hash extension','close',NULL,'7.4','[]','2019-11-02 23:33:04',0,'2018-09-19 11:50:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(12,'https://wiki.php.net/rfc/improve-openssl-random-pseudo-bytes','Improve openssl_random_pseudo_bytes()','close',NULL,'7.4','[]','2019-11-02 23:33:04',0,'2018-11-02 19:32:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(13,'https://wiki.php.net/rfc/preload','Preloading','close',NULL,'7.4','[]','2019-11-02 23:33:04',0,'2018-11-06 10:42:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(14,'https://wiki.php.net/rfc/password_registry','Password Hashing Registry','close',NULL,'7.4','[]','2019-11-02 23:33:04',0,'2018-11-06 17:00:06');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(15,'https://wiki.php.net/rfc/covariant-returns-and-contravariant-parameters','Covariant Returns and Contravariant Parameters','close',NULL,'7.4','[]','2019-11-02 23:33:04',0,'2018-12-19 23:13:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(16,'https://wiki.php.net/rfc/ffi','FFI - Foreign Function Interface','close',NULL,'7.4','[]','2019-11-02 23:33:04',0,'2018-12-20 15:16:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(17,'https://wiki.php.net/rfc/mb_str_split','mb_str_split','close',NULL,'7.4','[]','2019-11-02 23:33:04',0,'2019-01-06 12:26:06');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(18,'https://wiki.php.net/rfc/deprecate-and-remove-ext-wddx','Unbundle ext/wddx','close',NULL,'7.4','["https:\/\/externals.io\/message\/103755"]','2019-11-02 23:33:04',0,'2019-01-17 14:16:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(19,'https://wiki.php.net/rfc/reference_reflection','Reflection for references','close',NULL,'7.4','["https:\/\/externals.io\/message\/103887","https:\/\/externals.io\/message\/103738"]','2019-11-02 23:33:04',0,'2019-01-30 10:05:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(20,'https://wiki.php.net/rfc/iterable-stdclass','Making stdClass iterable','close',NULL,'7.4','["https:\/\/externals.io\/message\/104139","https:\/\/externals.io\/message\/103718"]','2019-11-02 23:33:04',1,'2019-02-04 19:00:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(21,'https://wiki.php.net/rfc/abolish-narrow-margins','Abolish Narrow Margins','close',NULL,'7.4','["https:\/\/externals.io\/message\/104302","https:\/\/externals.io\/message\/103913"]','2019-11-02 23:33:04',0,'2019-02-08 08:51:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(22,'https://wiki.php.net/rfc/consistent_type_errors','Consistent type errors for internal functions','close',NULL,'8.0','["https:\/\/externals.io\/message\/104175","https:\/\/externals.io\/message\/104471"]','2019-11-02 23:33:04',0,'2019-02-19 09:53:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(23,'https://wiki.php.net/rfc/weakrefs','Weak References','close',NULL,'7.4','["https:\/\/externals.io\/message\/102111","https:\/\/externals.io\/message\/104014","https:\/\/externals.io\/message\/104500"]','2019-11-02 23:33:04',0,'2019-02-22 11:54:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(24,'https://wiki.php.net/rfc/custom_object_serialization','New custom object serialization mechanism','close',NULL,'7.4','["https:\/\/externals.io\/message\/98834","https:\/\/externals.io\/message\/104538"]','2019-11-02 23:33:04',0,'2019-03-01 15:06:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(25,'https://wiki.php.net/rfc/jit','JIT','close',NULL,'8.0','["https:\/\/externals.io\/message\/103903","https:\/\/externals.io\/message\/104842","https:\/\/www.reddit.com\/r\/PHP\/comments\/b3pzxa\/jit_rfc_in_voting_phase\/"]','2019-11-02 23:33:04',0,'2019-03-21 11:49:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(26,'https://wiki.php.net/rfc/abolish-short-votes','Abolish Short Votes','close',NULL,'7.4','[]','2019-11-02 23:33:04',0,'2019-04-05 19:06:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(27,'https://wiki.php.net/rfc/deprecate-and-remove-ext-interbase','Unbundle ext/interbase','close',NULL,'7.4','["https:\/\/externals.io\/message\/105182","https:\/\/externals.io\/message\/104871","https:\/\/externals.io\/message\/104883"]','2019-11-02 23:33:04',0,'2019-04-09 17:53:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(28,'https://wiki.php.net/rfc/deprecate_php_short_tags','Deprecate PHP Short open tags','close',NULL,'8.0','[]','2019-11-02 23:33:04',0,'2019-04-10 10:44:08');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(29,'https://wiki.php.net/rfc/arrow_functions_v2','Arrow Functions 2.0','close',NULL,'7.4','["https:\/\/externals.io\/message\/104693","https:\/\/externals.io\/message\/105308"]','2019-11-02 23:33:04',0,'2019-04-17 10:53:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(30,'https://wiki.php.net/rfc/spread_operator_for_array','Spread Operator in Array Expression','close',NULL,'7.4','["https:\/\/externals.io\/message\/103452","https:\/\/externals.io\/message\/105072"]','2019-11-02 23:33:04',0,'2019-04-21 19:43:07');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(31,'https://wiki.php.net/rfc/ternary_associativity','Deprecate left-associative ternary operator','close',NULL,'8.0','[]','2019-11-02 23:33:04',0,'2019-04-23 08:37:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(32,'https://wiki.php.net/rfc/lsp_errors','Always generate fatal error for incompatible method signatures','close',NULL,'8.0','["https:\/\/externals.io\/message\/105158"]','2019-11-02 23:33:04',0,'2019-04-23 08:37:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(33,'https://wiki.php.net/rfc/concatenation_precedence','Change the precedence of the concatenation operator','close',NULL,'8.0','[]','2019-11-02 23:33:04',0,'2019-04-30 22:53:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(34,'https://wiki.php.net/rfc/tostring_exceptions','Allow throwing exceptions from __toString()','close',NULL,'7.4','[]','2019-11-02 23:33:04',0,'2019-05-22 13:44:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(35,'https://wiki.php.net/rfc/numeric_literal_separator','Numeric Literal Separator','close',NULL,'7.4','[]','2019-11-02 23:33:04',0,'2019-05-30 12:39:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(36,'https://wiki.php.net/rfc/base_convert_improvements','base_convert changes','close',NULL,'7.4','[]','2019-11-02 23:33:04',0,'2019-06-19 07:28:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(37,'https://wiki.php.net/rfc/sodium.argon.hash','Provide argon2i(d) implementations for password_hash() from ext/sodium','close',NULL,'7.4','[]','2019-11-02 23:33:04',0,'2019-06-23 17:24:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(38,'https://wiki.php.net/rfc/unbundle_recode','Unbundle ext/recode','close',NULL,'7.4','[]','2019-11-02 23:33:04',0,'2019-06-28 13:50:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(39,'https://wiki.php.net/rfc/normalize-array-auto-increment-on-copy-on-write','Normalize arrays'' "auto-increment" value on copy on write','close',NULL,'7.4','[]','2019-11-02 23:33:04',1,'2019-06-28 21:07:06');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(40,'https://wiki.php.net/rfc/deprecate_curly_braces_array_access','Deprecate curly brace syntax for accessing array elements and string offsets','close',NULL,'7.4','[]','2019-11-02 23:33:04',0,'2019-07-03 10:12:06');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(41,'https://wiki.php.net/rfc/add_str_begin_and_end_functions','Add str_starts_with(), str_ends_with() and related functions','close',NULL,'7.4','[]','2019-07-05 06:23:00',1,'2019-07-05 08:32:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(42,'https://wiki.php.net/rfc/pdo_escape_placeholders','Escape PDO "?" parameter placeholder','close',NULL,'7.4','[]','2019-11-02 23:33:04',0,'2019-07-08 12:01:06');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(43,'https://wiki.php.net/rfc/deprecations_php_7_4','Deprecations for PHP 7.4','close',NULL,'7.4','[]','2019-11-02 23:33:04',0,'2019-07-08 19:30:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(44,'https://wiki.php.net/rfc/strict_operators','Strict operators directive','close',NULL,'8.0','[]','2019-11-02 23:33:04',1,'2019-07-09 01:55:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(45,'https://wiki.php.net/rfc/deprecate_php_short_tags_v2','Deprecate short open tags, again','close',NULL,'','[]','2019-11-02 23:33:04',1,'2019-08-06 11:36:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(46,'https://wiki.php.net/rfc/engine_warnings','Reclassifying engine warnings','close',NULL,'8.0','["https:\/\/externals.io\/message\/106713","https:\/\/externals.io\/message\/106940","https:\/\/derickrethans.nl\/phpinternalsnews-29.html"]','2019-11-02 23:33:04',0,'2019-09-12 12:03:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(47,'https://wiki.php.net/rfc/object-initializer','Object Initializer','close',NULL,'8.0','["https:\/\/externals.io\/message\/106947","https:\/\/externals.io\/message\/107396","https:\/\/derickrethans.nl\/phpinternalsnews-30.html"]','2019-11-02 23:33:04',1,'2019-10-07 11:02:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(48,'https://wiki.php.net/rfc/union_types_v2','Union Types 2.0','close',NULL,'8.0','["https:\/\/github.com\/php\/php-rfcs\/pull\/1","https:\/\/externals.io\/message\/106844","https:\/\/www.reddit.com\/r\/PHP\/comments\/dmyi3e\/rfc_union_types_v2_enters_voting_phase\/","https:\/\/derickrethans.nl\/phpinternalsnews-33.html"]','2019-10-25 12:00:00',0,'2019-10-26 16:40:50');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(49,'https://wiki.php.net/rfc/deprecate-backtick-operator-v2','Deprecate Backtick Operator (V2)','close',NULL,'8.0','["https:\/\/externals.io\/message\/107745"]','2019-10-31 14:34:00',1,'2019-10-31 15:36:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(52,'https://wiki.php.net/rfc/dom_living_standard_api','Implement new DOM Living Standard APIs in ext/dom','close',NULL,'8.0','["https:\/\/externals.io\/message\/104878","https:\/\/derickrethans.nl\/phpinternalsnews-31.html"]','2019-11-11 12:12:00',0,'2019-11-11 13:06:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(53,'https://wiki.php.net/rfc/flexible_heredoc_nowdoc_syntaxes','Flexible Heredoc and Nowdoc Syntaxes','close',NULL,'7.3','[]','2017-11-01 09:54:00',0,'2019-11-16 19:34:52');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(54,'https://wiki.php.net/rfc/trailing-comma-function-calls','Allow a trailing comma in function calls','close',NULL,'7.3','[]','2017-10-21 17:45:00',0,'2019-11-16 19:35:07');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(55,'https://wiki.php.net/rfc/json_throw_on_error','JSON_THROW_ON_ERROR','close',NULL,'7.3','[]','2017-09-25 20:21:00',0,'2019-11-16 19:36:17');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(56,'https://wiki.php.net/rfc/pcre2-migration','PCRE2 migration','close',NULL,'7.3','[]','2017-10-30 17:57:00',0,'2019-11-16 19:36:18');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(57,'https://wiki.php.net/rfc/list_reference_assignment','list() Reference Assignment','close',NULL,'7.3','[]','2017-02-06 18:29:00',0,'2019-11-16 19:36:19');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(58,'https://wiki.php.net/rfc/is-countable','is_countable','close',NULL,'7.3','[]','2018-02-26 16:15:00',0,'2019-11-16 19:36:20');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(59,'https://wiki.php.net/rfc/same-site-cookie','Same Site Cookie','close',NULL,'7.3','[]','2017-08-26 23:48:00',0,'2019-11-16 19:36:21');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(60,'https://wiki.php.net/rfc/image2wbmp','Deprecate and Remove image2wbmp()','close',NULL,'7.3','[]','2018-05-26 13:04:00',0,'2019-11-16 19:36:22');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(61,'https://wiki.php.net/rfc/load-ext-by-name','Allow loading extensions by name','close',NULL,'7.2','[]','2017-06-01 12:49:00',0,'2019-11-16 21:19:47');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(62,'https://wiki.php.net/rfc/allow-abstract-function-override','Allow abstract function override','close',NULL,'7.2','[]','2017-03-28 12:27:00',0,'2019-11-16 21:19:48');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(63,'https://wiki.php.net/rfc/number_format_negative_zero','Prevent number_format() from returning negative zero','close',NULL,'7.2','[]','2017-04-20 07:56:00',0,'2019-11-16 21:19:48');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(64,'https://wiki.php.net/rfc/convert_numeric_keys_in_object_array_casts','Convert numeric keys in object/array casts','close',NULL,'7.2','[]','2016-11-05 15:37:00',0,'2019-11-16 21:19:49');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(65,'https://wiki.php.net/rfc/deprecate-bareword-strings','Deprecate and Remove Bareword (Unquoted) Strings','close',NULL,'7.2','[]','2017-03-08 20:46:00',0,'2019-11-16 21:19:50');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(66,'https://wiki.php.net/rfc/get_class_disallow_null_parameter','get_class() disallow null parameter','close',NULL,'7.2','[]','2016-09-24 09:59:00',0,'2019-11-16 21:19:51');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(67,'https://wiki.php.net/rfc/counting_non_countables','Counting of non-countable objects','close',NULL,'7.2','[]','2016-10-21 14:49:00',0,'2019-11-16 21:19:52');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(68,'https://wiki.php.net/rfc/parameter-no-type-variance','Parameter Type Widening','close',NULL,'7.2','[]','2017-01-09 19:29:00',0,'2019-11-16 21:19:53');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(69,'https://wiki.php.net/rfc/list-syntax-trailing-commas','Trailing Commas In List Syntax','close',NULL,'7.2','[]','2017-01-27 15:03:00',0,'2019-11-16 21:19:53');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(70,'https://wiki.php.net/rfc/deprecate-png-jpeg-2wbmp','Deprecate png2wbmp() and jpeg2wbmp()','close',NULL,'7.2','[]','2016-10-31 11:02:00',0,'2019-11-16 21:19:54');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(71,'https://wiki.php.net/rfc/socket_getaddrinfo','Implement socket_getaddrinfo()','close',NULL,'7.2','[]','2016-08-24 14:39:00',0,'2019-11-16 21:19:55');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(72,'https://wiki.php.net/rfc/argon2_password_hash','Argon2 Password Hash','close',NULL,'7.2','[]','2016-08-24 22:34:00',0,'2019-11-16 21:19:55');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(73,'https://wiki.php.net/rfc/debugging_pdo_prepared_statement_emulation','Debugging PDO Prepared Statement Emulation','close',NULL,'7.2','[]','2016-10-31 17:06:00',1,'2019-11-16 21:19:56');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(74,'https://wiki.php.net/rfc/debugging_pdo_prepared_statement_emulation_v2','Debugging PDO Prepared Statement Emulation v2','close',NULL,'7.2','[]','2016-12-07 19:18:00',0,'2019-11-16 21:19:57');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(75,'https://wiki.php.net/rfc/hash-context.as-resource','Migration Hash Context from Resource to Object','close',NULL,'7.2','[]','2017-01-17 21:46:00',0,'2019-11-16 21:19:58');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(76,'https://wiki.php.net/rfc/deprecate-and-remove-intl_idna_variant_2003','Deprecate and remove INTL_IDNA_VARIANT_2003','close',NULL,'7.2','[]','2017-01-31 11:26:00',0,'2019-11-16 21:19:58');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(77,'https://wiki.php.net/rfc/extended-string-types-for-pdo','Extended String Types For PDO','close',NULL,'7.2','[]','2017-03-08 21:51:00',0,'2019-11-16 21:19:59');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(78,'https://wiki.php.net/rfc/improved-tls-constants','Improved SSL / TLS constants','close',NULL,'7.2','[]','2017-05-29 06:41:00',0,'2019-11-16 21:20:00');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(79,'https://wiki.php.net/rfc/object-typehint','Object typehint','close',NULL,'7.2','[]','2017-05-17 11:14:00',0,'2019-11-16 21:20:00');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(80,'https://wiki.php.net/rfc/ldap_exop','LDAP EXOP','close',NULL,'7.2','[]','2019-11-16 21:20:01',0,'2019-11-16 21:20:01');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(81,'https://wiki.php.net/rfc/libsodium','Make Libsodium a Core Extension','close',NULL,'7.2','[]','2017-02-03 19:57:00',0,'2019-11-16 21:20:01');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(82,'https://wiki.php.net/rfc/deprecations_php_7_2','Deprecations for PHP 7.2','close',NULL,'7.2','[]','2017-01-15 13:25:00',0,'2019-11-16 21:20:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(83,'https://wiki.php.net/rfc/session-id-without-hashing','Session ID without hashing','close',NULL,'7.1','[]','2016-07-24 04:43:00',0,'2019-11-16 21:30:56');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(84,'https://wiki.php.net/rfc/async_signals','Asynchronous Signal Handling (without TICKs)','close',NULL,'7.1','[]','2016-06-28 15:12:00',0,'2019-11-16 21:30:57');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(85,'https://wiki.php.net/rfc/this_var','Fix inconsistent behavior of $this variable','close',NULL,'7.1','[]','2016-06-06 06:05:00',0,'2019-11-16 21:30:57');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(86,'https://wiki.php.net/rfc/too_few_args','Replace "Missing argument" warning with "Too few arguments" exception','close',NULL,'7.1','[]','2016-06-06 06:07:00',0,'2019-11-16 21:30:58');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(87,'https://wiki.php.net/rfc/nullable_types','Nullable Types','close',NULL,'7.1','[]','2016-05-10 14:25:00',0,'2019-11-16 21:30:58');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(88,'https://wiki.php.net/rfc/short_list_syntax','Square bracket syntax for array destructuring assignment','close',NULL,'7.1','[]','2016-04-27 17:20:00',0,'2019-11-16 21:30:59');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(89,'https://wiki.php.net/rfc/invalid_strings_in_arithmetic','Warn about invalid strings in arithmetic','close',NULL,'7.1','[]','2016-03-20 01:40:00',0,'2019-11-16 21:30:59');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(90,'https://wiki.php.net/rfc/list_keys','Allow specifying keys in list()','close',NULL,'7.1','[]','2016-02-05 11:57:00',0,'2019-11-16 21:31:00');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(91,'https://wiki.php.net/rfc/iterable','Iterable','close',NULL,'7.1','[]','2016-06-24 17:01:00',0,'2019-11-16 21:31:00');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(92,'https://wiki.php.net/rfc/negative-string-offsets','Generalize support of negative string offsets','close',NULL,'7.1','[]','2016-02-18 18:24:00',0,'2019-11-16 21:31:01');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(93,'https://wiki.php.net/rfc/closurefromcallable','Closure from callable function','close',NULL,'7.1','[]','2016-05-15 16:21:00',0,'2019-11-16 21:31:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(94,'https://wiki.php.net/rfc/deprecate_mb_ereg_replace_eval_option','Deprecate mb_ereg_replace eval option','close',NULL,'7.1','[]','2016-01-28 09:14:00',0,'2019-11-16 21:31:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(95,'https://wiki.php.net/rfc/mcrypt-viking-funeral','Deprecate (then Remove) Mcrypt','close',NULL,'7.1','[]','2016-03-15 15:17:00',0,'2019-11-16 21:31:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(96,'https://wiki.php.net/rfc/openssl_aead','OpenSSL AEAD support','close',NULL,'7.1','[]','2016-01-20 15:35:00',1,'2019-11-16 21:31:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(97,'https://wiki.php.net/rfc/void_return_type','Void Return Type','close',NULL,'7.1','[]','2015-10-28 23:05:00',0,'2019-11-16 21:31:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(98,'https://wiki.php.net/rfc/class_const_visibility','Support Class Constant Visibility','close',NULL,'7.1','[]','2015-10-20 17:20:00',0,'2019-11-16 21:31:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(99,'https://wiki.php.net/rfc/octal.overload-checking','Fix overflow in octal parsing','close',NULL,'7.1','[]','2016-04-29 20:29:00',0,'2019-11-16 21:31:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(100,'https://wiki.php.net/rfc/rng_fixes','RNG fixes and changes','close',NULL,'7.1','[]','2016-07-07 09:32:00',0,'2019-11-16 21:31:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(101,'https://wiki.php.net/rfc/curl_http2_push','ext/curl HTTP/2 Server Push Support','close',NULL,'7.1','[]','2015-12-09 17:52:00',0,'2019-11-16 21:31:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(102,'https://wiki.php.net/rfc/intl.timezone.get-windows-id','IntlTimeZone::getWindowsID()','close',NULL,'7.1','[]','2016-04-01 00:36:00',0,'2019-11-16 21:31:06');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(103,'https://wiki.php.net/rfc/multiple-catch','Catching Multiple Exception Types','close',NULL,'7.1','[]','2016-04-17 19:55:00',0,'2019-11-16 21:31:06');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(104,'https://wiki.php.net/rfc/forbid_dynamic_scope_introspection','Forbid dynamic calls to scope introspection functions','close',NULL,'7.1','[]','2016-05-15 19:46:00',0,'2019-11-16 21:31:07');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(105,'https://wiki.php.net/rfc/new-curl-error-functions','Add curl_multi_errno(), curl_share_errno() and curl_share_strerror()','close',NULL,'7.1','[]','2016-06-09 16:47:00',0,'2019-11-16 21:31:07');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(106,'https://wiki.php.net/rfc/throw_error_in_extensions','Throw Error in Extensions','close',NULL,'7.1','[]','2016-06-27 14:18:00',0,'2019-11-16 21:31:08');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(107,'https://wiki.php.net/rfc/precise_float_value','More precise float value handling','close',NULL,'7.1','[]','2016-06-12 17:55:00',0,'2019-11-16 21:31:08');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(108,'https://wiki.php.net/rfc/additional-context-in-pcntl-signal-handler','Additional Context in pcntl_signal Handler','close',NULL,'7.1','[]','2016-07-07 15:00:00',0,'2019-11-16 21:31:09');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(109,'https://wiki.php.net/rfc/session-create-id','Add session_create_id() function','close',NULL,'7.1','[]','2016-08-10 08:29:00',0,'2019-11-16 21:31:09');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(110,'https://wiki.php.net/rfc/session-gc','Add session_gc()','close',NULL,'7.1','[]','2016-08-10 09:54:00',0,'2019-11-16 21:31:10');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(111,'https://wiki.php.net/rfc/random-function-exceptions','Random Functions Throwing Exceptions in PHP 7','close',NULL,'7.0','[]','2015-08-30 05:52:00',0,'2019-11-17 00:02:19');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(112,'https://wiki.php.net/rfc/throwable-interface','Throwable Interface','close',NULL,'7.0','[]','2015-06-10 14:02:00',0,'2019-11-17 00:02:19');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(113,'https://wiki.php.net/rfc/context_sensitive_lexer','Context Sensitive Lexer','close',NULL,'7.0','[]','2015-03-01 01:12:00',0,'2019-11-17 00:02:20');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(114,'https://wiki.php.net/rfc/preg_replace_callback_array','Add preg_replace_callback_array function','close',NULL,'7.0','[]','2019-11-17 00:02:20',0,'2019-11-17 00:02:20');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(115,'https://wiki.php.net/rfc/easy_userland_csprng','Easy User-land CSPRNG','close',NULL,'7.0','[]','2015-03-14 21:39:00',0,'2019-11-17 00:02:21');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(116,'https://wiki.php.net/rfc/anonymous_classes','Anonymous Classes','close',NULL,'7.0','[]','2015-03-13 18:35:00',0,'2019-11-17 00:02:21');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(117,'https://wiki.php.net/rfc/generator-delegation','Generator Delegation','close',NULL,'7.0','[]','2015-03-15 18:18:00',0,'2019-11-17 00:02:22');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(118,'https://wiki.php.net/rfc/reserve_more_types_in_php_7','Reserve More Types in PHP 7','close',NULL,'7.0','[]','2015-03-16 05:45:00',0,'2019-11-17 00:02:22');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(119,'https://wiki.php.net/rfc/internal_constructor_behaviour','Constructor behaviour of internal classes','close',NULL,'7.0','[]','2015-03-15 15:02:00',0,'2019-11-17 00:02:23');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(120,'https://wiki.php.net/rfc/reclassify_e_strict','Reclassify E_STRICT notices','close',NULL,'7.0','[]','2015-03-15 14:52:00',0,'2019-11-17 00:02:23');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(121,'https://wiki.php.net/rfc/remove_php4_constructors','Remove PHP 4 Constructors','close',NULL,'7.0','[]','2015-02-23 03:32:00',0,'2019-11-17 00:02:24');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(122,'https://wiki.php.net/rfc/date.timezone_warning_removal','Remove the date.timezone warning','close',NULL,'7.0','[]','2015-02-16 16:55:00',0,'2019-11-17 00:02:24');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(123,'https://wiki.php.net/rfc/combined-comparison-operator','Combined Comparison (Spaceship) Operator','close',NULL,'7.0','[]','2015-02-02 11:06:00',0,'2019-11-17 00:02:24');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(124,'https://wiki.php.net/rfc/php7_foreach','Fix "foreach" behavior','close',NULL,'7.0','[]','2015-02-05 07:43:00',0,'2019-11-17 00:02:25');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(125,'https://wiki.php.net/rfc/removal_of_dead_sapis_and_exts','Removal of dead or not yet PHP7 ported SAPIs and extensions','close',NULL,'7.0','[]','2015-02-02 18:47:00',0,'2019-11-17 00:02:26');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(126,'https://wiki.php.net/rfc/remove_deprecated_functionality_in_php7','Remove deprecated functionality in PHP 7','close',NULL,'7.0','[]','2015-01-02 14:58:00',0,'2019-11-17 00:02:27');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(127,'https://wiki.php.net/rfc/jsond','Replacing current json extension with jsond','close',NULL,'7.0','[]','2015-01-25 17:01:00',0,'2019-11-17 00:02:28');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(128,'https://wiki.php.net/rfc/json_preserve_fractional_part','Preserve Fractional Part in JSON encode','close',NULL,'7.0','[]','2015-01-11 07:49:00',0,'2019-11-17 00:02:28');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(129,'https://wiki.php.net/rfc/return_types','Return Type Declarations','close',NULL,'7.0','[]','2015-01-14 08:10:00',0,'2019-11-17 00:02:28');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(130,'https://wiki.php.net/rfc/fast_zpp','Fast Parameter Parsing API','close',NULL,'7.0','[]','2015-01-19 12:56:00',0,'2019-11-17 00:02:29');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(131,'https://wiki.php.net/rfc/unicode_escape','Unicode Codepoint Escape Syntax','close',NULL,'7.0','[]','2014-12-08 22:48:00',0,'2019-11-17 00:02:30');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(132,'https://wiki.php.net/rfc/native-tls','Native TLS','close',NULL,'7.0','[]','2014-12-10 18:48:00',0,'2019-11-17 00:02:30');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(133,'https://wiki.php.net/rfc/isset_ternary','Null Coalesce Operator','close',NULL,'7.0','[]','2014-09-19 23:00:00',0,'2019-11-17 00:02:30');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(134,'https://wiki.php.net/rfc/integer_semantics','Integer Semantics','close',NULL,'7.0','[]','2014-09-14 21:22:00',0,'2019-11-17 00:02:31');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(135,'https://wiki.php.net/rfc/zpp_fail_on_overflow','ZPP Failure on Overflow','close',NULL,'7.0','[]','2014-12-02 20:45:00',0,'2019-11-17 00:02:31');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(136,'https://wiki.php.net/rfc/phpng','Move the phpng branch into master','close',NULL,'7.0','[]','2014-08-06 11:37:00',0,'2019-11-17 00:02:32');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(137,'https://wiki.php.net/rfc/abstract_syntax_tree','Abstract syntax tree','close',NULL,'7.0','[]','2014-08-18 15:46:00',0,'2019-11-17 00:02:32');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(138,'https://wiki.php.net/rfc/uniform_variable_syntax','Uniform Variable Syntax','close',NULL,'7.0','[]','2014-07-07 13:13:00',0,'2019-11-17 00:02:33');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(139,'https://wiki.php.net/rfc/size_t_and_int64_next','64 bit platform improvements for string length and integer in zval','close',NULL,'7.0','[]','2014-05-13 19:56:00',0,'2019-11-17 00:02:33');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(140,'https://wiki.php.net/rfc/closure_apply','Closure::call','close',NULL,'7.0','[]','2014-08-20 11:50:00',0,'2019-11-17 00:02:34');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(141,'https://wiki.php.net/rfc/fix_list_behavior_inconsistency','Fix list() behavior inconsistency','close',NULL,'7.0','[]','2014-09-25 06:47:00',0,'2019-11-17 00:02:35');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(142,'https://wiki.php.net/rfc/remove_alternative_php_tags','Remove alternative PHP tags','close',NULL,'7.0','[]','2014-09-24 17:14:00',0,'2019-11-17 00:02:35');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(143,'https://wiki.php.net/rfc/switch.default.multiple','Make defining multiple default cases in a switch a syntax error','close',NULL,'7.0','[]','2014-09-05 19:19:00',0,'2019-11-17 00:02:35');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(144,'https://wiki.php.net/rfc/catchable-call-to-member-of-non-object','Catchable "call to a member function of a non-object"','close',NULL,'7.0','[]','2014-06-29 09:58:00',0,'2019-11-17 00:02:36');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(145,'https://wiki.php.net/rfc/secure_unserialize','Filtered unserialize()','close',NULL,'7.0','[]','2014-11-03 20:11:00',0,'2019-11-17 00:02:36');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(146,'https://wiki.php.net/rfc/intl.char','IntlChar class','close',NULL,'7.0','[]','2014-12-26 01:19:00',0,'2019-11-17 00:02:37');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(147,'https://wiki.php.net/rfc/session-lock-ini','Introduce session_start() options - read_only, unsafe_lock, lazy_write and lazy_destroy','close',NULL,'7.0','[]','2014-02-13 02:39:00',0,'2019-11-17 00:02:37');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(148,'https://wiki.php.net/rfc/remove_hex_support_in_numeric_strings','Remove hex support in numeric strings','close',NULL,'7.0','[]','2015-01-17 18:41:00',0,'2019-11-17 00:02:38');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(149,'https://wiki.php.net/rfc/expectations','Expectations','close',NULL,'7.0','[]','2015-02-19 08:04:00',0,'2019-11-17 00:02:38');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(150,'https://wiki.php.net/rfc/group_use_declarations','Group Use Declarations','close',NULL,'7.0','[]','2015-02-11 19:46:00',0,'2019-11-17 00:02:39');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(151,'https://wiki.php.net/rfc/engine_exceptions_for_php7','Exceptions in the engine (for PHP 7)','close',NULL,'7.0','[]','2015-02-23 17:17:00',0,'2019-11-17 00:02:39');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(152,'https://wiki.php.net/rfc/generator-return-expressions','Generator Return Expressions','close',NULL,'7.0','[]','2015-03-09 15:34:00',0,'2019-11-17 00:02:40');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(153,'https://wiki.php.net/rfc/scalar_type_hints_v5','Scalar Type Declarations','close',NULL,'7.0','[]','2015-02-26 13:56:00',0,'2019-11-17 00:02:41');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(154,'https://wiki.php.net/rfc/continue_ob','Continue output buffering despite aborted connection','close',NULL,'7.0','[]','2015-03-15 09:49:00',0,'2019-11-17 00:02:42');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(155,'https://wiki.php.net/rfc/intdiv','intdiv()','close',NULL,'7.0','[]','2014-07-30 01:28:00',0,'2019-11-17 00:02:42');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(156,'https://wiki.php.net/rfc/session.user.return-value','Fix handling of custom session handler return values','close',NULL,'7.0','[]','2014-06-10 16:19:00',0,'2019-11-17 00:02:43');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(157,'https://wiki.php.net/rfc/gc_fn_pointer','Turn gc_collect_cycles into function pointer','close',NULL,'7.0','[]','2015-01-07 18:33:00',0,'2019-11-17 00:02:43');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(158,'https://wiki.php.net/rfc/debug-info','__debugInfo()','close',NULL,'5.6','[]','2014-02-03 19:05:00',0,'2019-11-17 00:08:27');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(159,'https://wiki.php.net/rfc/pow-operator','Power Operator','close',NULL,'5.6','[]','2013-12-19 07:10:00',0,'2019-11-17 00:08:27');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(160,'https://wiki.php.net/rfc/use_function','Importing namespaced functions','close',NULL,'5.6','[]','2013-08-15 13:20:00',0,'2019-11-17 00:08:28');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(161,'https://wiki.php.net/rfc/const_scalar_exprs','Constant Scalar Expressions','close',NULL,'5.6','[]','2013-11-20 15:53:00',0,'2019-11-17 00:08:28');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(162,'https://wiki.php.net/rfc/incompat_ctx','Request for Comments: Remove calls with incompatible Context','close',NULL,'5.6','[]','2013-01-20 18:15:00',0,'2019-11-17 00:08:29');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(163,'https://wiki.php.net/rfc/variadics','Syntax for variadic functions','close',NULL,'5.6','[]','2013-09-16 19:18:00',0,'2019-11-17 00:08:29');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(164,'https://wiki.php.net/rfc/argument_unpacking','Argument Unpacking','close',NULL,'5.6','[]','2013-12-21 11:49:00',0,'2019-11-17 00:08:30');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(165,'https://wiki.php.net/rfc/operator_overloading_gmp','Internal operator overloading and GMP improvements','close',NULL,'5.6','[]','2013-06-10 17:56:00',0,'2019-11-17 00:08:30');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(166,'https://wiki.php.net/rfc/phpdbg','phpdbg','close',NULL,'5.6','[]','2013-12-11 06:29:00',0,'2019-11-17 00:08:31');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(167,'https://wiki.php.net/rfc/slim_post_data','Slim POST data','close',NULL,'5.6','[]','2013-12-10 15:03:00',0,'2019-11-17 00:08:31');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(168,'https://wiki.php.net/rfc/crypt_function_salt','Change crypt() behavior w/o salt','close',NULL,'5.6','[]','2013-09-24 02:52:00',0,'2019-11-17 00:08:32');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(169,'https://wiki.php.net/rfc/fpm_change_hat','Apparmor change_hat functionality for php-fpm','close',NULL,'5.6','[]','2013-06-23 21:02:00',0,'2019-11-17 00:08:32');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(170,'https://wiki.php.net/rfc/tls-peer-verification','TLS Peer Verification','close',NULL,'5.6','[]','2013-12-18 02:01:00',0,'2019-11-17 00:08:33');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(171,'https://wiki.php.net/rfc/improved-tls-defaults','Improved TLS Defaults','close',NULL,'5.6','[]','2014-02-11 18:54:00',0,'2019-11-17 00:08:33');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(172,'https://wiki.php.net/rfc/default_encoding','Request for Comments: Use default_charset As Default Character Encoding','close',NULL,'5.6','[]','2013-12-20 00:02:00',0,'2019-11-17 00:08:34');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(173,'https://wiki.php.net/rfc/pack_unpack_64bit_formats','64 bit format codes for pack() and unpack()','close',NULL,'5.6','[]','2014-09-26 06:56:00',0,'2019-11-17 00:08:34');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(174,'https://wiki.php.net/rfc/timing_attack','Request for Comments: Timing attack safe string comparison function','close',NULL,'5.6','[]','2014-02-03 00:46:00',0,'2019-11-17 00:08:35');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(175,'https://wiki.php.net/rfc/generators','Request for Comments: Generators','close',NULL,'5.5','[]','2012-08-25 15:06:00',0,'2019-11-17 00:15:29');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(176,'https://wiki.php.net/rfc/finally','Request for Comments: Supports finally keyword','close',NULL,'5.5','[]','2012-08-06 10:42:00',0,'2019-11-17 00:15:30');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(177,'https://wiki.php.net/rfc/class_name_scalars','Request for Comments: Class Name Resolution As Scalar Via "class" Keyword','close',NULL,'5.5','[]','2012-09-11 13:37:00',0,'2019-11-17 00:15:31');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(178,'https://wiki.php.net/rfc/foreachlist','RFC: foreach_variable supporting T_LIST','close',NULL,'5.5','[]','2012-08-18 03:59:00',0,'2019-11-17 00:15:31');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(179,'https://wiki.php.net/rfc/constdereference','RFC: Const array/string dereference','close',NULL,'5.5','[]','2011-12-14 10:28:00',0,'2019-11-17 00:15:32');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(180,'https://wiki.php.net/rfc/empty_isset_exprs','RFC: Allow arbitrary expression arguments to empty() and isset()','close',NULL,'5.5','[]','2012-04-18 22:06:00',0,'2019-11-17 00:15:32');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(181,'https://wiki.php.net/rfc/optimizerplus','Integrating Zend Optimizer+ into the PHP distribution','close',NULL,'5.5','[]','2013-02-27 15:14:00',0,'2019-11-17 00:15:32');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(182,'https://wiki.php.net/rfc/hash_pbkdf2','Request for Comments: Adding hash_pbkdf2 Function','close',NULL,'5.5','[]','2012-07-02 15:32:00',0,'2019-11-17 00:15:33');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(183,'https://wiki.php.net/rfc/password_hash','Request for Comments: Adding simple password hashing API','close',NULL,'5.5','[]','2012-09-04 13:13:00',0,'2019-11-17 00:15:33');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(184,'https://wiki.php.net/rfc/remove_preg_replace_eval_modifier','RFC: Remove preg_replace /e modifier','close',NULL,'5.5','[]','2019-11-17 00:15:34',0,'2019-11-17 00:15:34');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(185,'https://wiki.php.net/rfc/uconverter','Request for Comments: ext/intl::UConverter','close',NULL,'5.5','[]','2012-11-05 16:24:00',0,'2019-11-17 00:15:34');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(186,'https://wiki.php.net/rfc/mysql_deprecation','Request for Comments: ext/mysql deprecation','close',NULL,'5.5','[]','2012-11-28 04:53:00',0,'2019-11-17 00:15:35');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(187,'https://wiki.php.net/rfc/cookie_max-age','Request for Comments: Cookie Max-Age attribute','close',NULL,'5.5','[]','2019-11-17 00:15:35',0,'2019-11-17 00:15:35');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(188,'https://wiki.php.net/rfc/curl-file-upload','Request for Comments: Fix CURL file uploads','close',NULL,'5.5','[]','2013-01-21 00:41:00',0,'2019-11-17 00:15:36');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(189,'https://wiki.php.net/rfc/sendrecvmsg','Request for Comments: Adding recvmsg() and sendmsg() to ext/sockets.','close',NULL,'5.5','[]','2019-11-17 00:15:37',0,'2019-11-17 00:15:37');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(190,'https://wiki.php.net/rfc/cli_process_title','Request for Comments: PHP CLI changing process title support','close',NULL,'5.5','[]','2013-02-22 00:42:00',0,'2019-11-17 00:15:37');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(191,'https://wiki.php.net/rfc/foreach-non-scalar-keys','Allow non-scalar keys in ''''foreach''''','close',NULL,'5.5','[]','2013-02-27 18:31:00',0,'2019-11-17 00:15:38');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(192,'https://wiki.php.net/rfc/array_column','Request for Comments: array_column','close',NULL,'5.5','[]','2013-01-11 23:19:00',0,'2019-11-17 00:15:38');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(193,'https://wiki.php.net/rfc/curl-wrappers-removal-rfc','Request for Comments: Removal of curl-wrappers','close',NULL,'5.5','[]','2013-04-17 21:01:00',0,'2019-11-17 00:15:39');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(194,'https://wiki.php.net/rfc/strict_sessions','Request for Comments: Strict Sessions','close',NULL,'5.5','[]','2019-11-17 00:15:39',0,'2019-11-17 00:15:39');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(195,'https://wiki.php.net/rfc/weak_maps','Weak maps','close',NULL,'8.0','[]','2019-12-18 07:44:00',0,'2019-12-18 08:45:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(196,'https://wiki.php.net/rfc/class_name_literal_on_object','Allow ::class on objects','close',NULL,'8.0','[]','2020-01-28 08:13:00',0,'2020-01-28 10:05:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(197,'https://wiki.php.net/rfc/static_return_type','Static return type','close',NULL,'8.0','[]','2020-01-28 08:59:00',0,'2020-01-28 10:05:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(198,'https://wiki.php.net/rfc/variable_syntax_tweaks','Variable Syntax Tweaks','close',NULL,'8.0','[]','2020-01-28 15:21:00',0,'2020-01-28 16:23:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(199,'https://wiki.php.net/rfc/use_global_elements','declare(function_and_const_lookup=''global'')','close',NULL,'','[]','2020-01-29 00:57:00',0,'2020-01-29 01:54:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(200,'https://wiki.php.net/rfc/stringable','Add Stringable interface','close',NULL,'8.0','["https:\/\/externals.io\/message\/108214#108214","https:\/\/www.reddit.com\/r\/PHP\/comments\/f1gbuu\/rfc_stringable_interface_allows_stringstringable\/","https:\/\/www.reddit.com\/r\/PHP\/comments\/fa9aoh\/stringable_rfc_has_been_accepted\/"]','2020-02-12 13:38:00',0,'2020-02-12 14:36:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(201,'https://wiki.php.net/rfc/calls_in_constant_expressions_poll','Poll: Places to allow function calls in constant expressions','close',NULL,'8.0','[]','2020-02-17 01:37:00',0,'2020-02-19 17:57:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(202,'https://wiki.php.net/rfc/get_debug_type','get_debug_type','close',NULL,'8.0','["https:\/\/externals.io\/message\/108597","https:\/\/github.com\/php\/php-src\/pull\/5143"]','2020-03-01 12:21:00',0,'2020-03-01 13:25:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(203,'https://wiki.php.net/rfc/str_contains','str_contains','close',NULL,'8.0','[]','2020-03-02 07:48:00',0,'2020-03-02 08:37:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(204,'https://wiki.php.net/rfc/abstract_trait_method_validation','Validation for abstract trait methods','close',NULL,'8.0','[]','2020-03-06 08:22:00',0,'2020-03-06 09:24:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(205,'https://wiki.php.net/rfc/token_as_object','Object-based token_get_all() alternative','close',NULL,'8.0','[]','2020-03-06 08:32:00',0,'2020-03-06 11:33:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(206,'https://wiki.php.net/rfc/write_once_properties','Write-Once Properties','close',NULL,'8.0','[]','2020-03-17 09:20:00',1,'2020-03-17 10:15:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(207,'https://wiki.php.net/rfc/request_response','Server-Side Request and Response Objects','close',NULL,'','[]','2020-03-20 12:32:00',1,'2020-03-20 13:30:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(208,'https://wiki.php.net/rfc/userspace_operator_overloading','Userspace operator overloading','close',NULL,'8.0','[]','2020-03-23 17:02:00',1,'2020-03-23 17:48:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(209,'https://wiki.php.net/rfc/compact-object-property-assignment','Compact Object Property Assignment','close',NULL,'8.0','[]','2020-03-31 01:30:00',1,'2020-03-31 02:18:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(210,'https://wiki.php.net/rfc/throw_expression','throw expression','close',NULL,'8.0','[]','2020-04-05 09:29:00',0,'2020-04-05 10:00:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(211,'https://wiki.php.net/rfc/typecast_array_desctructuring','Type casting in array destructuring expressions','close',NULL,'8.0','[]','2020-04-09 09:11:00',1,'2020-04-09 09:43:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(212,'https://wiki.php.net/rfc/pdo_default_errmode','Change Default PDO Error Mode','close',NULL,'','[]','2020-04-13 11:45:00',0,'2020-04-13 12:37:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(213,'https://wiki.php.net/rfc/trailing_comma_in_parameter_list','Allow trailing comma in parameter list','close',NULL,'8.0','[]','2020-04-14 09:17:00',0,'2020-04-14 10:18:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(214,'https://wiki.php.net/rfc/arithmetic_operator_type_checks','Stricter type checks for arithmetic/bitwise operators','close',NULL,'8.0','[]','2020-04-16 09:32:00',0,'2020-04-16 10:33:06');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(215,'https://wiki.php.net/rfc/add_str_starts_with_and_ends_with_functions','Add str_starts_with() and str_ends_with() functions','close',NULL,'8.0','[]','2020-04-20 03:28:00',0,'2020-04-20 03:57:06');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(216,'https://wiki.php.net/rfc/attributes_v2','Attributes v2','close',NULL,'8.0','[]','2020-04-20 08:10:00',0,'2020-04-20 09:12:07');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(217,'https://wiki.php.net/rfc/locale_independent_float_to_string','Locale-independent float to string cast','close',NULL,'8.0','[]','2020-04-23 07:08:00',0,'2020-04-23 08:09:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(218,'https://wiki.php.net/rfc/match_expression','Match expression','close',NULL,'8.0','[]','2020-04-25 09:49:00',1,'2020-04-25 10:34:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(219,'https://wiki.php.net/rfc/mixed_type_v2','Mixed Type v2','close',NULL,'8.0','[]','2020-05-07 07:57:00',0,'2020-05-07 08:59:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(220,'https://wiki.php.net/rfc/non-capturing_catches','non-capturing catches','close',NULL,'8.0','[]','2020-05-10 07:35:00',0,'2020-05-10 08:24:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(221,'https://wiki.php.net/rfc/unbundle_xmlprc','Unbundle ext/xmlrpc','close',NULL,'8.0','[]','2020-05-12 09:06:00',0,'2020-05-12 10:04:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(222,'https://wiki.php.net/rfc/always_enable_json','Always available JSON extension','close',NULL,'8.0','[]','2020-05-13 12:34:00',0,'2020-05-13 13:30:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(223,'https://wiki.php.net/rfc/constructor_promotion','Constructor Property Promotion','close',NULL,'8.0','[]','2020-05-15 07:09:00',0,'2020-05-15 08:10:08');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(224,'https://wiki.php.net/rfc/php-namespace-in-core','PHP Namespace in core','close',NULL,'8.0','[]','2020-05-22 05:11:00',1,'2020-05-22 06:13:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(225,'https://wiki.php.net/rfc/magic-methods-signature','Ensure correct signatures of magic methods','close',NULL,'8.0','[]','2020-05-29 15:45:00',0,'2020-05-29 16:47:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(226,'https://wiki.php.net/rfc/opcache.no_cache','Opcache optimization without any caching','close',NULL,'','[]','2020-05-30 14:55:00',0,'2020-05-30 15:51:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(227,'https://wiki.php.net/rfc/stable_sorting','Make sorting stable','close',NULL,'8.0','[]','2020-06-03 12:02:00',0,'2020-06-03 13:03:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(228,'https://wiki.php.net/rfc/attribute_amendments','Attribute Amendments','close',NULL,'8.0','[]','2020-06-08 07:12:00',0,'2020-06-08 08:11:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(229,'https://wiki.php.net/rfc/inheritance_private_methods','Remove inappropriate inheritance signature checks on private methods','close',NULL,'','[]','2020-06-15 19:36:00',0,'2020-06-15 20:38:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(230,'https://wiki.php.net/rfc/shorter_attribute_syntax','Shorter Attribute Syntax','close',NULL,'8.0','[]','2020-06-17 23:23:00',0,'2020-06-17 23:59:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(231,'https://wiki.php.net/rfc/match_expression_v2','Match expression v2','close',NULL,'8.0','[]','2020-06-19 07:59:00',0,'2020-06-19 08:59:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(232,'https://wiki.php.net/rfc/rename-double-colon-token','Rename T_PAAMAYIM_NEKUDOTAYIM to T_DOUBLE_COLON','close',NULL,'','[]','2020-06-25 13:52:00',1,'2020-06-25 14:54:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(233,'https://wiki.php.net/rfc/make_ctor_ret_void','Make constructors and destructors return void','close',NULL,'8.0','[]','2020-07-02 20:18:00',0,'2020-07-02 21:12:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(234,'https://wiki.php.net/rfc/named_params','Named Arguments','close',NULL,'8.0','[]','2020-07-10 07:30:00',0,'2020-07-10 08:32:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(235,'https://wiki.php.net/rfc/throwable_string_param_max_len','zend.exception_string_param_max_len: Configurable string length in getTraceAsString()','close',NULL,'','[]','2020-07-11 17:24:00',0,'2020-07-11 18:19:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(236,'https://wiki.php.net/rfc/trailing_comma_in_closure_use_list','Allow trailing comma in closure use lists','close',NULL,'8.0','[]','2020-07-15 12:30:00',0,'2020-07-15 13:28:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(237,'https://wiki.php.net/rfc/saner-numeric-strings','Saner numeric strings','close',NULL,'','[]','2020-07-16 12:18:00',0,'2020-07-16 13:20:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(238,'https://wiki.php.net/rfc/nullsafe_operator','Nullsafe operator','close',NULL,'8.0','[]','2020-07-17 08:01:00',0,'2020-07-17 09:03:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(239,'https://wiki.php.net/rfc/string_to_number_comparison','Saner string to number comparisons','close',NULL,'8.0','[]','2020-07-17 08:34:00',0,'2020-07-17 09:35:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(240,'https://wiki.php.net/rfc/namespaced_names_as_token','Treat namespaced names as single token','close',NULL,'8.0','[]','2020-07-17 09:03:00',0,'2020-07-17 10:05:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(241,'https://wiki.php.net/rfc/stack-frame-class','StackFrame class','close',NULL,'8.0','[]','2020-07-21 10:52:00',1,'2020-07-21 11:53:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(242,'https://wiki.php.net/rfc/phar_stop_autoloading_metadata','Don''t automatically unserialize Phar metadata outside getMetadata()','close',NULL,'','[]','2020-07-21 13:14:00',0,'2020-07-21 13:29:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(243,'https://wiki.php.net/rfc/php_namespace_policy','PHP Namespace Policy','close',NULL,'','[]','2020-07-26 15:07:00',1,'2020-07-26 16:08:09');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(244,'https://wiki.php.net/rfc/shorter_attribute_syntax_change','Shorter Attribute Syntax Change','close',NULL,'8.0','[]','2020-08-10 07:00:00',0,'2020-08-10 08:04:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(245,'https://wiki.php.net/rfc/explicit_octal_notation','Explicit octal integer literal notation','close',NULL,'8.1','[]','2020-11-11 11:24:00',0,'2020-11-11 12:27:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(246,'https://wiki.php.net/rfc/any_all_on_iterable_straw_poll','Straw poll: Naming for *any() and *all() on iterables','close',NULL,'','[]','2020-12-19 19:12:00',0,'2020-12-19 20:15:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(247,'https://wiki.php.net/rfc/restrict_globals_usage','Restrict $GLOBALS usage','close',NULL,'8.1','[]','2020-12-23 08:00:00',0,'2020-12-23 09:02:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(248,'https://wiki.php.net/rfc/is_list','Add array_is_list(array $array): bool','close',NULL,'8.1','[]','2021-01-07 00:25:00',0,'2021-01-07 01:03:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(249,'https://wiki.php.net/rfc/readline_interactive_shell_result_function_straw_poll','Straw poll: Interest in configurable callback to dump results of expressions in ''''php -a''''','close',NULL,'','[]','2021-01-08 02:05:00',0,'2021-01-08 03:05:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(250,'https://wiki.php.net/rfc/any_all_on_iterable_straw_poll_namespace','Straw poll: Using namespaces for *any() and *all() on iterables','close',NULL,'','[]','2021-01-19 23:21:00',0,'2021-01-20 00:11:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(251,'https://wiki.php.net/rfc/readline_interactive_shell_result_function','Dump results of expressions in `php -a`','close',NULL,'8.1','[]','2021-01-19 23:50:00',1,'2021-01-20 00:47:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(252,'https://wiki.php.net/rfc/array_unpacking_string_keys','Array unpacking with string keys','close',NULL,'8.1','[]','2021-01-25 13:03:00',0,'2021-01-25 14:04:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(253,'https://wiki.php.net/rfc/deprecate_null_to_scalar_internal_arg','Deprecate passing null to non-nullable arguments of internal functions','close',NULL,'8.1','[]','2021-01-26 08:58:00',0,'2021-01-26 10:00:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(254,'https://wiki.php.net/rfc/enumerations','Enumerations','close',NULL,'8.1','[]','2021-02-03 16:06:00',0,'2021-02-03 17:15:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(255,'https://wiki.php.net/rfc/readable_var_representation','var_representation() : readable alternative to var_export()','close',NULL,'8.1','[]','2021-02-05 23:30:00',1,'2021-02-06 00:32:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(256,'https://wiki.php.net/rfc/any_all_on_iterable','PHP\iterable\any() and all() on iterables','close',NULL,'8.1','[]','2021-02-08 13:26:00',1,'2021-02-08 14:28:06');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(257,'https://wiki.php.net/rfc/mysqli_default_errmode','Change Default mysqli Error Mode','close',NULL,'8.1','[]','2021-02-10 22:35:00',0,'2021-02-10 23:27:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(258,'https://wiki.php.net/rfc/fsync_function','fsync() function','close',NULL,'8.1','[]','2021-02-24 16:20:00',0,'2021-02-24 17:15:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(259,'https://wiki.php.net/rfc/fibers','Fibers','close',NULL,'8.1','[]','2021-03-08 18:19:00',0,'2021-03-08 19:27:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(260,'https://wiki.php.net/rfc/mysqli_bind_in_execute','mysqli bind in execute','close',NULL,'8.1','[]','2021-03-08 22:11:00',0,'2021-03-08 23:12:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(261,'https://wiki.php.net/rfc/noreturn_type','noreturn type','close',NULL,'8.1','[]','2021-03-30 14:12:00',0,'2021-03-30 15:04:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(262,'https://wiki.php.net/rfc/object_scope_prng','Object scoped RNG Implementations.','close',NULL,'','[]','2021-04-01 05:20:03',1,'2021-04-01 05:20:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(263,'https://wiki.php.net/rfc/implicit-float-int-deprecate','Deprecate implicit non-integer-compatible float to int conversions','close',NULL,'','[]','2021-04-01 10:41:00',0,'2021-04-01 11:41:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(264,'https://wiki.php.net/rfc/direct-execution-opcode','Direct execution opcode file without php source code file','close',NULL,'','[]','2021-04-05 01:21:00',1,'2021-04-05 02:07:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(265,'https://wiki.php.net/rfc/phase_out_serializable','Phasing out Serializable','close',NULL,'8.1','[]','2021-04-14 07:21:00',0,'2021-04-14 08:23:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(266,'https://wiki.php.net/rfc/static_variable_inheritance','Static variables in inherited methods','close',NULL,'8.1','[]','2021-04-14 07:26:00',0,'2021-04-14 08:32:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(267,'https://wiki.php.net/rfc/mysqli_fetch_column','Add fetch_column method to mysqli','close',NULL,'8.1','[]','2021-04-17 15:55:00',0,'2021-04-17 16:56:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(268,'https://wiki.php.net/rfc/namespaces_in_bundled_extensions','Namespaces in bundled PHP extensions','close',NULL,'8.1','[]','2021-04-19 12:04:00',0,'2021-04-19 13:05:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(269,'https://wiki.php.net/rfc/internal_method_return_types','Add return type declarations for internal methods','close',NULL,'8.1','[]','2021-04-22 06:41:00',0,'2021-04-22 07:41:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(270,'https://wiki.php.net/rfc/intldatetimepatterngenerator','Add IntlDatePatternGenerator','close',NULL,'8.1','[]','2021-05-14 14:59:00',0,'2021-05-14 15:52:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(271,'https://wiki.php.net/rfc/final_class_const','Final class constants','close',NULL,'8.1','[]','2021-05-19 07:01:00',0,'2021-05-19 08:02:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(272,'https://wiki.php.net/rfc/auto-capture-closure','Short Closures 2.0','close',NULL,'8.1','[]','2021-05-31 19:47:00',1,'2021-05-31 21:28:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(273,'https://wiki.php.net/rfc/short-functions','Short Functions','close',NULL,'','[]','2021-05-31 20:04:00',1,'2021-05-31 21:28:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(274,'https://wiki.php.net/rfc/enum_allow_static_properties','Allow static properties in enums','close',NULL,'','[]','2021-06-01 12:20:00',1,'2021-06-01 13:21:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(275,'https://wiki.php.net/rfc/pure-intersection-types','Pure intersection types','close',NULL,'8.1','[]','2021-06-03 18:31:00',0,'2021-06-03 19:33:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(276,'https://wiki.php.net/rfc/cachediterable_straw_poll','Straw poll: Namespace to use for CachedIterable and iterable functionality','close',NULL,'','[]','2021-06-05 15:46:00',0,'2021-06-05 16:50:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(277,'https://wiki.php.net/rfc/autovivification_false','Deprecate autovivification on false','close',NULL,'8.1','[]','2021-06-09 18:59:00',0,'2021-06-09 19:39:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(278,'https://wiki.php.net/rfc/cachediterable','ImmutableIterable (immutable, rewindable, memory-efficient, allows any key&repeating keys)','close',NULL,'','[]','2021-06-15 12:53:00',0,'2021-06-15 13:49:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(279,'https://wiki.php.net/rfc/partial_function_application','Partial Function Application','close',NULL,'','[]','2021-06-16 15:11:00',1,'2021-06-16 17:27:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(280,'https://wiki.php.net/rfc/make-reflection-setaccessible-no-op','Make reflection setAccessible() no-op','close',NULL,'','[]','2021-06-23 14:06:00',0,'2021-06-23 15:54:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(281,'https://wiki.php.net/rfc/new_in_initializers','New in initializers','close',NULL,'8.1','[]','2021-06-30 06:51:00',0,'2021-06-30 07:53:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(282,'https://wiki.php.net/rfc/deprecations_php_8_1','Deprecations for PHP 8.1','close',NULL,'','[]','2021-06-30 07:28:00',0,'2021-06-30 08:29:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(283,'https://wiki.php.net/rfc/readonly_properties_v2','Readonly properties 2.0','close',NULL,'8.1','[]','2021-07-01 09:16:00',0,'2021-07-01 10:17:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(284,'https://wiki.php.net/rfc/first_class_callable_syntax','First-class callable syntax','close',NULL,'8.1','[]','2021-07-02 09:43:00',0,'2021-07-02 10:44:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(285,'https://wiki.php.net/rfc/is_literal','Is_Literal','close',NULL,'','[]','2021-07-05 17:40:00',1,'2021-07-05 18:14:06');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(286,'https://wiki.php.net/rfc/pdo-mysql-get-warning-count','Add PDO function: mysqlGetWarningCount','close',NULL,'','[]','2021-07-06 08:52:00',1,'2021-07-06 09:45:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(287,'https://wiki.php.net/rfc/pipe-operator-v2','Pipe Operator v2','close',NULL,'','[]','2021-07-06 16:10:00',1,'2021-07-06 17:12:07');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(288,'https://wiki.php.net/rfc/nullable_intersection_types','Nullable Intersection types','close',NULL,'','[]','2021-08-13 08:37:00',0,'2021-08-13 09:34:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(289,'https://wiki.php.net/rfc/deprecate_partially_supported_callables','Deprecate partially supported callables','close',NULL,'8.2','[]','2021-10-08 13:04:00',0,'2021-10-11 07:11:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(290,'https://wiki.php.net/rfc/deprecate_dynamic_properties','Deprecate dynamic properties','close',NULL,'8.2','[]','2021-11-12 11:04:00',0,'2021-11-12 13:07:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(291,'https://wiki.php.net/rfc/github_issues','Migrating to GitHub Issues','close',NULL,'','[]','2021-11-20 09:33:00',0,'2021-11-20 10:35:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(292,'https://wiki.php.net/rfc/strtolower-ascii','Locale-independent case conversion','close',NULL,'8.2','[]','2021-11-25 04:25:00',0,'2021-11-25 04:54:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(293,'https://wiki.php.net/rfc/array_column_results_grouping','Add array_group function','close',NULL,'','[]','2021-12-21 07:53:00',1,'2021-12-21 08:50:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(294,'https://wiki.php.net/rfc/user_defined_operator_overloads','User Defined Operator Overloads','close',NULL,'','[]','2022-01-02 23:16:00',1,'2022-01-03 00:15:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(295,'https://wiki.php.net/rfc/deque_straw_poll','Straw poll: Naming pattern to use for Deque','close',NULL,'','[]','2022-01-12 12:43:00',0,'2022-01-12 13:44:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(296,'https://wiki.php.net/rfc/mysqli_support_for_libmysql','Remove support for libmysql from mysqli','close',NULL,'','[]','2022-01-22 17:38:00',0,'2022-01-22 18:39:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(297,'https://wiki.php.net/rfc/redact_parameters_in_back_traces','Redacting parameters in back traces','close',NULL,'','[]','2022-02-09 12:09:00',0,'2022-02-09 13:02:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(298,'https://wiki.php.net/rfc/null-false-standalone-types','Allow null and false as stand-alone types','close',NULL,'8.2','[]','2022-03-12 16:30:00',0,'2022-03-12 17:32:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(299,'https://wiki.php.net/rfc/undefined_variable_error_promotion','Undefined Variable Error Promotion','close',NULL,'','[]','2022-03-14 16:17:00',0,'2022-03-14 17:16:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(300,'https://wiki.php.net/rfc/sealed_classes','Sealed Classes','close',NULL,'8.2','[]','2022-03-17 03:25:00',1,'2022-03-17 03:55:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(301,'https://wiki.php.net/rfc/remove_utf8_decode_and_utf8_encode','Deprecate and Remove utf8_encode and utf8_decode','close',NULL,'','[]','2022-04-05 17:39:00',0,'2022-04-05 18:42:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(302,'https://wiki.php.net/rfc/deprecate_dollar_brace_string_interpolation','Deprecate ${} string interpolation','close',NULL,'8.2','[]','2022-04-08 13:42:00',0,'2022-04-08 14:41:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(303,'https://wiki.php.net/rfc/undefined_property_error_promotion','Undefined Property Error Promotion','close',NULL,'','[]','2022-04-21 20:40:00',0,'2022-04-21 21:39:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(304,'https://wiki.php.net/rfc/readonly_classes','Readonly classes','close',NULL,'8.2','[]','2022-04-27 06:05:00',0,'2022-04-27 07:06:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(305,'https://wiki.php.net/rfc/mysqli_execute_query','MySQLi Execute Query','close',NULL,'','[]','2022-05-11 13:56:00',0,'2022-05-11 14:47:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(306,'https://wiki.php.net/rfc/true-type','Add true type','close',NULL,'8.2','[]','2022-05-29 13:38:00',0,'2022-05-29 14:40:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(307,'https://wiki.php.net/rfc/partially-supported-callables-expand-deprecation-notices','Expand deprecation notice scope for partially supported callables','close',NULL,'','[]','2022-05-31 09:35:00',0,'2022-05-31 10:33:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(308,'https://wiki.php.net/rfc/stricter_implicit_boolean_coercions','Stricter implicit boolean coercions','close',NULL,'','[]','2022-06-05 21:07:00',1,'2022-06-05 21:54:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(309,'https://wiki.php.net/rfc/global_login','Create a global login system for php.net','close',NULL,'','[]','2022-06-11 05:13:00',0,'2022-06-11 06:12:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(310,'https://wiki.php.net/rfc/rng_extension','Random Extension 5.x','close',NULL,'','[]','2022-06-14 00:01:04',0,'2022-06-14 00:01:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(311,'https://wiki.php.net/rfc/dnf_types','Disjunctive Normal Form Types','close',NULL,'','[]','2022-06-17 14:19:00',0,'2022-06-17 15:21:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(312,'https://wiki.php.net/rfc/fetch_property_in_const_expressions','Fetch properties of enums in const expressions','close',NULL,'8.2','[]','2022-07-01 12:00:00',0,'2022-07-01 12:59:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(313,'https://wiki.php.net/rfc/random_extension_improvement','Random Extension Improvement','close',NULL,'','[]','2022-07-03 02:49:04',0,'2022-07-03 02:49:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(314,'https://wiki.php.net/rfc/json_encode_indentation','json_encode indentation','close',NULL,'','[]','2022-07-04 18:22:00',1,'2022-07-04 19:36:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(315,'https://wiki.php.net/rfc/curl-url-api','New Curl URL API','close',NULL,'','[]','2022-07-04 23:05:00',1,'2022-07-04 23:36:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(316,'https://wiki.php.net/rfc/iterator_xyz_accept_array','Make the iterator_*() family accept all iterables','close',NULL,'','[]','2022-07-05 13:30:00',0,'2022-07-05 14:31:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(317,'https://wiki.php.net/rfc/constants_in_traits','Constants in Traits','close',NULL,'','[]','2022-07-05 21:02:00',0,'2022-07-05 21:37:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(318,'https://wiki.php.net/rfc/json_validate','json_validate','close',NULL,'','[]','2022-09-22 04:28:02',0,'2022-09-22 04:28:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(319,'https://wiki.php.net/rfc/improve_unserialize_error_handling','Improve unserialize() error handling','close',NULL,'','[]','2022-10-14 12:45:00',0,'2022-10-14 13:46:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(320,'https://wiki.php.net/rfc/destructuring_coalesce','Destructuring Coalesce','close',NULL,'','[]','2022-11-07 21:35:00',1,'2022-11-07 22:30:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(321,'https://wiki.php.net/rfc/randomizer_additions','Randomizer Additions','close',NULL,'','[]','2022-11-09 07:49:00',0,'2022-11-09 08:49:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(322,'https://wiki.php.net/rfc/datetime-exceptions','More Appropriate Date/Time Exceptions','close',NULL,'','[]','2022-12-15 13:26:00',0,'2022-12-15 14:27:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(323,'https://wiki.php.net/rfc/dynamic_class_constant_fetch','Dynamic class constant fetch','close',NULL,'8.3','[]','2022-12-22 16:59:00',0,'2022-12-22 18:01:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(324,'https://wiki.php.net/rfc/asymmetric-visibility','Asymmetric Visibility','close',NULL,'','[]','2023-01-06 21:51:00',0,'2023-01-06 22:51:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(325,'https://wiki.php.net/rfc/readonly_amendments','Readonly amendments','close',NULL,'8.3','[]','2023-01-24 07:53:00',0,'2023-01-24 08:55:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(326,'https://wiki.php.net/rfc/include_cleanup','include cleanup','close',NULL,'','[]','2023-02-01 08:40:00',0,'2023-02-01 12:45:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(327,'https://wiki.php.net/rfc/saner-array-sum-product','Saner array_(sum|product)()','close',NULL,'8.3','[]','2023-02-20 13:03:00',0,'2023-02-20 14:06:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(328,'https://wiki.php.net/rfc/typed_class_constants','Typed class constants','close',NULL,'8.3','[]','2023-02-27 15:51:00',0,'2023-02-27 16:54:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(329,'https://wiki.php.net/rfc/arbitrary_static_variable_initializers','Arbitrary static variable initializers','close',NULL,'8.3','[]','2023-03-21 16:20:00',0,'2023-03-21 17:21:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(330,'https://wiki.php.net/rfc/unserialize_warn_on_trailing_data','Make unserialize() emit a warning for trailing bytes','close',NULL,'','[]','2023-04-12 07:02:00',0,'2023-04-12 08:01:02');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(331,'https://wiki.php.net/rfc/php_technical_committee','PHP Technical Committee','close',NULL,'','[]','2023-04-28 08:46:00',1,'2023-04-28 09:49:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(332,'https://wiki.php.net/rfc/clone_with','Clone with','open',NULL,'8.3','[]','2023-04-28 09:49:03',0,'2023-04-28 09:49:03');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(333,'https://wiki.php.net/rfc/core-autoloading','New core autoloading mechanism with support for function autoloading','close',NULL,'8.3','[]','2023-04-28 09:49:04',1,'2023-04-28 09:49:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(334,'https://wiki.php.net/rfc/proper-range-semantics','Define proper semantics for range() function','close',NULL,'8.3','[]','2023-04-28 09:49:04',1,'2023-04-28 09:49:04');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(335,'https://wiki.php.net/rfc/working_with_substrings','Working With Substrings','open',NULL,'','[]','2023-04-28 09:49:05',0,'2023-04-28 09:49:05');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(336,'https://wiki.php.net/rfc/pass_scope_to_magic_accessors','','open',NULL,'','[]','2023-04-28 09:49:06',0,'2023-04-28 09:49:06');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(337,'https://wiki.php.net/rfc/saner-inc-dec-operators','Path to Saner Increment/Decrement operators','close',NULL,'8.3, 8.(3+x), and 9.0','[]','2023-04-28 09:49:06',1,'2023-04-28 09:49:06');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(338,'https://wiki.php.net/rfc/file-descriptor-function','Add file_descriptor() function','close',NULL,'8.3','[]','2023-04-28 09:49:07',1,'2023-04-28 09:49:07');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(339,'https://wiki.php.net/rfc/same-site-parameter','Add SameSite cookie attribute parameter','close',NULL,'8.3','[]','2023-04-28 09:49:07',1,'2023-04-28 09:49:07');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(340,'https://wiki.php.net/rfc/unicode_text_processing','Unicode Text Processing','open',NULL,'','[]','2023-04-28 09:49:08',0,'2023-04-28 09:49:08');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(341,'https://wiki.php.net/rfc/list_assoc_unique','List\unique() and Assoc\unique()','close',NULL,'8.3','[]','2023-04-28 09:49:08',1,'2023-04-28 09:49:08');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(342,'https://wiki.php.net/rfc/sqlite3_exceptions','Use exceptions by default in SQLite3 extension','open',NULL,'','[]','2023-04-28 09:49:09',0,'2023-04-28 09:49:09');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(343,'https://wiki.php.net/rfc/pdo_driver_specific_subclasses','PDO driver specific sub-classes','open',NULL,'','[]','2023-04-28 09:49:09',0,'2023-04-28 09:49:09');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(344,'https://wiki.php.net/rfc/shell_exec_result_code_param','Add an optional parameter $result_code to shell_exec()','open',NULL,'','[]','2023-04-28 09:49:10',0,'2023-04-28 09:49:10');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(345,'https://wiki.php.net/rfc/deque','final class Collections\Deque','open',NULL,'','[]','2023-04-28 09:49:10',0,'2023-04-28 09:49:10');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(346,'https://wiki.php.net/rfc/vector','final class Vector','open',NULL,'','[]','2023-04-28 09:49:12',0,'2023-04-28 09:49:12');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(347,'https://wiki.php.net/rfc/curl_user_agent','Default User-Agent for cURL','open',NULL,'8.2','[]','2023-04-28 09:49:13',0,'2023-04-28 09:49:13');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(348,'https://wiki.php.net/rfc/clamp','clamp','open',NULL,'8.2','[]','2023-04-28 09:49:13',0,'2023-04-28 09:49:13');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(349,'https://wiki.php.net/rfc/deprecate-boolean-string-coercion','Deprecate boolean to string coercion','open',NULL,'8.1','[]','2023-04-28 09:49:14',0,'2023-04-28 09:49:14');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(350,'https://wiki.php.net/rfc/property_accessors','Property Accessors','open',NULL,'8.1','[]','2023-04-28 09:49:14',0,'2023-04-28 09:49:14');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(351,'https://wiki.php.net/rfc/autoload_classmap','Autoload Classmap','open',NULL,'','[]','2023-04-28 09:49:15',0,'2023-04-28 09:49:15');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(352,'https://wiki.php.net/rfc/improve_mysqli','Concepts to improve mysqli extension','open',NULL,'','[]','2023-04-28 09:49:15',0,'2023-04-28 09:49:15');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(353,'https://wiki.php.net/rfc/max_execution_wall_time','Wall-Clock Time Based Execution Timeout','open',NULL,'8.1','[]','2023-04-28 09:49:16',0,'2023-04-28 09:49:16');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(354,'https://wiki.php.net/rfc/renamed_parameters','Named Parameters explicit opt in','open',NULL,'','[]','2023-04-28 09:49:17',0,'2023-04-28 09:49:17');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(355,'https://wiki.php.net/rfc/objects-can-be-falsifiable','Objects can be declared falsifiable','open',NULL,'','[]','2023-04-28 09:49:17',0,'2023-04-28 09:49:17');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(356,'https://wiki.php.net/rfc/property_write_visibility','Property write/set visibility','open',NULL,'','[]','2023-04-28 09:49:18',0,'2023-04-28 09:49:18');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(357,'https://wiki.php.net/rfc/change-terminology-to-excludelist','Change terminology to ExcludeList','open',NULL,'8.0','[]','2023-04-28 09:49:18',0,'2023-04-28 09:49:18');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(358,'https://wiki.php.net/rfc/deprecated_attribute','#[Deprecated] Attribute','open',NULL,'','[]','2023-04-28 09:49:19',0,'2023-04-28 09:49:19');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(359,'https://wiki.php.net/rfc/var-export-array-syntax','Change var_export() array syntax to use shorthand arrays','open',NULL,'','[]','2023-04-28 09:49:19',0,'2023-04-28 09:49:19');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(360,'https://wiki.php.net/rfc/to-array','__toArray()','open',NULL,'','[]','2023-04-28 09:49:20',0,'2023-04-28 09:49:20');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(361,'https://wiki.php.net/rfc/prevent_disruptions_of_conversations','Prevent disruptions of conversations','open',NULL,'','[]','2023-04-28 09:49:20',0,'2023-04-28 09:49:20');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(362,'https://wiki.php.net/rfc/alternative-closure-use-syntax','Alternative "use" syntax for Closures','open',NULL,'','[]','2023-04-28 09:49:22',0,'2023-04-28 09:49:22');
INSERT INTO rfc (id , url , title , status , close_date , target_php_version , discussions , first_vote , rejected , created) VALUES(363,'https://wiki.php.net/rfc/nullable-casting','Nullable Casting','open',NULL,'','[]','2023-04-28 09:49:23',0,'2023-04-28 09:49:23');
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(1,1,1,'doodle__form__make_compact_function_reports_undefined_passed_variables','Make compact function reports undefined passed variables','{"Yes":32,"No":5}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(2,2,1,'doodle__form__argon2_password_hash_enhancements','argon2_password_hash_enhancements','{"Yes":17}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(3,3,1,'doodle__form__institute_the_policy_of_cleaning_up_unmaintained_extensions_as_described_in_this_rfc','Institute the policy of cleaning up unmaintained extensions as described in this RFC','{"Yes":19,"No":4}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(4,4,1,'doodle__form__add_iterable_to_array','Add iterable_to_array()?','{"Yes":8,"No":24}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(5,5,1,'doodle__form__support_class_friendship','Support Class Friendship?','{"Yes":6,"No":27}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(6,6,1,'doodle__form__deprecate_and_subsequently_remove_undocumented_mbstring_function_aliases','Deprecate (and subsequently remove) undocumented mbstring function aliases?','{"Yes":37,"No":1}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(7,7,1,'doodle__form__deprecate_and_later_remove_case-insensitive_constants','Deprecate (and later remove) case-insensitive constants?','{"Yes":39}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(8,8,1,'doodle__form__add_array_key_first_and_array_key_last','Add array_key_first() and array_key_last()?','{"Yes":18,"No":14}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(9,9,1,'doodle__form__support_user-defined_object_comparison','Support user-defined object comparison?','{"Yes":5,"No":12}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(10,4,1,'doodle__form__add_iterable_count','Add iterable_count()?','{"Yes":2,"No":35}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(11,6,1,'doodle__form__deprecate_and_subsequently_remove_integer_needles_in_string_search_functions','Deprecate (and subsequently remove) integer needles in string search functions?','{"Yes":32,"No":1}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(12,6,1,'doodle__form__deprecate_and_subsequently_remove_fgetss_and_variations_and_the_string.strip_tags_filter','Deprecate (and subsequently remove) fgetss() (and variations) and the string.strip_tags filter?','{"Yes":20,"No":4}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(13,6,1,'doodle__form__deprecate_and_subsequently_remove_support_for_defining_a_free-standing_assert_function','Deprecate (and subsequently remove) support for defining a free-standing assert() function?','{"Yes":20,"No":7}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(14,6,1,'doodle__form__deprecate_and_subsequently_remove_filter_flag_scheme_host_required_flags','Deprecate (and subsequently remove) FILTER_FLAG_(SCHEME|HOST)_REQUIRED flags?','{"Yes":31}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(15,6,1,'doodle__form__deprecate_and_subsequently_remove_pdo_odbc.db2_instance_name_php.ini_directive','Deprecate (and subsequently remove) pdo_odbc.db2_instance_name php.ini directive?','{"Yes":29}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(16,8,1,'doodle__form__add_array_value_first_and_array_value_last','Add array_value_first() and array_value_last()?','{"Yes":15,"No":18}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(17,10,1,'doodle__form__add_support_for_typed_properties_as_described_in_this_rfc','Add support for typed properties as described in this RFC?','{"Yes":70,"No":1}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(18,11,1,'doodle__form__make_the_hash_extension_always_available_as_described_in_this_rfc','Make the hash extension always available as described in this RFC?','{"Yes":30}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(19,12,1,'doodle__form__make_openssl_random_pseudo_bytes_fail_closed','Make openssl_random_pseudo_bytes() fail closed','{"Yes":30}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(20,12,1,'doodle__form__deprecate_the_usage_of_the_crypto_strong_parameter','Deprecate the usage of the $crypto_strong parameter','{"Yes":12,"No":12}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(21,13,1,'doodle__form__include_preloading_ability_into_php-7.4','Include preloading ability into PHP-7.4','{"Yes":48}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(22,14,1,'doodle__form__make_the_password_hashing_system_extensible_via_internal-only_registry','Make the password hashing system extensible via internal-only registry?','{"Yes":21}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(23,14,1,'doodle__form__support_integer_constants_0-3_to_password_hash_et._al._for_bc','Support integer constants 0-3 to password_hash() et. al. for BC','{"Yes":19,"No":1}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(24,15,1,'doodle__form__accept_covariant_returns_and_contravariant_parameters','Accept Covariant Returns and Contravariant Parameters?','{"Yes":39,"No":1}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(25,16,1,'doodle__form__include_ffi_extension_into_php-7.4_bundle','Include FFI extension into PHP-7.4 (bundle)?','{"Yes":24,"No":15}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(26,17,1,'doodle__form__mb_str_split','mb_str_split','[]',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(27,17,1,'doodle__form__include_mb_str_split_into_next_php-7.x','Include mb_str_split into next PHP-7.x?','{"Yes":10,"No":1}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(28,18,1,'doodle__form__unbundle_ext:wddx','Unbundle ext/wddx','{"Yes":30}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(29,18,1,'doodle__form__unbundle_ext:wddx_details','Unbundle ext/wddx details','{"depr. 7.4\/move 8.0(1)":4,"depr. and move 7.4(2)":19,"dump 7.4(4)":3,"move 7.4(3)":2}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(30,19,1,'doodle__form__add_reflectionreference','Add ReflectionReference?','{"Yes":30,"No":1}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(31,20,1,'doodle__form__making_stdclass_iterable','Making stdClass iterable','{"Yes":7,"No":25}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(32,21,1,'doodle__form__adopt_the_changes_in_this_proposal','Adopt the changes in this proposal?','{"Yes":30,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(33,22,1,'doodle__form__make_zpp_failures_always_throw_typeerror','Make zpp failures always throw TypeError?','{"Yes":50,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(34,23,1,'doodle__form__implement_weakrefs','Implement weakrefs ?','{"Yes":28,"No":5}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(35,24,1,'doodle__form__include_proposed_serialization_mechanism_in_php_7.4','Include proposed serialization mechanism in PHP 7.4?','{"Yes":19,"No":7}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(36,25,1,'doodle__form__include_jit_into_php_8','Include JIT into PHP 8?','{"Yes":50,"No":2}',50,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(37,25,1,'doodle__form__include_jit_into_php_7.4_experimental','Include JIT into PHP 7.4 (experimental)?','{"Yes":18,"No":36}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(38,26,1,'doodle__form__adopt_the_changes_in_this_abolish_short_votes_proposal','Adopt the changes in this (abolish short votes) proposal?','{"Yes":48,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(39,27,1,'doodle__form__move_ext:interbase_to_pecl','Move ext/interbase to PECL','{"Yes":46}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(40,28,1,'doodle__form__deprecate_php_short_open_tags_in_php_7.4','Deprecate PHP short open tags in PHP 7.4?','{"Yes":38,"No":18}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(41,28,1,'doodle__form__remove_php_short_open_tags_in_php_8.0','Remove PHP short open tags in PHP 8.0?','{"Yes":42,"No":15}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(42,29,1,'doodle__form__add_arrow_functions_as_described_in_php_7.4','Add arrow functions as described in PHP 7.4?','{"Yes":51,"No":8}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(43,30,1,'doodle__form__support_spread_operator_for_array_definition_in_php_7.4','Support spread operator for array definition in PHP 7.4?','{"Yes":43,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(44,31,1,'doodle__form__deprecate_and_remove_left-associative_ternary_without_explicit_parentheses','Deprecate and remove left-associative ternary without explicit parentheses?','{"Yes":35,"No":10}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(45,32,1,'doodle__form__always_generate_fatal_error_for_incompatible_method_signatures_in_php_8','Always generate fatal error for incompatible method signatures in PHP 8?','{"Yes":39,"No":3}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(46,33,1,'doodle__form__change_the_precedence_of_the_concatenation_operator_as_proposed','Change the precedence of the concatenation operator as proposed?','{"Yes":1,"No":1}',66,1);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(47,33,1,'doodle__form__emit_a_deprecation_notice_in_php_7.4_if_the_rfc_is_accepted','Emit a deprecation notice in PHP 7.4 if the RFC is accepted?','{"Yes":30,"No":7}',66,1);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(48,33,1,'doodle__form__change_the_precedence_of_the_concatenation_operator_as_proposed_in_php_8','Change the precedence of the concatenation operator as proposed in PHP 8?','{"Yes":31,"No":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(49,34,1,'doodle__form__allow_exceptions_from_tostring_in_php_7.4','Allow exceptions from __toString() in PHP 7.4?','{"Yes":42}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(50,35,1,'doodle__form__support_numeric_literal_separator_in_php_7.4','Support numeric literal separator in PHP 7.4?','{"Yes":33,"No":11}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(51,36,1,'doodle__form__raise_deprecated_error_in_7.4_and_raise_to_exception_in_php_8_for_ignored_characters','Raise deprecated error in 7.4 and raise to exception in PHP 8 for ignored characters','[]',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(52,36,1,'doodle__form__allow_negative_numbers_in_php_8','Allow negative numbers in PHP 8','[]',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(53,36,1,'doodle__form__allow_negative_numbers_to_be_converted_in_php_8','Allow negative numbers to be converted in PHP 8','{"Yes":2,"No":17}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(54,36,1,'doodle__form__raise_deprecated_error_in_7.4_and_raise_to_exception_in_php_8_for_unknown_characters','Raise deprecated error in 7.4 and raise to exception in PHP 8 for unknown characters','{"Yes":28,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(55,37,1,'doodle__form__provide_argon2i_d_from_ext:sodium_when_argon_not_present','Provide argon2i(d) from ext/sodium when argon not present','{"Yes":30}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(56,38,1,'doodle__form__unbundle_ext:recode','Unbundle ext/recode','{"Yes":38}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(57,39,1,'doodle__form__normalize_the_auto-increment_on_array_copy','Normalize the auto-increment on array copy?','[]',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(58,39,1,'doodle__form__normalize_the_auto-increment_value_on_array_copy','Normalize the auto-increment value on array copy?','[]',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(59,40,1,'doodle__form__deprecate_curly_brace_array_and_string_offset_syntax_in_php_7.4','Deprecate curly brace array and string offset syntax in PHP 7.4','{"Yes":37,"No":6}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(60,41,1,'doodle__form__do_you_want_str_starts_with_str_starts_with_ci_str_ends_with_and_str_ends_with_ci_functions_in_php_7.4','Do you want str_starts_with, str_starts_with_ci, str_ends_with, and str_ends_with_ci functions in PHP 7.4?','{"yes":27,"no":20}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(61,41,0,'doodle__form__do_you_want_mb_str_starts_with_mb_str_starts_with_ci_mb_str_ends_with_and_mb_str_ends_with_ci_functions_in_php_7.4','Do you want mb_str_starts_with, mb_str_starts_with_ci, mb_str_ends_with, and mb_str_ends_with_ci functions in PHP 7.4?','{"yes":4,"no":37}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(62,42,1,'doodle__form__add_as_a_way_to_escape_in_pdo_parametrised_queries','Add ?? as a way to escape ? in PDO parametrised queries?','{"Yes":27,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(63,43,1,'doodle__form__deprecate_real_cast_and_is_real_function','Deprecate (real) cast and is_real() function?','{"Yes":35,"No":7}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(64,43,1,'doodle__form__deprecate_get_magic_quotes_gpc_and_get_magic_quotes_runtime','Deprecate get_magic_quotes_gpc() and get_magic_quotes_runtime()?','{"Yes":46}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(65,43,1,'doodle__form__deprecate_array_key_exists_with_objects','Deprecate array_key_exists() with objects?','{"Yes":44}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(66,43,1,'doodle__form__deprecate_filter_sanitize_magic_quotes','Deprecate FILTER_SANITIZE_MAGIC_QUOTES?','{"Yes":45}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(67,43,1,'doodle__form__deprecate_reflection_export_methods','Deprecate Reflection export() methods?','{"Yes":37,"No":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(68,43,1,'doodle__form__deprecate_mb_strrpos_with_encoding_as_3rd_argument','Deprecate mb_strrpos() with encoding as 3rd argument?','{"Yes":44}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(69,43,1,'doodle__form__deprecate_implode_with_inverted_parameter_order','Deprecate implode() with inverted parameter order?','{"Yes":38,"No":5}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(70,43,1,'doodle__form__deprecate_unbinding_of_this_from_non-static_closures','Deprecate unbinding of $this from non-static closures?','{"Yes":43}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(71,43,1,'doodle__form__deprecate_hebrevc_function','Deprecate hebrevc() function?','{"Yes":34,"No":7}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(72,43,1,'doodle__form__deprecate_convert_cyr_string_function','Deprecate convert_cyr_string() function?','{"Yes":25,"No":7}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(73,43,1,'doodle__form__deprecate_money_format_function','Deprecate money_format() function?','{"Yes":34,"No":8}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(74,43,1,'doodle__form__deprecate_ezmlm_hash_function','Deprecate ezmlm_hash() function?','{"Yes":37,"No":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(75,43,1,'doodle__form__deprecate_restore_include_path_function','Deprecate restore_include_path() function?','{"Yes":31,"No":9}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(76,43,1,'doodle__form__deprecate_allow_url_include_ini_option','Deprecate allow_url_include ini option?','{"Yes":43}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(77,44,1,'doodle__form__add_strict_operators_directive','Add strict_operators directive?','{"Yes":3,"No":7}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(78,44,1,'doodle__form__should_strict_operator_affect_switch:case','Should strict_operator affect switch/case?','{"Yes":8}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(79,45,1,'doodle__form__deprecate_and_remove_short_open_tags_as_proposed','Deprecate and remove short open tags as proposed?','{"Yes":30,"No":24}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(80,46,1,'doodle__form__change_undefined_variable_severity_to','Change undefined variable severity to?','{"Error exception":36,"Keep Notice":10,"Warning":18}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(81,46,1,'doodle__form__change_undefined_array_index_severity_to','Change undefined array index severity to?','{"Keep Notice":21,"Warning":42}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(82,46,1,'doodle__form__change_division_by_zero_severity_to','Change division by zero severity to?','{"DivisionByZeroError exception":52,"Keep Warning":8}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(83,46,1,'doodle__form__accept_remaining_classifications_shown_in_the_table_above','Accept remaining classifications shown in the table above?','{"Yes":54,"No":3}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(84,47,1,'doodle__form__accept_object_initializer','Accept object initializer?','{"Yes":3,"No":26}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(85,47,1,'doodle__form__choose_between_two_tokens_as_an_assign_operator_in_object_initializer_block','Choose between two tokens as an assign operator in object initializer block?','{"=":16,"=>":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(86,48,1,'doodle__form__add_union_types_as_proposed','Add union types as proposed?','{"Yes":61,"No":5}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(87,49,1,'doodle__form__deprecate_backtick_operator_in_php_8.0','Deprecate backtick operator in PHP 8.0?','{"Yes":11,"No":26}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(88,50,1,'doodle__form__add_union_types_as_proposed','Add union types as proposed?','{"Yes":53,"No":5}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(89,51,1,'doodle__form__deprecate_backtick_operator_in_php_8.0','Deprecate backtick operator in PHP 8.0?','{"Yes":7,"No":16}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(91,52,1,'doodle__form__accept_changes_to_dom_api_to_add_support_for_new_methods_added_in_whatwg_groups_dom_living_standard','Accept changes to DOM API to add support for new methods added in WHATWG groups DOM living standard?','{"Yes":37,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(92,53,1,'doodle__form__allow_for_the_closing_marker_to_be_indented_and_for_the_leading_whitespace_to_be_stripped','Allow for the closing marker to be indented and for the leading whitespace to be stripped?','{"Yes":24,"No":5}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(93,53,0,'doodle__form__remove_the_trailing_new_line_requirement_from_the_closing_marker','Remove the trailing new line requirement from the closing marker?','{"Yes":26,"No":8}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(94,54,1,'doodle__form__allow_a_trailing_comma_in_function_calls','Allow a trailing comma in function calls','{"Yes":30,"No":10}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(95,55,1,'doodle__form__accept_and_merge_json_throw_on_error_for_php_7.3','Accept and merge JSON_THROW_ON_ERROR for PHP 7.3?','{"Yes":23,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(96,56,1,'doodle__form__pcre2_migration','PCRE2 migration','{"Yes":26,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(97,57,1,'doodle__form__list_reference_assignments','list() Reference Assignments','{"Yes":17,"No":7}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(98,58,1,'doodle__form__is-countable_function','is-countable function','{"Yes":25,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(99,59,1,'doodle__form__add_samesite_argument_to_setcookie_setrawcookie_and_session_set_cookie_params_functions','Add samesite argument to setcookie, setrawcookie and session_set_cookie_params functions?','{"Yes":0,"No":26}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(100,59,0,'doodle__form__allow_setcookie_setrawcookie_and_session_set_cookie_params_to_accept_an_array_of_options_as_fourth:second_parameter_with_the_possible_options_being_path_domain_secure_httponly_and_samesite','Allow setcookie, setrawcookie and session_set_cookie_params to accept an array of options as fourth/second parameter, with the possible options being path, domain, secure, httponly and samesite?','{"Yes":21,"No":3}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(101,60,1,'doodle__form__deprecate_and_remove_image2wbmp','Deprecate and Remove image2wbmp()','{"Yes":14,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(102,61,1,'doodle__form__allow_loading_extensions_by_name','Allow loading extensions by name','{"Yes":17,"No":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(103,62,1,'doodle__form__accept_abstract_function_override','Accept abstract function override?','{"Yes":16,"No":3}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(104,63,1,'doodle__form__prevent_number_format_from_returning_negative_zero','Prevent number_format() from returning negative zero','{"Yes":14,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(105,64,1,'doodle__form__accept_the_convert_numeric_keys_in_object:array_casts_rfc_for_php_7.2','Accept the Convert numeric keys in object/array casts RFC for PHP 7.2?','{"Yes":21,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(106,65,1,'doodle__form__raise_severity_of_undefined_constants_to_e_warning_in_7.2_and_error_in_8.0','Raise severity of undefined constants to E_WARNING in 7.2, and Error in 8.0?','{"Yes":41,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(107,66,1,'doodle__form__get_class_disallow_null_parameter','get_class() disallow null parameter','{"Yes":15,"No":3}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(108,67,1,'doodle__form__counting_of_non-countable_objects','Counting of non-countable objects','{"Yes":31,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(109,68,1,'doodle__form__parameter_type_widening','Parameter Type Widening','{"Yes":24,"No":5}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(110,69,1,'doodle__form__allow_trailing_commas_in_function:method_arguments_declarations_and_calls','Allow trailing commas in function/method arguments (declarations and calls)','{"Yes":24,"No":20}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(111,69,0,'doodle__form__allow_trailing_commas_in_grouped_namepaces','Allow trailing commas in grouped namepaces','{"Yes":30,"No":9}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(112,69,0,'doodle__form__allow_trailing_commas_in_interface_implementations_on_a_class','Allow trailing commas in interface implementations on a class','{"Yes":8,"No":29}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(113,69,0,'doodle__form__allow_trailing_commas_in_trait_implementations_on_a_class','Allow trailing commas in trait implementations on a class','{"Yes":7,"No":29}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(114,69,0,'doodle__form__allow_trailing_commas_in_class_member_lists','Allow trailing commas in class member lists','{"Yes":7,"No":29}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(115,69,0,'doodle__form__allow_trailing_commas_in_use_lists_for_anonymous_functions','Allow trailing commas in use lists for anonymous functions','{"Yes":16,"No":22}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(116,70,1,'doodle__form__deprecate_png2wbmp_and_jpeg2wbmp','Deprecate png2wbmp() and jpeg2wbmp()','{"Yes":20,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(117,71,1,'doodle__form__implement_socket_getaddrinfo_family','Implement socket_getaddrinfo family','{"Yes":9,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(118,72,1,'doodle__form__argon2_password_hash_revote','argon2_password_hash_revote','{"Yes":12,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(119,73,1,'doodle__form__debugging_pdo_prepared_statement_emulation','Debugging PDO Prepared Statement Emulation','{"Yes":9,"No":7}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(120,74,1,'doodle__form__debugging_pdo_prepared_statement_emulation_v2','Debugging PDO Prepared Statement Emulation v2','{"Yes":7,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(121,75,1,'doodle__form__change_hashcontext_to_an_object','Change HashContext to an object','{"Yes":15,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(122,75,0,'doodle__form__merge_one_or_both_diffs','Merge one or both diffs','{"Frozen":9,"Reentrant":6}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(123,76,1,'doodle__form__deprecate_and_remove_intl_idna_variant_2003','Deprecate and remove INTL_IDNA_VARIANT_2003','{"Yes":24,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(124,77,1,'doodle__form__extended-string-types-for-pdo','extended-string-types-for-pdo','{"Yes":8,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(125,78,1,'doodle__form__improved_ssl:tls_constants','Improved SSL / TLS constants','{"Yes":14,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(126,79,1,'doodle__form__accepting_the_object_typehint_rfc_for_php_7.2','Accepting the object typehint RFC for PHP 7.2?','{"Yes":32,"No":3}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(127,79,0,'doodle__form__object_type_should_implement_variance','Object type should implement variance?','{"Yes":10,"No":20}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(128,81,1,'doodle__form__libsodium_as_a_core_extension_in_php_7.2','Libsodium as a Core Extension in PHP 7.2','{"Yes":37,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(129,81,0,'doodle__form__use_the_current_pecl_syntax','Use the current PECL syntax?','{"Yes, \\Sodium\\foo":15,"No, sodium_foo":23}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(130,82,1,'doodle__form__deprecate_and_subsequently_remove_autoload','Deprecate and subsequently remove __autoload','{"Yes":33,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(131,82,0,'doodle__form__deprecate_and_subsequently_remove_php_errormsg','Deprecate and subsequently remove $php_errormsg','{"Yes":29,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(132,82,0,'doodle__form__deprecate_and_subsequently_remove_create_function','Deprecate and subsequently remove create_function()','{"Yes":29,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(133,82,0,'doodle__form__deprecate_and_subsequently_remove_mbstring.func_overload','Deprecate and subsequently remove mbstring.func_overload','{"Yes":28,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(134,82,0,'doodle__form__deprecate_and_subsequently_remove_unset_cast','Deprecate and subsequently remove (unset) cast','{"Yes":28,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(135,82,0,'doodle__form__deprecate_and_subsequently_remove_parse_str_without_second_argument','Deprecate and subsequently remove parse_str() without second argument','{"Yes":29,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(136,82,0,'doodle__form__deprecate_and_subsequently_remove_gmp_random','Deprecate and subsequently remove gmp_random()','{"Yes":27,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(137,82,0,'doodle__form__deprecate_and_subsequently_remove_each','Deprecate and subsequently remove each()','{"Yes":18,"No":6}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(138,82,0,'doodle__form__deprecate_and_subsequently_remove_assert_with_string_argument','Deprecate and subsequently remove assert() with string argument','{"Yes":25,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(139,82,0,'doodle__form__deprecate_and_subsequently_remove_errcontext_argument_of_error_handler','Deprecate and subsequently remove $errcontext argument of error handler','{"Yes":22,"No":3}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(140,83,1,'doodle__form__session_id_without_hashing_re-vote','Session ID without hashing Re-vote','{"Yes":9,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(141,83,0,'doodle__form__session_id_without_hashing_re-vote:ini_option','Session ID without hashing Re-vote: INI option','{"Use new defaults (BC break)":3,"Use compatible defaults (No BC break)":7}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(142,84,1,'doodle__form__asynchronous_signal_handling','Asynchronous Signal Handling','{"Yes":21,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(143,84,0,'doodle__form__chose_between_old_and_new_behavior_in_php_7._using','Chose between old and new behavior in PHP 7.* using','{"pcntl.async_signals INI directive":4,"pcntl_async_signals() function":18}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(144,85,1,'doodle__form__fix_inconsistent_behavior_of_this_variable','Fix inconsistent behavior of $this variable?','{"Yes":43,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(145,86,1,'doodle__form__replace','Replace','{"Yes":39,"No":11}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(146,87,1,'doodle__form__accept_explicitly_nullable_types_2:3_affirmative_required','Accept explicitly nullable types? (2/3 affirmative required)','{"Yes":41,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(147,87,0,'doodle__form__merge_which_features_majority_wins','Merge which features? (majority wins)','{"Both nullable parameter and return types":44,"Only nullable return types":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(148,88,1,'doodle__form__accept_the_rfc_square_bracket_syntax_for_array_destructuring_assignment_for_php_7.1','Accept the RFC Square bracket syntax for array destructuring assignment for PHP 7.1?','{"Yes":41,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(149,89,1,'doodle__form__accept_the_warn_about_invalid_strings_in_arithmetic_v1.1_rfc_for_php_7.1','Accept the ‘Warn about invalid strings in arithmetic’ v1.1 RFC for PHP 7.1?','{"Yes":29,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(150,90,1,'doodle__form__accept_the_allow_specifying_keys_in_list_rfc_for_php_7.1_and_merge_the_patch_into_master','Accept the Allow specifying keys in list() RFC for PHP 7.1, and merge the patch into master?','{"Yes":23,"No":11}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(151,91,1,'doodle__form__add_iterable_type_to_php_7.1','Add iterable type to PHP 7.1','{"Yes":35,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(152,92,1,'doodle__form__generalize_support_of_negative_string_offsets','Generalize support of negative string offsets','{"Yes":28,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(153,93,1,'doodle__form__accept_closure_from_callble_50_1_majority_required','Accept Closure from Callble? (50%+1 majority required)','{"Yes":40,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(154,94,1,'doodle__form__deprecate_mb_ereg_replace_eval_option','Deprecate mb_ereg_replace eval option','{"Yes":19,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(155,95,1,'doodle__form__deprecate_then_remove_mcrypt_from_the_php_core','Deprecate then Remove Mcrypt from the PHP Core?','{"Yes":23,"No":6}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(156,96,1,'doodle__form__include_aead_support_to_openssl_extension','Include AEAD support to OpenSSL extension','{"Yes":7,"No":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(157,97,1,'doodle__form__accept_the_void_return_type_rfc_for_php_7.1_and_merge_patch_into_master','Accept the Void Return Type RFC for PHP 7.1 and merge patch into master?','{"Yes":37,"No":7}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(158,98,1,'doodle__form__class_constant_visibility','Class Constant Visibility','{"Yes":28,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(159,99,1,'doodle__form__raise_warning_on_octal_interpolation_overflow','Raise warning on octal interpolation overflow?','{"Yes":37,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(160,100,1,'doodle__form__fix_mt_rand_implementation','Fix mt_rand() implementation','{"Yes":19,"No":5}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(161,100,0,'doodle__form__alias_rand_to_mt_rand','Alias rand() to mt_rand()','{"Yes":21,"No":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(162,100,0,'doodle__form__fix_rand_range','Fix RAND_RANGE()','{"Yes":25,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(163,100,0,'doodle__form__replace_insecure_uses_of_php_rand_with_php_random_bytes','Replace insecure uses of php_rand() with php_random_bytes()','{"Yes":23,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(164,100,0,'doodle__form__make_array_rand_more_efficient','Make array_rand() more efficient','{"Yes":24,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(165,101,1,'doodle__form__add_http:2_server_push_support_to_ext:curl','Add HTTP/2 Server Push Support to ext/curl','{"Yes":26,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(166,102,1,'doodle__form__approve_get-windows-id_rfc_and_merge_oatch_into_master','Approve get-windows-id RFC and merge oatch into master?','{"Yes":27,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(167,103,1,'doodle__form__should_milti-catch_be_added_to_php_7.1','Should milti-catch be added to PHP 7.1','{"Yes":40,"No":6}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(168,104,1,'doodle__form__forbid_dynamic_calls_to_scope_introspection_functions','Forbid dynamic calls to scope introspection functions?','{"Yes":39,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(169,105,1,'doodle__form__should_those_functions_should_be_added_in_7.1','Should those functions should be added in 7.1','{"Yes":23,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(170,106,1,'doodle__form__merge_patch_for_php_7.1','Merge patch for PHP 7.1','{"Yes":21,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(171,107,1,'doodle__form__should_mode_0_be_introduced_and_set_as_default_for_pg_serialize_precision','Should mode 0 be introduced and set as default for PG(serialize_precision)','{"Yes":14,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(172,107,0,'doodle__form__should_pg_serialize_precision_be_used_instead_of_eg_precision_in_json_encode','Should PG(serialize_precision) be used instead of EG(precision) in json_encode','{"Yes":15,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(173,108,1,'doodle__form__provide_additional_context_in_pcntl_signal_handler','Provide additional context in pcntl signal handler?','{"Yes":15,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(174,109,1,'doodle__form__add_session_create_id_frunction','Add session_create_id() frunction','{"Yes":8,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(175,110,1,'doodle__form__add_session_gc_function','Add session_gc() function','{"Yes":12,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(176,111,1,'doodle__form__should_this_rfc_be_accepted_for_7.0','Should this RFC be accepted for 7.0','{"Yes":28,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(177,112,1,'doodle__form__throwable_interface','Throwable Interface','{"Yes":25,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(178,113,1,'doodle__form__should_php7_have_a_context_sensitive_lexer','Should PHP7 have a context sensitive lexer?','{"Yes":36,"No":12}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(179,115,1,'doodle__form__reliable_user-land_csprng','Reliable user-land CSPRNG','{"Yes":41,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(180,116,1,'doodle__form__anonymous_classes','Anonymous Classes','{"Yes":50,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(181,117,1,'doodle__form__allow_generator_delegation_in_php7','Allow Generator delegation in PHP7','{"Yes":25,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(182,118,1,'doodle__form__reserve_more_types_in_php_7','reserve_more_types_in_php_7','{"Yes":40,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(183,119,1,'doodle__form__constructor_behaviour_of_internal_classes','Constructor behaviour of internal classes','{"Yes":32,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(184,120,1,'doodle__form__reclassify_e_strict_notices_as_described_in_this_rfc','Reclassify E_STRICT notices as described in this RFC?','{"Yes":28,"No":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(185,121,1,'doodle__form__remove_php4_constructors','remove_php4_constructors','{"Yes":50,"No":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(186,122,1,'doodle__form__should_the_warning_about_a_not_set_date.timezone_ini_setting_be_removed_in_master','Should the warning about a not set date.timezone ini setting be removed in master?','{"Yes":32,"No":11}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(187,123,1,'doodle__form__accept_the_combined_comparison_spaceship_operator_rfc_and_merge_patch_into_master','Accept the Combined Comparison (Spaceship) Operator RFC and merge patch into master?','{"Yes":43,"No":11}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(188,124,1,'doodle__form__fix_foreach_behavoir','Fix foreach behavoir?','{"Yes":34,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(189,124,0,'doodle__form__stop_using_internal_array:object_pointer_in_foreach_by_reference','Stop using internal array/object pointer in foreach by reference?','{"Yes":34,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(190,125,1,'doodle__form__remove_sapi:aolserver_from_the_core','Remove sapi/aolserver from the core','{"Yes":31,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(191,125,0,'doodle__form__remove_sapi:apache_from_the_core','Remove sapi/apache from the core','{"Yes":32,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(192,125,0,'doodle__form__remove_sapi:apache_hooks_from_the_core','Remove sapi/apache_hooks from the core','{"Yes":31,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(193,125,0,'doodle__form__remove_sapi:apache2filter_from_the_core','Remove sapi/apache2filter from the core','{"Yes":23,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(194,125,0,'doodle__form__remove_sapi:caudium_from_the_core','Remove sapi/caudium from the core','{"Yes":30,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(195,125,0,'doodle__form__remove_sapi:continuity_from_the_core','Remove sapi/continuity from the core','{"Yes":28,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(196,125,0,'doodle__form__remove_sapi:isapi_from_the_core','Remove sapi/isapi from the core','{"Yes":28,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(197,125,0,'doodle__form__remove_sapi:milter_from_the_core','Remove sapi/milter from the core','{"Yes":10,"No":9}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(198,125,0,'doodle__form__remove_sapi:phttpd_from_the_core','Remove sapi/phttpd from the core','{"Yes":26,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(199,125,0,'doodle__form__remove_sapi:pi3web_from_the_core','Remove sapi/pi3web from the core','{"Yes":24,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(200,125,0,'doodle__form__remove_sapi:roxen_from_the_core','Remove sapi/roxen from the core','{"Yes":23,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(201,125,0,'doodle__form__remove_sapi:thttpd_from_the_core','Remove sapi/thttpd from the core','{"Yes":25,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(202,125,0,'doodle__form__remove_sapi:tux_from_the_core','Remove sapi/tux from the core','{"Yes":25,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(203,125,0,'doodle__form__remove_sapi:webjames_from_the_core','Remove sapi/webjames from the core','{"Yes":25,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(204,125,0,'doodle__form__remove_ext:imap_from_the_core','Remove ext/imap from the core','{"Yes":14,"No":19}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(205,125,0,'doodle__form__remove_ext:mcrypt_from_the_core','Remove ext/mcrypt from the core','{"Yes":15,"No":18}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(206,125,0,'doodle__form__remove_ext:mssql_from_the_core','Remove ext/mssql from the core','{"Yes":17,"No":3}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(207,125,0,'doodle__form__remove_ext:pdo_dblib_from_the_core','Remove ext/pdo_dblib from the core','{"Yes":4,"No":18}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(208,125,0,'doodle__form__remove_ext:sybase_ct_from_the_core','Remove ext/sybase_ct from the core','{"Yes":17,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(209,126,1,'doodle__form__unbundle_the_ext:ereg_extension','Unbundle the ext/ereg extension?','{"Yes":37,"No":3}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(210,126,0,'doodle__form__unbundle_the_ext:mysql_extension','Unbundle the ext/mysql extension?','{"Yes":28,"No":12}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(211,126,0,'doodle__form__remove_assignment_of_new_by_reference','Remove assignment of new by reference?','{"Yes":31,"No":6}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(212,126,0,'doodle__form__remove_support_for_calls_from_incompatible_context','Remove support for calls from incompatible context?','{"Yes":34,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(213,126,0,'doodle__form__remove_dl_in_fpm-fcgi_sapi','Remove dl() in fpm-fcgi SAPI?','{"Yes":32,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(214,126,0,'doodle__form__remove_set_magic_quotes_runtime_functions','Remove (set_)magic_quotes_runtime() functions?','{"Yes":36,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(215,126,0,'doodle__form__remove_listed_deprecated_functions','Remove listed deprecated functions?','{"Yes":31,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(216,126,0,'doodle__form__remove_xsl.security_prefs_ini_directive','Remove xsl.security_prefs ini directive?','{"Yes":28,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(217,126,0,'doodle__form__remove_extension_specific_encoding_ini_directives','Remove extension specific encoding ini directives?','{"Yes":26,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(218,126,0,'doodle__form__remove_is_dst_parameter_of_the_mktime_and_gmmktime_functions','Remove $is_dst parameter of the mktime() and gmmktime() functions?','{"Yes":28,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(219,126,0,'doodle__form__remove_support_for_-style_comments_in_ini_files','Remove support for #-style comments in ini files?','{"Yes":27,"No":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(220,126,0,'doodle__form__disallow_string_category_names_in_setlocale','Disallow string category names in setlocale()?','{"Yes":27,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(221,126,0,'doodle__form__disallow_enabling_unsafe_curl_uploads','Disallow enabling unsafe curl uploads?','{"Yes":19,"No":6}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(222,126,0,'doodle__form__remove_preg_replace_eval_modifier','Remove preg_replace() eval modifier?','{"Yes":33,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(223,126,0,'doodle__form__remove_pdo:pgsql_attr_disable_native_prepared_statement_driver_option','Remove PDO::PGSQL_ATTR_DISABLE_NATIVE_PREPARED_STATEMENT driver option?','{"Yes":20,"No":5}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(224,126,0,'doodle__form__remove_cn_match_and_sni_server_name_stream_context_options','Remove CN_match and SNI_server_name stream context options?','{"Yes":20,"No":5}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(225,127,1,'doodle__form__should_jsond_based_extension_replace_the_current_json_extension_in_php_7','Should jsond based extension replace the current json extension in PHP 7?','{"Yes":32,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(226,128,1,'doodle__form__preserve_fractional_part_in_json_encode','Preserve Fractional Part in JSON encode','{"Yes":14,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(227,129,1,'doodle__form__typed_returns','Typed Returns','{"Yes":47,"No":3}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(228,130,1,'doodle__form__should_php_7_have_fast_parameter_parsing_api','Should PHP 7 have Fast Parameter Parsing API?','{"Yes":19,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(229,131,1,'doodle__form__accept_the_unicode_codepoint_escape_syntax_rfc_and_merge_into_master','Accept the Unicode Codepoint Escape Syntax RFC and merge into master?','{"Yes":23,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(230,132,1,'doodle__form__native_tls','Native TLS','{"Yes":28,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(231,133,1,'doodle__form__approve_null_coalesce_operator_rfc_and_merge_patch_into_master','Approve Null Coalesce Operator RFC and merge patch into master?','{"Yes":31,"No":3}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(232,134,1,'doodle__form__accept_the_integer_semantics_rfc_and_merge_patch_into_master','Accept the integer semantics RFC and merge patch into master?','{"Yes":16,"No":8}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(233,135,1,'doodle__form__accept_the_zpp_failure_on_overflow_rfc_and_merge_into_master','Accept the ZPP Failure on Overflow RFC and merge into master?','{"Yes":16,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(234,136,1,'doodle__form__move_phpng_to_master','Move phpng to master?','{"Yes":47,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(235,137,1,'doodle__form__use_ast_implementation_in_php_7','Use AST implementation in PHP 7?','{"Yes":47,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(236,138,1,'doodle__form__implement_uniform_variable_syntax_in_php_6','Implement Uniform Variable Syntax in PHP 6?','{"Yes":30,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(237,139,1,'doodle__form__accept_this_rfc_for_php6_or_whatever_next_major_is_called','Accept this RFC for PHP6 (or whatever next major is called)','{"Yes":28,"No":23}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(238,139,0,'doodle__form__merge_strategy','Merge strategy','{"after the vote, master":17,"phpng":32}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(239,140,1,'doodle__form__closure:apply_approve_rfc_and_merge_into_master','Closure::apply() (Approve RFC and merge into master?)','{"Yes":13,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(240,141,1,'doodle__form__fix_list_behavior_inconsistency','Fix list() behavior inconsistency?','{"don''t fix":0,"disable string handling in all cases":17,"enable string handling in all cases":16}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(241,142,1,'doodle__form__remove_alternative_php_tags_in_php_7','Remove alternative PHP tags in PHP 7?','{"Yes":26,"No":8}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(242,143,1,'doodle__form__switch.default.multiple','switch.default.multiple','{"Yes":28,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(243,144,1,'doodle__form__catchable_call_to_a_member_function_bar_on_a_non-object','Catchable Call to a member function bar() on a non-object','{"Yes":32,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(244,145,1,'doodle__form__approve_filtered_unserialize_proposal','Approve filtered unserialize() proposal?','{"Yes":17,"No":6}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(245,146,1,'doodle__form__accept_the_intlchar_rfc_and_merge_into_master','Accept the IntlChar RFC and merge into master?','{"Yes":14,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(246,147,1,'doodle__form__read_only_lazy_write_option','Read only, lazy write option','{"Yes":9,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(247,147,0,'doodle__form__unsafe_lock_option','Unsafe lock option','{"Yes":1,"No":7}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(248,147,0,'doodle__form__lazy_destroy_option','Lazy destroy option','{"Yes":1,"No":6}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(249,148,1,'doodle__form__remove_hex_support_in_numeric_strings','Remove hex support in numeric strings?','{"Yes":29,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(250,149,1,'doodle__form__merge_changes_into_master','Merge changes into master?','{"Yes, with custom exceptions":29,"Yes, without custom exceptions":14,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(251,150,1,'doodle__form__should_grouped_use_declarations_be_added_to_php_7','Should Grouped Use Declarations be added to PHP 7','{"Yes - with a trailing \"\\\"":32,"Yes - without a trailing \"\\\"":7,"No":19}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(252,151,1,'doodle__form__allow_exceptions_in_the_engine_and_conversion_of_existing_fatals','Allow exceptions in the engine and conversion of existing fatals?','{"Yes":60,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(253,151,0,'doodle__form__introduce_and_use_baseexception','Introduce and use BaseException?','{"Yes":39,"No":19}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(254,152,1,'doodle__form__allow_generator_return_expressions_in_php7','Allow Generator return expressions in PHP7','{"Yes":33,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(255,153,1,'doodle__form__accept_scalar_type_declarations_with_optional_strict_mode','Accept Scalar Type Declarations With Optional Strict Mode?','{"Yes":108,"No":48}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(256,154,1,'doodle__form__continue_output_buffering_on_aborted_connection','Continue output buffering on aborted connection?','{"Yes":15,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(257,155,1,'doodle__form__merge_the_intdiv_operator_patch_into_master','Merge the intdiv operator patch into master?','{"Yes":5,"No":24}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(258,155,0,'doodle__form__if_the_operator_vote_fails_to_achieve_a_2:3_majority_should_the_intdiv_function_patch_be_merged_into_master','If the operator vote fails to achieve a 2/3 majority, should the intdiv() function patch be merged into master?','{"Yes":28,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(259,156,1,'doodle__form__fix_custom_session_save_handler_using_the_patch_as_written','Fix custom session save handler using the patch as written','{"Yes":10,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(260,156,0,'doodle__form__which_version','Which version?','{"5.6 or later":0,"5.7 or later":9,"6.0 or later":3}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(261,157,1,'doodle__form__turn_gc_collect_cycles_into_function_pointer','Turn gc_collect_cycles into function pointer?','{"Yes":18,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(262,158,1,'doodle__form__merge_debuginfo','Merge ___debugInfo()','{"Yes (5.6)":23,"Yes (5.7)":1,"No":3}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(263,158,0,'doodle__form__name_debuginfo','Name ___debugInfo()','{"__debugInfo()":23,"__debug()":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(264,159,1,'doodle__form__should_php_get_a_power_operator_in_5.6','Should PHP get a power operator in 5.6?','{"Yes, right associative":22,"Yes, non associative":1,"No":9}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(265,160,1,'doodle__form__rfc:use_function','RFC/use_function','{"Yes?":16,"No?":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(266,161,1,'doodle__form__should_the_patch_for_this_rfc_be_merged_into_php_5.6','Should the patch for this RFC be merged into PHP 5.6?','{"Yes":16,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(267,162,1,'doodle__form__deprecate_calls_with_incompatible_context_in_5.5_and_disallow_them_in_the_version_after_be_it_5.6_or_6.0','Deprecate calls with incompatible context in 5.5 and disallow them in the version after (be it 5.6 or 6.0)','{"Yes":15,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(268,163,1,'doodle__form__should_the_proposed_variadic-function_syntax_be_added_in_php_5.6_master','Should the proposed variadic-function syntax be added in PHP 5.6 (master)?','{"Yes":36,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(269,164,1,'doodle__form__implement_argument_unpacking_in_php_5.6','Implement argument unpacking in PHP 5.6?','{"Yes":32,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(270,165,1,'doodle__form__should_these_changes_be_applied_for_php_5.6','Should these changes be applied for PHP 5.6?','{"Internal operator overloading":14,"GMP changes":1,"None":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(271,166,1,'doodle__form__distribute_phpdbg_with_php5.6','Distribute phpdbg with PHP5.6+','{"Yes":40,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(272,167,1,'doodle__form__rfc:slim_post_data','RFC/slim_post_data','{"Yes":16,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(273,168,1,'doodle__form__change_crypt_behavior_when_salt_parameter_is_omitted','Change crypt behavior when salt parameter is omitted.','{"Generate strong salt by default":0,"Generate E_NOTICE error":12,"Keep current behavior (Use weak hash)":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(274,169,1,'doodle__form__rfc:fpm_change_hat','RFC/fpm_change_hat','{"Yes?":3,"No?":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(275,170,1,'doodle__form__should_php_verify_client_peers_by_default_in_php_5.6','Should PHP verify client peers by default in PHP 5.6?','{"Yes":25,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(276,171,1,'doodle__form__should_the_proposed_tls_changes_be_merged_for_5.6','Should the proposed TLS changes be merged for 5.6?','{"Yes":16,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(277,172,1,'doodle__form__default_character_encoding','Default Character Encoding','{"Yes":8,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(278,173,1,'doodle__form__64_bit_format_codes_for_pack_and_unpack','64 bit format codes for pack() and unpack()','{"Yes":15,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(279,174,1,'doodle__form__timing_attack_safe_string_comparison_function','Timing attack safe string comparison function','{"Yes":22,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(280,175,1,'doodle__form__should_generators_be_merged_into_master','Should generators be merged into master?','{"Yes":24,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(281,176,1,'doodle__form__should_the_implementation_be_merged_into_trunk','Should the implementation be merged into trunk?','{"Yes":25,"No":5}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(282,177,1,'doodle__form__should_the:class_feature_be_merged_to_master','Should the ::class feature be merged to master?','{"Yes":10,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(283,178,1,'doodle__form__should_this_rfc_be_merged_into_trunk','Should this RFC be merged into trunk?','{"Yes":11,"No":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(284,178,0,'doodle__form__should_this_rfc_with_supporting_of_silent_token_be_merged_into_trunk','Should this RFC(with supporting of silent token) be merged into trunk?','{"Yes":2,"No":10}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(285,179,1,'doodle__form__do_you_think_it_is_okey_to_apply_this_to_trunk_not_5.4','do you think it is okey to apply this to TRUNK(not 5.4)?','{"yes":10,"no":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(286,180,1,'doodle__form__which_of_the_language_constructs_should_accept_arbitrary_arguments','Which of the language constructs should accept arbitrary arguments?','{"Both empty() and isset()":3,"Only empty()":14,"None":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(287,180,0,'doodle__form__should_empty_and_isset_accept_arbitrary_arguments','Should empty() and isset() accept arbitrary arguments?','{"yes":12,"no":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(288,181,1,'doodle__form__rfc:optimizerplus','rfc/optimizerplus','{"Integrate into 5.5, even if minor delay required":44,"Integrate into 5.5 only if it''s not delayed, otherwise - 5.6":22,"Don\u2019t integrate Optimizer+ to PHP, make avail through PECL only":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(289,182,1,'doodle__form__rfc:hash_pbkdf2','rfc/hash_pbkdf2','{"Yes?":9,"No?":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(290,183,1,'doodle__form__should_the_simplified_password_hashing_api_indicated_here_be_included_in_master','Should the simplified password hashing API indicated here be included in master?','{"Yes":19,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(291,185,1,'doodle__form__should_the_current_uconverter_implementation_be_merged','Should the current UConverter implementation be merged','{"Yes":17,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(292,186,1,'doodle__form__should_ext:mysql_generate_e_deprecated_errors_in_php_5.5','Should ext/mysql generate E_DEPRECATED errors in PHP 5.5?','{"Yes":25,"No":12}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(293,186,0,'doodle__form__if_the_vote_to_make_ext:mysql_generate_e_deprecated_errors_is_unsuccessful_what_course_of_action_do_you_think_we_should_take','If the vote to make ext/mysql generate E_DEPRECATED errors is unsuccessful, what course of action do you think we should take?','{"(a)":26,"(b)":12,"(c)":0,"(d)":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(294,188,1,'doodle__form__accept_the_curlfile_api_as_preferred_solution_for_file_uploads_in_curl','Accept the CURLFile API as preferred solution for file uploads in CURL?','{"Yes":16,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(295,190,1,'doodle__form__accept_modifying_cli_process_title_in_php','Accept modifying CLI process title in PHP?','{"Yes":28,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(296,191,1,'doodle__form__remove_type-restrictions_on_foreach_keys','Remove type-restrictions on foreach keys?','{"Yes":21,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(297,192,1,'doodle__form__accept_array_column_for_inclusion_in_php','Accept array_column() for inclusion in PHP?','{"Yes":38,"No":6}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(298,193,1,'doodle__form__should_we_remove_curl-wrappers','Should we remove curl-wrappers','{"Yes, as of PHP5.5":19,"Yes, but in PHP.next only":4,"No, we should keep it":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(299,195,1,'doodle__form__add_weakmap_class_in_php_8.0','Add WeakMap class in PHP 8.0?','{"Yes":25,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(300,196,1,'doodle__form__allow:class_on_objects','Allow ::class on objects?','{"Yes":60,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(301,197,1,'doodle__form__add_static_return_type','Add static return type?','{"Yes":54,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(302,198,1,'doodle__form__implement_syntax_changes_outlined_above_in_php_8','Implement syntax changes outlined above in PHP 8?','{"Yes":47,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(303,199,1,'doodle__form__support_declare_function_and_const_lookup','Support declare(function_and_const_lookup=...)','{"Yes":2,"No":35}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(304,199,0,'doodle__form__severity_of_redundant_uses_of_global_functions:constants','Severity of redundant uses of global functions/constants','{"Warning":4,"Fatal Error":10,"Allow and don''t warn":7}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(305,200,1,'doodle__form__adopt_the_stringable_interface_as_proposed_in_this_rfc','Adopt the Stringable interface as proposed in this RFC?','{"Yes":29,"No":9}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(306,201,1,'doodle__form__support_calls_in_class_constants','Support calls in class constants','{"No":14,"Whitelist of global functions":5,"Any function or method call":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(307,201,0,'doodle__form__support_calls_in_global_constants','Support calls in global constants','{"No":14,"Whitelist of global functions":3,"Any function or method call":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(308,201,0,'doodle__form__support_calls_in_static_property_declarations','Support calls in static property declarations','{"No":12,"Whitelist of global functions":2,"Any function or method call, even when the returned value contains references or arrays":0,"As many expressions as feasible (not referring to the variable scope)":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(309,201,0,'doodle__form__support_calls_in_static_variables','Support calls in static variables','{"No":14,"Whitelist of global functions":2,"Any function or method call, even when the returned value contains references or arrays":0,"As many expressions as feasible (not referring to the variable scope)":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(310,201,0,'doodle__form__support_calls_in_parameter_defaults','Support calls in parameter defaults','{"No":14,"Whitelist of global functions":3,"Any function or method call, whether or not it returns a constant":0,"As many expressions as feasible (not referring to the variable scope)":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(311,202,1,'doodle__form__add_get_debug_type_as_described','Add get_debug_type as described','{"Yes":42,"No":3}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(312,203,1,'doodle__form__add_str_contains_as_described','Add str_contains as described','{"Yes":43,"No":9}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(313,204,1,'doodle__form__validate_abstract_trait_methods','Validate abstract trait methods?','{"Yes":52,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(314,205,1,'doodle__form__add_object-based_token_get_all_alternative','Add object-based token_get_all() alternative?','{"Yes":47,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(315,206,1,'doodle__form__do_you_want_to_add_support_for_write-once_properties','Do you want to add support for write-once properties?','{"Yes":23,"No":23}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(316,206,0,'doodle__form__which_keyword_to_use','Which keyword to use?','{"Yes":0,"No":0,"immutable":2,"locked":1,"writeonce":7,"readonly":34}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(317,207,1,'doodle__form__adopt_server-side_request_and_response_objects','Adopt Server-Side Request and Response Objects?','{"Yes":11,"No":35}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(318,208,1,'doodle__form__add_userspace_operator_overloading_as_described','Add userspace operator overloading as described?','{"Yes":38,"No":28}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(319,209,1,'doodle__form__would_you_like_to_add_support_for_copa','Would you like to add support for COPA?','{"Yes":2,"No":48}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(320,209,0,'doodle__form__if_you_voted_no_what_was_the_main_reason','If you voted no, what was the main reason?','{"I voted yes!":0,"I don\u2019t find the feature useful":25,"I don\u2019t like the syntax":3,"I prefer a more comprehensive solution to this problem":6,"I prefer a narrower solution to this problem":0,"This breaks backwards compatibility":0,"This will have negative implications for future language evolution":0,"This will be a nightmare to implement and maintain":0,"I prefer not to say":1}',66,1);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(321,209,0,'doodle__form__if_you_did_not_like_the_proposed_syntax_which_alternative_would_you_prefer','If you did not like the proposed syntax, which alternative would you prefer?','{"A (the proposed one)":0,"B":1,"C":0,"D":0,"E":0,"F":0,"Irrelevant":29}',66,1);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(322,210,1,'doodle__form__would_you_like_to_convert_the_throw_statement_into_an_expression','Would you like to convert the throw statement into an expression?','{"Yes":46,"No":3}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(323,211,1,'doodle__form__add_type_casting_in_array_destructuring_expressions','Add type casting in array destructuring expressions','{"yes":6,"no":26}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(324,211,0,'doodle__form__choose_one_or_more_of_the_suggested_future_scopes_in_which_you_are_interested','Choose one or more of the suggested future scopes in which you are interested','{"reference assignment casts":0,"strict casts":16,"nullable casts":4,"type checks in array destructuring expressions":5,"none":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(325,212,1,'doodle__form__change_the_default_pdo_error_handling_mode_to_pdo:errmode_exception','Change the default PDO error handling mode to PDO::ERRMODE_EXCEPTION?','{"Yes":49,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(326,213,1,'doodle__form__allow_trailing_comma_in_parameter_lists','Allow trailing comma in parameter lists?','{"Yes":58,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(327,214,1,'doodle__form__add_stricter_type_checks_for_arithmetic:bitwise_operators','Add stricter type checks for arithmetic/bitwise operators?','{"yes":57,"no":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(328,215,1,'doodle__form__add_str_starts_with_and_str_ends_with_as_described','Add str_starts_with and str_ends_with as described','{"yes":51,"no":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(329,216,1,'doodle__form__accept_php_attributes_v2_into_core','Accept PHP Attributes v2 into core?','{"Yes":51,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(330,216,0,'doodle__form__which_syntax_to_use_for_attributes','Which syntax to use for attributes?','{"<<>>":41,"@:":12}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(331,217,1,'doodle__form__make_float_to_string_casts_always_locale-independent','Make float to string casts always locale-independent?','{"Yes":42,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(332,217,0,'doodle__form__should_the_debug_locale_sensitive_float_casts_ini_setting_be_added','Should the debug_locale_sensitive_float_casts INI setting be added?','{"Yes":14,"No":26}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(333,218,1,'doodle__form__would_you_like_to_add_match_expressions_to_the_language','Would you like to add match expressions to the language?','{"Yes":6,"No":28}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(334,218,0,'doodle__form__should_the_semicolon_for_match_in_statement_form_be_optional','Should the semicolon for match in statement form be optional?','{"Yes":3,"No":20}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(335,218,0,'doodle__form__should_we_allow_dropping_true_condition','Should we allow dropping (true) condition?','{"Yes":16,"No":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(336,218,0,'doodle__form__if_you_voted_no_why','If you voted no, why?','{"1":0,"2":10,"3":0,"4":1,"5":0,"6":1,"7":0,"8":7}',66,1);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(337,219,1,'doodle__form__add_mixed_as_a_type_to_be_used_as_parameter_return_and_class_property_types','Add mixed as a type to be used as parameter, return and class property types?','{"Yes":50,"No":11}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(338,220,1,'doodle__form__accept_this_rfc','Accept this RFC?','{"Yes":48,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(339,221,1,'doodle__form__unbundle_ext:xmlrpc','Unbundle ext/xmlrpc','{"Yes":50,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(340,222,1,'doodle__form__make_the_json_extension_impossible_to_disable','Make the JSON extension impossible to disable','{"Yes":56,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(341,223,1,'doodle__form__add_support_for_declaring_properties_in_the_constructor_signature','Add support for declaring properties in the constructor signature?','{"Yes":46,"No":10}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(342,224,1,'doodle__form__accept_php_namespace_in_core_rfc','Accept PHP namespace in core RFC?','{"Yes":19,"No":24}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(343,225,1,'doodle__form__ensure_correct_signatures_of_magic_methods','Ensure correct signatures of magic methods','{"Yes":45,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(344,226,1,'doodle__form__add_opcache.allow_cache_ini_setting_to_support_opcode_optimization_without_caching','Add opcache.allow_cache ini setting to support opcode optimization without caching','{"Yes":10,"No":13}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(345,226,0,'doodle__form__if_you_voted_no_on_opcache.allow_cache_why','If you voted no on opcache.allow_cache, why?','{"1":8,"2":0,"3":0,"4":0}',66,1);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(346,226,0,'doodle__form__i_would_be_interested_in_moving_opcode_optimizations_into_core','I would be interested in moving opcode optimizations into core','{"Yes":14,"No":0}',66,1);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(347,227,1,'doodle__form__make_sorting_in_php_stable','Make sorting in PHP stable?','{"Yes":45,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(348,228,1,'doodle__form__should_phpattribute_be_renamed_to_attribute','Should PhpAttribute be renamed to Attribute?','{"Yes":51,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(349,228,0,'doodle__form__should_a_secondary_grouped_syntax_for_attributes_be_introduced','Should a secondary grouped syntax for attributes be introduced?','{"Yes":32,"No":14}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(350,228,0,'doodle__form__should_attributes_allow_definition_of_target_declarations','Should attributes allow definition of target declarations?','{"Yes":38,"No":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(351,228,0,'doodle__form__should_attributes_allow_definition_of_repeatability','Should attributes allow definition of repeatability?','{"Yes":38,"No":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(352,229,1,'doodle__form__remove_inappropriate_inheritance_signature_checks_on_private_methods','Remove inappropriate inheritance signature checks on private methods','{"Yes":24,"No":11}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(353,230,1,'doodle__form__are_you_okay_with_re-voting_on_the_attribute_syntax_for_php_8.0','Are you okay with re-voting on the attribute syntax for PHP 8.0?','{"Yes":50,"No":8}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(354,230,0,'doodle__form__attribute_syntax_1st_choice','Attribute syntax 1st choice','{"@@":0,"#[]":2,"<<>>":0}',66,1);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(355,230,0,'doodle__form__attribute_syntax_2nd_choice','Attribute syntax 2nd choice','{"@@":0,"#[]":0,"<<>>":2}',66,1);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(356,230,0,'doodle__form__attribute_syntax_3rd_choice','Attribute syntax 3rd choice','{"@@":2,"#[]":0,"<<>>":0}',66,1);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(357,230,0,'doodle__form__attribute_syntax_choice_1','Attribute syntax choice #1','{"@@":33,"#[]":22,"<<>>":6}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(358,230,0,'doodle__form__attribute_syntax_choice_2','Attribute syntax choice #2','{"@@":12,"#[]":19,"<<>>":28}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(359,230,0,'doodle__form__attribute_syntax_choice_3','Attribute syntax choice #3','{"@@":12,"#[]":19,"<<>>":25}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(360,231,1,'doodle__form__add_match_expressions_to_the_language','Add match expressions to the language?','{"Yes":43,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(361,232,1,'doodle__form__rename_t_paamayim_nekudotayim_to_t_double_colon','Rename T_PAAMAYIM_NEKUDOTAYIM to T_DOUBLE_COLON?','{"Yes":44,"No":30}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(362,233,1,'doodle__form__make_constructors_and_destructors_return_void','Make constructors and destructors return void?','{"Yes":14,"No":7}',66,1);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(363,233,0,'doodle__form__when_to_enforce_void_rules_implicitly','When to enforce void rules implicitly?','{"PHP 8.1":9,"PHP 9.0":10}',66,1);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(364,233,1,'doodle__form__make_constructors:destructors_return_void','Make constructors/destructors return void?','{"Yes":34,"No":22}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(365,233,0,'doodle__form__allow_void_return_type_on_constructors:destructors','Allow void return type on constructors/destructors?','{"Yes":27,"No":25}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(366,234,1,'doodle__form__add_named_argument_support','Add named argument support?','{"Yes":57,"No":18}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(367,235,1,'doodle__form__add_a_new_ini_setting_zend.exception_string_param_max_len','Add a new ini setting zend.exception_string_param_max_len','{"Yes":36,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(368,235,0,'doodle__form__informal_poll:interest_in_raising_the_default_string_parameter_max_length_from_15_bytes_in_future_rfcs','Informal poll: Interest in raising the default string parameter max length from 15 bytes in future RFCs','{"Yes":11,"No":22}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(369,236,1,'doodle__form__allow_trailing_comma_in_closure_use_lists','Allow trailing comma in closure use lists','{"Yes":49,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(370,237,1,'doodle__form__accept_saner_numeric_string_rfc_proposal','Accept Saner numeric string RFC proposal','{"Yes":30,"No":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(371,237,0,'doodle__form__should_valid_float_strings_for_string_offsets_remain_a_warning','Should valid float strings for string offsets remain a warning','{"Yes":2,"No":27}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(372,238,1,'doodle__form__add_nullsafe_operator_to_the_language','Add nullsafe operator to the language?','{"Yes":56,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(373,239,1,'doodle__form__change_string_to_number_comparison_semantics_as_proposed','Change string to number comparison semantics as proposed?','{"Yes":44,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(374,240,1,'doodle__form__treat_namespaced_names_as_a_single_token','Treat namespaced names as a single token?','{"Yes":38,"No":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(375,241,1,'doodle__form__add_object-based_debug_backtrace_alternative','Add object-based debug_backtrace() alternative?','{"Yes":14,"No":14}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(376,241,0,'doodle__form__replace_object-based_trace_for_throwable:gettrace','Replace object-based trace for Throwable::getTrace()?','{"Yes":6,"No":19}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(377,242,1,'doodle__form__stop_automatically_unserializing_phar_metadata_outside_direct_getmetadata_calls','Stop automatically unserializing Phar metadata outside direct getMetadata() calls','{"Yes":25,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(378,243,1,'doodle__form__adopt_this_policy_for_future_symbols_defined_by_php-src_and_extension_code','Adopt this policy for future symbols defined by php-src and extension code?','{"Yes":13,"No":17}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(384,244,1,'doodle__form__are_you_okay_with_re-voting_on_the_attribute_syntax_for_php_8.0_again','Are you okay with re-voting on the attribute syntax for PHP 8.0, again?','{"Yes":50,"No":11}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(385,244,0,'doodle__form__new_attribute_syntax_preference_1','New attribute syntax preference #1','{"@@Attr":9,"#[Attr]":32,"@[Attr]":13,"<<>>":0,"<<Attr>>":6,"@:Attr":1,"@{Attr}":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(386,244,0,'doodle__form__new_attribute_syntax_preference_2','New attribute syntax preference #2','{"@@Attr":4,"#[Attr]":10,"@[Attr]":7,"<<>>":0,"<<Attr>>":16,"@:Attr":4,"@{Attr}":21}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(387,244,0,'doodle__form__new_attribute_syntax_preference_3','New attribute syntax preference #3','{"@@Attr":0,"#[Attr]":9,"@[Attr]":28,"<<>>":0,"<<Attr>>":6,"@:Attr":4,"@{Attr}":12}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(388,244,0,'doodle__form__new_attribute_syntax_preference_4','New attribute syntax preference #4','{"@@Attr":5,"#[Attr]":4,"@[Attr]":8,"<<>>":0,"<<Attr>>":22,"@:Attr":6,"@{Attr}":12}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(389,244,0,'doodle__form__new_attribute_syntax_preference_5','New attribute syntax preference #5','{"@@Attr":20,"#[Attr]":2,"@[Attr]":2,"<<Attr>>":3,"@:Attr":19,"@{Attr}":7}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(390,244,0,'doodle__form__new_attribute_syntax_preference_6','New attribute syntax preference #6','{"@@Attr":18,"#[Attr]":5,"@[Attr]":2,"<<Attr>>":4,"@:Attr":19,"@{Attr}":3}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(391,245,1,'doodle__form__add_support_for_explicit_octal_notation','Add support for explicit octal notation','{"Yes":33,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(392,246,1,'doodle__form__straw_poll:preferred_choice_of_naming_pattern','Straw poll: Preferred choice of naming pattern','{"any() and all()":3,"iter_any() and iter_all()":5,"iterable_any() and iterable_all()":11,"Opposed to adding this functionality":0,"Opposed to names":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(393,247,1,'doodle__form__restrict_globals_usage_as_specified','Restrict $GLOBALS usage as specified?','{"Yes":48,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(394,248,1,'doodle__form__add_the_function_array_is_list_array_array:bool_to_php','Add the function array_is_list(array $array): bool to PHP?','{"Yes":41,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(395,249,1,'doodle__form__straw_poll:interest_in_configurable_callback_to_dump_results_of_expressions_in_php_-a','Straw poll: Interest in configurable callback to dump results of expressions in `php -a`','{"Support overriding (no default dumper).":4,"Support overriding (use proposed default dumper).":3,"Add proposed dumper with ability to disable but not override.":0,"Opposed to previous options":0,"Opposed to adding this":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(396,249,0,'doodle__form__straw_poll:preferred_shell_choice:substitute_before_this_rfc_was_created','Straw poll: Preferred shell choice/substitute before this RFC was created','{"php -a":3,"php (non-interactive)":7,"psysh":1,"other shell":0,"Xdebug\/debugger":0,"online tools":0,"unit tests\/TDD":0,"none":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(397,250,1,'doodle__form__straw_poll:favorite_choice_of_namespace','Straw poll: Favorite choice of namespace','{"iterable_any() and iterable_all()":9,"iter\\":0,"iterable\\":1,"PHP\\":0,"PHP\\Spl\\":0,"PHP\\iter\\":1,"PHP\\iterable\\":9,"Ext\\Spl\\":0,"Spl\\":3,"Spl\\iter\\":0,"Spl\\iterable\\":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(398,250,0,'doodle__form__straw_poll:second_favorite_choice_of_namespace','Straw poll: Second favorite choice of namespace','{"iterable_any() and iterable_all()":0,"iter\\":2,"iterable\\":5,"PHP\\":0,"PHP\\Spl\\":2,"PHP\\iter\\":6,"PHP\\iterable\\":4,"Ext\\Spl\\":0,"Spl\\":0,"Spl\\iter\\":0,"Spl\\iterable\\":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(399,250,0,'doodle__form__straw_poll:third_favorite_choice_of_namespace','Straw poll: Third favorite choice of namespace','{"iterable_any() and iterable_all()":10,"iter\\":0,"iterable\\":2,"PHP\\":0,"PHP\\Spl\\":0,"PHP\\iter\\":0,"PHP\\iterable\\":0,"Ext\\Spl\\":0,"Spl\\":0,"Spl\\iter\\":1,"Spl\\iterable\\":3}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(400,250,0,'doodle__form__straw_poll:fourth_favorite_choice_of_namespace','Straw poll: Fourth favorite choice of namespace','{"iterable_any() and iterable_all()":0,"iter\\":0,"iterable\\":0,"PHP\\":0,"PHP\\Spl\\":0,"PHP\\iter\\":0,"PHP\\iterable\\":1,"Ext\\Spl\\":1,"Spl\\":0,"Spl\\iter\\":5,"Spl\\iterable\\":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(401,250,0,'doodle__form__straw_poll:fifth_favorite_choice_of_namespace','Straw poll: Fifth favorite choice of namespace','{"iterable_any() and iterable_all()":0,"iter\\":0,"iterable\\":0,"PHP\\":1,"PHP\\Spl\\":0,"PHP\\iter\\":2,"PHP\\iterable\\":1,"Ext\\Spl\\":0,"Spl\\":0,"Spl\\iter\\":0,"Spl\\iterable\\":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(402,250,0,'doodle__form__straw_poll:sixth_favorite_choice_of_namespace','Straw poll: Sixth favorite choice of namespace','{"iterable_any() and iterable_all()":0,"iter\\":0,"iterable\\":0,"PHP\\":0,"PHP\\Spl\\":0,"PHP\\iter\\":1,"PHP\\iterable\\":0,"Ext\\Spl\\":0,"Spl\\":0,"Spl\\iter\\":0,"Spl\\iterable\\":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(403,250,0,'doodle__form__straw_poll:seventh_favorite_choice_of_namespace','Straw poll: Seventh favorite choice of namespace','{"iterable_any() and iterable_all()":0,"iter\\":0,"iterable\\":0,"PHP\\":0,"PHP\\Spl\\":1,"PHP\\iter\\":0,"PHP\\iterable\\":0,"Ext\\Spl\\":0,"Spl\\":0,"Spl\\iter\\":1,"Spl\\iterable\\":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(404,250,0,'doodle__form__straw_poll:eighth_favorite_choice_of_namespace','Straw poll: Eighth favorite choice of namespace','{"iterable_any() and iterable_all()":0,"iter\\":0,"iterable\\":0,"PHP\\":2,"PHP\\Spl\\":0,"PHP\\iter\\":0,"PHP\\iterable\\":0,"Ext\\Spl\\":0,"Spl\\":0,"Spl\\iter\\":0,"Spl\\iterable\\":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(405,250,0,'doodle__form__straw_poll:ninth_favorite_choice_of_namespace','Straw poll: Ninth favorite choice of namespace','{"iterable_any() and iterable_all()":1,"iter\\":0,"iterable\\":0,"PHP\\":0,"PHP\\Spl\\":0,"PHP\\iter\\":0,"PHP\\iterable\\":0,"Ext\\Spl\\":0,"Spl\\":1,"Spl\\iter\\":0,"Spl\\iterable\\":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(406,250,0,'doodle__form__straw_poll:tenth_favorite_choice_of_namespace','Straw poll: Tenth favorite choice of namespace','{"iterable_any() and iterable_all()":0,"iter\\":0,"iterable\\":1,"PHP\\":0,"PHP\\Spl\\":0,"PHP\\iter\\":0,"PHP\\iterable\\":0,"Ext\\Spl\\":1,"Spl\\":0,"Spl\\iter\\":0,"Spl\\iterable\\":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(407,250,0,'doodle__form__straw_poll:eleventh_favorite_choice_of_namespace','Straw poll: Eleventh favorite choice of namespace','{"iterable_any() and iterable_all()":0,"iter\\":1,"iterable\\":0,"PHP\\":0,"PHP\\Spl\\":1,"PHP\\iter\\":0,"PHP\\iterable\\":0,"Ext\\Spl\\":0,"Spl\\":0,"Spl\\iter\\":0,"Spl\\iterable\\":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(408,251,1,'doodle__form__dump_results_of_expressions_in_php_-a_as_described_in_this_rfc','Dump results of expressions in `php -a` as described in this RFC','{"Yes":11,"No":6}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(409,252,1,'doodle__form__allow_string_keys_in_array_unpacking','Allow string keys in array unpacking?','{"Yes":50,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(410,253,1,'doodle__form__deprecate_passing_null_to_non-nullable_arguments_of_internal_functions','Deprecate passing null to non-nullable arguments of internal functions?','{"Yes":46,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(411,254,1,'doodle__form__include_enumerations_in_php','Include Enumerations in PHP','{"Yes":44,"No":7}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(412,255,1,'doodle__form__add_var_representation_value_int_flags_0:string_to_php','Add var_representation($value, int $flags=0): string to php?','{"Yes":9,"No":10}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(413,256,1,'doodle__form__add_php_iterable_any_and_all_to_php','Add PHP\iterable\any() and all() to PHP?','{"Yes":11,"No":12}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(414,256,0,'doodle__form__names_to_use:any:all_or_any_value:all_values','Names to use: any()/all() or any_value()/all_values()','{"any()\/all()":13,"any_value()\/all_values()":3}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(415,256,0,'doodle__form__reasons_for_voting_against_this_rfc','Reasons for voting against this RFC','{"Too small in scope":5,"Object to the choice of namespace":0,"Prefer the global namespace":2,"Confused about the implementation":0,"Other":1,"Voted for this RFC":5,"Prefer userland solutions":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(416,257,1,'doodle__form__change_default_mysqli_error_mode','Change Default mysqli Error Mode','{"Yes":20,"No":9}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(417,258,1,'doodle__form__fsync_function','fsync Function','{"Yes":30,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(418,259,1,'doodle__form__add_fibers_to_php','Add Fibers to PHP?','{"Yes":50,"No":14}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(419,260,1,'doodle__form__mysqli_bind-in-execute','MySQLi bind-in-execute','{"Yes":32,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(420,261,1,'doodle__form__add_noreturn_type','Add noreturn type','{"Yes":42,"No":11}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(421,261,0,'doodle__form__noreturn_vs_never','noreturn vs never','{"noreturn":14,"never":34}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(422,262,1,'doodle__form__add_object-scoped_rng','Add object-scoped RNG','{"Yes":3,"No":19}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(423,263,1,'doodle__form__accept_deprecate_implicit_non-integer-compatible_float_to_int_conversions_rfc_proposal','Accept Deprecate implicit non-integer-compatible float to int conversions RFC proposal','{"Yes":29,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(424,264,1,'doodle__form__add_opcache_direct_execution_opcode_without_source_file','Add OPCache direct execution opcode without source file','{"Yes":0,"No":35}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(425,265,1,'doodle__form__phase_out_serializable_as_proposed','Phase out Serializable as proposed?','{"Yes":36,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(426,266,1,'doodle__form__change_static_variable_inheritance_as_proposed','Change static variable inheritance as proposed?','{"Yes":38,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(427,267,1,'doodle__form__add_mysqli_fetch_column_to_mysqli','Add mysqli_fetch_column to mysqli?','{"Yes":18,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(428,268,1,'doodle__form__allow_use_of_namespaces_in_line_with_these_guidelines','Allow use of namespaces in line with these guidelines?','{"Yes":37,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(429,269,1,'doodle__form__add_return_type_declarations_for_internal_methods_in_the_proposed_schedule','Add return type declarations for internal methods in the proposed schedule?','{"Yes":17,"No":7}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(430,270,1,'doodle__form__add_intldatepatterngenerator','Add IntlDatePatternGenerator?','{"Yes":10,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(431,271,1,'doodle__form__add_support_for_final_class_constants','Add support for final class constants?','{"Yes":29,"No":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(432,272,1,'doodle__form__include_auto-capturing_closures_in_php','Include Auto-capturing closures in PHP','{"Yes":13,"No":10}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(433,273,1,'doodle__form__include_short-function_syntax_in_php','Include short-function syntax in PHP','{"Yes":16,"No":18}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(434,274,1,'doodle__form__allow_static_properties_in_enums','Allow static properties in enums','{"Yes":8,"No":17}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(435,275,1,'doodle__form__add_pure_intersection_types_to_php','Add pure intersection types to PHP','{"Yes":30,"No":3}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(436,276,1,'doodle__form__preferred_namespacing_choice_for_cachediterable','Preferred namespacing choice for CachedIterable','{"Iterable\\CachedIterable":8,"CachedIterable":8,"Collections\\CachedIterable":0,"Opposed to previous namespace choices":0,"Opposed to adding this functionality to php":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(437,276,0,'doodle__form__preferred_namespacing_choice_for_any:all:none:reduce:find','Preferred namespacing choice for any()/all()/none()/reduce()/find()','{"Iterable\\any()":10,"iterable_any()":5,"Opposed to previous namespace choices":0,"Opposed to adding this functionality to php":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(438,276,0,'doodle__form__global_functions_i_would_want_to_add_to_php_to_act_on_iterables_as_described_in_implementation_link','Global functions I would want to add to PHP to act on iterables as described in implementation link','{"any(...)\/all(iterable $input, $callback = null): bool":10,"none(...): bool":0,"find(iterable $input, $callback, $default = null): mixed":0,"reduce(iterable $input, $callback, $initial = null): mixed":0,"Still too small in scope":3,"Opposed to adding this functionality to php":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(439,276,0,'doodle__form__preferred_namespacing_for_iterable','Preferred namespacing for iterable\','{"iterable\\ (lowercase)":0,"Iterable\\ (CamelCase)":16}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(440,277,1,'doodle__form__deprecate_autovivification_from_false','Deprecate autovivification from false?','{"Yes":34,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(441,278,1,'doodle__form__add_immutableiterable_to_core','Add ImmutableIterable to core','{"Yes":2,"No":9}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(442,278,0,'doodle__form__reasons_for_voting_against_the_immutableiterable_rfc','Reasons for voting against the ImmutableIterable RFC','{"Object to the namespace choice":1,"Object to the name":4,"Object to the implementation":1,"Don''t see a use case":0,"Other":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(443,279,1,'doodle__form__add_partial_function_application_php','Add partial function application PHP','{"Yes":29,"No":20}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(444,280,1,'doodle__form__make_reflection_setaccessible_no-op','Make reflection setAccessible() no-op','{"Yes":31,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(445,281,1,'doodle__form__support_new_in_initializers_as_proposed','Support new in initializers as proposed?','{"Yes":43,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(446,282,1,'doodle__form__deprecate_date_sunrise_and_date_sunset','Deprecate date_sunrise() and date_sunset()?','{"Yes":51,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(447,282,0,'doodle__form__deprecate_key_current_next_prev_reset_on_objects','Deprecate key(), current(), next(), prev(), reset() on objects?','{"Yes":48,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(448,282,0,'doodle__form__deprecate_mb_check_encoding_without_argument','Deprecate mb_check_encoding() without argument?','{"Yes":44,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(449,282,0,'doodle__form__deprecate_get_class_get_parent_class_and_get_called_class_without_argument','Deprecate get_class(), get_parent_class() and get_called_class() without argument?','{"Yes":21,"No":21}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(450,282,0,'doodle__form__deprecate_file_binary_and_file_text_constants','Deprecate FILE_BINARY and FILE_TEXT constants?','{"Yes":42,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(451,282,0,'doodle__form__deprecate_t_fopen_mode','Deprecate t fopen mode?','{"Yes":13,"No":17}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(452,282,0,'doodle__form__deprecate_passing_bool_for_amountorupordown_argument_of_intlcalendar:roll','Deprecate passing bool for $amountOrUpOrDown argument of IntlCalendar::roll()?','{"Yes":0,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(453,282,0,'doodle__form__deprecate_accessing_static_members_on_traits','Deprecate accessing static members on traits?','{"Yes":40,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(454,282,0,'doodle__form__deprecate_strptime','Deprecate strptime()?','{"Yes":35,"No":3}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(455,282,0,'doodle__form__deprecate_strftime_and_gmstrftime','Deprecate strftime() and gmstrftime()?','{"Yes":29,"No":9}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(456,282,0,'doodle__form__deprecate_mhash_family_of_functions','Deprecate mhash*() family of functions?','{"Yes":38,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(457,282,0,'doodle__form__deprecate_int_parameters_to_ctype_functions','Deprecate int parameters to ctype_*() functions?','{"Yes":34,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(458,282,0,'doodle__form__deprecate_return_by_reference_with_void_type','Deprecate return by reference with void type?','{"Yes":39,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(459,282,0,'doodle__form__deprecate_nil_constant_defined_by_the_imap_extension','Deprecate NIL constant defined by the IMAP extension?','{"Yes":35,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(460,282,0,'doodle__form__deprecate_calling_overloaded_pgsql_functions_without_the_connection_argument','Deprecate calling overloaded pgsql functions without the connection argument?','{"Yes":36,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(461,282,0,'doodle__form__deprecate_num_points_parameter_of_image_open_filled_polygon','Deprecate $num_points parameter of image(open|filled)polygon?','{"Yes":20,"No":9}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(462,282,0,'doodle__form__deprecate_mysqli:init','Deprecate mysqli::init()?','{"Yes":34,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(463,282,0,'doodle__form__deprecate_filter.default_ini_setting','Deprecate filter.default ini setting?','{"Yes":28,"No":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(464,282,0,'doodle__form__deprecate_auto_detect_line_endings_ini_setting','Deprecate auto_detect_line_endings ini setting?','{"Yes":38,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(465,282,0,'doodle__form__deprecate_ssl_method_option_to_soapclient_constructor','Deprecate ssl_method option to SoapClient constructor?','{"Yes":25,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(466,282,0,'doodle__form__deprecate_filter_sanitize_string','Deprecate FILTER_SANITIZE_STRING?','{"Yes":36,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(467,282,0,'doodle__form__deprecate_oci8.old_oci_close_semantics_ini_setting','Deprecate oci8.old_oci_close_semantics INI setting?','{"Yes":27,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(468,282,0,'doodle__form__deprecate_odbc_result_all','Deprecate odbc_result_all()?','{"Yes":34,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(469,282,0,'doodle__form__deprecate_passing_bool_for_value_argument_of_intlcalendar:roll','Deprecate passing bool for $value argument of IntlCalendar::roll()?','{"Yes":38,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(470,283,1,'doodle__form__add_readonly_properties_as_proposed','Add readonly properties as proposed?','{"Yes":38,"No":11}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(471,284,1,'doodle__form__introduce_first-class_callable_syntax_as_proposed','Introduce first-class callable syntax as proposed?','{"Yes":44,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(472,285,1,'doodle__form__is_literal','is_literal','{"Yes":10,"No":23}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(473,286,1,'doodle__form__add_pdo_function:mysqlgetwarningcount','Add PDO function: mysqlGetWarningCount','{"Yes":3,"No":14}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(474,287,1,'doodle__form__pipe_operator','Pipe Operator','{"Yes":11,"No":17}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(475,288,1,'doodle__form__make_intersection_types_nullable','Make intersection types nullable','{"Yes":12,"No":26}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(476,288,0,'doodle__form__preferred_syntax','Preferred syntax','{"\"?\" prefix":6,"\"|null\" suffix":29}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(477,288,0,'doodle__form__intersections_should_be','Intersections should be','{"without brackets around":1,"with brackets around":27,"allow both styles":7}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(478,289,1,'doodle__form__deprecate_partially_supported_callables','Deprecate partially supported callables?','{"Yes":32,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(479,290,1,'doodle__form__deprecate_dynamic_property_creation_with_allowdynamicproperties_opt-in','Deprecate dynamic property creation with #[AllowDynamicProperties] opt-in?','{"Yes":52,"No":25}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(480,291,1,'doodle__form__migrate_from_bugs.php.net_to_github_issues_as_proposed','Migrate from bugs.php.net to GitHub issues as proposed?','{"Yes":41,"No":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(481,292,1,'doodle__form__use_locale-independent_case_conversion_for_string_functions_as_proposed','Use locale-independent case conversion for string functions as proposed?','{"Yes":29,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(482,293,1,'doodle__form__add_array_group_function_to_php','Add array_group function to PHP','{"Yes":0,"No":19}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(483,294,1,'doodle__form__adopt_user_defined_operator_overloads_as_described','Adopt user defined operator overloads as described?','{"Yes":21,"No":24}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(484,295,1,'doodle__form__straw_poll:favorite_choice_of_naming_pattern','Straw poll: Favorite choice of naming pattern','{"''''Deque''''":2,"''''Collections\\Deque''''":15,"''''SplDeque''''":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(485,295,0,'doodle__form__straw_poll:second_favorite_choice_of_naming_pattern','Straw poll: Second favorite choice of naming pattern','{"''''Deque''''":12,"''''Collections\\Deque''''":2,"''''SplDeque''''":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(486,295,0,'doodle__form__straw_poll:third_favorite_choice_of_naming_pattern','Straw poll: Third favorite choice of naming pattern','{"''''Deque''''":1,"''''Collections\\Deque''''":0,"''''SplDeque''''":12}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(487,296,1,'doodle__form__remove_support_for_libmysql_from_mysqli','Remove support for libmysql from mysqli','{"Yes":30,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(488,297,1,'doodle__form__redacting_parameters_in_back_traces','Redacting parameters in back traces','{"Yes":24,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(489,298,1,'doodle__form__accept_allow_null_and_false_as_stand-alone_types_rfc','Accept Allow null and false as stand-alone types RFC?','{"Yes":38,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(490,299,1,'doodle__form__promote_undefined_variables_to_throw_an_error','Promote Undefined Variables to Throw an Error','{"Yes":33,"No":8}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(491,299,0,'doodle__form__main_reason_for_voting_against_if_you_did','Main reason for voting against if you did?','{"Using undefined variables is a legitimate coding style":0,"Backwards compatibility breaks":7,"Would be in favour, but not in 9.0":0,"Something else":5}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(492,300,1,'doodle__form__accept_sealed_classes_rfc','Accept sealed classes RFC?','{"Yes":16,"No":11}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(493,300,0,'doodle__form__which_syntax_option_do_you_prefer','Which syntax option do you prefer?','{"`sealed` + `permits`":12,"`permits` only":15,"`for`":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(494,301,1,'doodle__form__should_utf8_encode_and_utf8_decode_be_deprecated_in_8.2_and_removed_in_9.0','Should utf8_encode and utf8_decode be deprecated in 8.2 and removed in 9.0?','{"Yes":33,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(495,302,1,'doodle__form__deprecate_string_interpolation_in_php_8.2_and_remove_them_in_php_9.0','Deprecate ${} string interpolation in PHP 8.2 and remove them in PHP 9.0?','{"Yes":31,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(496,303,1,'doodle__form__promote_undefined_property_access_to_throw_an_error','Promote Undefined Property Access to Throw an Error?','{"Yes":31,"No":5}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(497,303,0,'doodle__form__main_reason_for_voting_against_undefined_property_error_promotion_if_you_did','Main reason for voting against undefined_property_error_promotion if you did?','{"Backwards compatibility breaks":0,"Would be in favour, but not in 9.0":0,"Do not like stdClass behaviour":6,"Something else":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(498,304,1,'doodle__form__add_readonly_classes_as_proposed','Add readonly classes as proposed?','{"Yes":28,"No":7}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(499,305,1,'doodle__form__mysqli_execute_query','mysqli_execute_query','{"Yes":24,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(500,306,1,'doodle__form__accept_add_true_type_rfc','Accept Add true type RFC?','{"Yes":33,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(501,307,1,'doodle__form__throw_a_deprecation_notice_when_is_callable_receives_one_of_the_deprecated_partially_supported_callables','Throw a deprecation notice when is_callable() receives one of the deprecated partially supported callables ?','{"Yes":28,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(502,307,0,'doodle__form__throw_a_deprecation_notice_when_type_verification_on_the_callable_type_detects_one_of_the_deprecated_partially_supported_callables','Throw a deprecation notice when type verification on the callable type detects one of the deprecated partially supported callables ?','{"Yes":25,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(503,308,1,'doodle__form__accept_stricter_implicit_boolean_coercions_rfc_as_proposed','Accept Stricter implicit boolean coercions RFC as proposed?','{"Yes":3,"No":14}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(504,309,1,'doodle__form__1.1_global_login_system','1.1 Global login system','{"Yes":4,"No":14}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(505,309,0,'doodle__form__1.2_type_of_global_login_system','1.2 Type of global login system','{"Use oAuth provider GitHub":1,"Use own system (hosted on php.net)":14,"Use both":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(506,309,0,'doodle__form__2.1_www.php.net_use_preferences','2.1 www.php.net use preferences','{"Yes, only allow setting settings with account":0,"Yes, but still allow the old system with saving settings in cookies":12,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(507,309,0,'doodle__form__2.2_www.php.net_user_contributed_notes','2.2 www.php.net user contributed notes','{"Yes, only allow setting notes with account":2,"Yes, but still allow the old system":1,"No":9}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(508,309,0,'doodle__form__3.1_bugs.php.net_login','3.1 bugs.php.net login','{"Yes":3,"No":8}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(509,309,0,'doodle__form__4.1_edit.php.net_login','4.1 edit.php.net login','{"Yes":1,"Yes, but still allow anonymous login":2,"Keep old login system completely":8}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(510,309,0,'doodle__form__5.1_pecl.php.net_login_and_pear.php.net_login','5.1 pecl.php.net login and pear.php.net login','{"Yes":3,"No":8}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(511,309,0,'doodle__form__7.1_wiki.php.net','7.1 wiki.php.net','{"Yes, fully migrate":4,"Yes, but still allow old login system":0,"No":8}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(512,310,1,'doodle__form__add_random_extension','Add Random extension','{"Yes":21,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(513,311,1,'doodle__form__accept_disjunctive_normal_form_types_rfc','Accept Disjunctive Normal Form Types RFC?','{"Yes":25,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(514,312,1,'doodle__form__add_support_for_fetching_properties_of_enums_in_constant_expressions','Add support for fetching properties of enums in constant expressions?','{"Yes":24,"No":11}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(515,272,1,'doodle__form__add_short_closures_as_described_in_php_8.2','Add Short Closures as described in PHP 8.2?','{"Yes":27,"No":16}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(516,313,1,'doodle__form__make_all_implemented_engines_final','Make all implemented engines final?','{"Yes":18,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(517,313,0,'doodle__form__remove_the_serializableengine_interface','Remove the SerializableEngine interface?','{"Yes":18,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(518,313,0,'doodle__form__remove_the_combinedlcg_class','Remove the CombinedLCG class?','{"Yes":18,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(519,313,0,'doodle__form__add_the_pickarraykeys_method_to_the_randomizer','Add the pickArrayKeys() method to the Randomizer?','{"Yes":12,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(520,313,0,'doodle__form__rename_randomizer:shufflestring_to_randomizer:shufflebytes','Rename Randomizer::shuffleString() to Randomizer::shuffleBytes()?','{"Yes":16,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(521,313,0,'doodle__form__rename_pcg64_and_mersennetwister','Rename PCG64 and MersenneTwister?','{"Yes":14,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(522,313,0,'doodle__form__add_the_xoshiro256starstar_engine_and_class','Add the Xoshiro256StarStar engine and class?','{"Yes":13,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(523,314,1,'doodle__form__add_support_for_changing_the_json_indentation_amount','Add support for changing the JSON indentation amount?','{"Yes":7,"No":21}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(524,315,1,'doodle__form__add_proposed_new_functional_curl_url_api','Add proposed new functional Curl URL API','{"Yes":10,"No":14}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(525,316,1,'doodle__form__iterator_to_array:change_the_type_of_iterator_to_array_s_iterator_parameter_from_traversable_to_iterable','iterator_to_array: Change the type of iterator_to_array()’s $iterator parameter from \Traversable to iterable?','{"Yes":17,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(526,316,0,'doodle__form__iterator_count:change_the_type_of_iterator_count_s_iterator_parameter_from_traversable_to_iterable','iterator_count: Change the type of iterator_count()’s $iterator parameter from \Traversable to iterable?','{"Yes":17,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(527,317,1,'doodle__form__allow_constants_in_traits_as_proposed','Allow constants in traits as proposed?','{"Yes":28,"No":12}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(528,318,1,'doodle__form__json_validate','json_validate','{"Yes":18,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(529,319,1,'doodle__form__add_the_unserializationfailedexception_and_wrap_any_throwables_in_php_8.x','Add the \UnserializationFailedException and wrap any Throwables in PHP 8.x?','{"Yes":20,"No":12}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(530,319,0,'doodle__form__increase_the_severity_of_emitted_e_notice_to_e_warning_in_php_8.x','Increase the severity of emitted E_NOTICE to E_WARNING in PHP 8.x?','{"Yes":33,"No":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(531,319,0,'doodle__form__throw_unserializationfailedexception_instead_of_emitting_e_notice:e_warning_in_php_9.0','Throw \UnserializationFailedException instead of emitting E_NOTICE/E_WARNING in PHP 9.0?','{"Yes":23,"No":8}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(532,320,1,'doodle__form__add_a_destructuring_coalesce_feature_as_described','Add a destructuring coalesce feature as described?','{"Yes":14,"No":11}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(533,321,1,'doodle__form__add_randomizer:getbytesfromstring','Add Randomizer::getBytesFromString()?','{"Yes":18,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(534,321,0,'doodle__form__add_randomizer:nextfloat_randomizer:getfloat_and_the_intervalboundary_enum','Add Randomizer::nextFloat(), Randomizer::getFloat(), and the IntervalBoundary enum?','{"Yes":16,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(535,322,1,'doodle__form__more_appropriate_date:time_exceptions','More Appropriate Date/Time Exceptions','{"Yes":25,"No":1}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(536,323,1,'doodle__form__add_dynamic_class_constant_fetches_to_php_8.3','Add dynamic class constant fetches to PHP 8.3?','{"Yes":15,"No":4}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(537,324,1,'doodle__form__include_asymmetric_visibility','Include asymmetric visibility?','{"Yes":14,"No":12}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(538,324,0,'doodle__form__if_voting_no_why','If voting no, why?','{"Dislike feature itself":6,"Syntax details":4,"Other (specify below)":2}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(539,325,1,'doodle__form__should_non-readonly_classes_be_able_to_extend_readonly-classes','Should non-readonly classes be able to extend readonly-classes?','{"Yes":7,"No":12}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(540,325,0,'doodle__form__should_it_be_possible_to_reinitialize_readonly_properties_during_cloning','Should it be possible to reinitialize readonly properties during cloning?','{"Yes":26,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(541,326,1,'doodle__form__should_include_directives_be_cleaned_up','Should #include directives be cleaned up?','{"Yes":11,"No":10}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(542,326,0,'doodle__form__is_it_allowed_to_document_an_include_line_with_a_code_comment','Is it allowed to document an #include line with a code comment?','{"Yes":1,"No":9}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(543,326,0,'doodle__form__is_it_allowed_to_forward-declare_structs:unions:typedefs','Is it allowed to forward-declare structs/unions/typedefs?','{"Yes":1,"No":7}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(544,326,0,'doodle__form__is_it_allowed_to_split_a_large_header_to_reduce_dependencies','Is it allowed to split a large header to reduce dependencies?','{"Yes":12,"No":6}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(545,327,1,'doodle__form__accept_saner_array_sum_product_rfc','Accept Saner array_(sum|product)() RFC?','{"Yes":27,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(546,328,1,'doodle__form__add_support_for_typed_class_constants','Add support for typed class constants?','{"Yes":25,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(547,329,1,'doodle__form__allow_arbitrary_static_variable_initializers_in_php_8.3','Allow arbitrary static variable initializers in PHP 8.3?','{"Yes":25,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(548,330,1,'doodle__form__make_unserialize_emit_a_e_warning_if_the_input_contains_trailing_bytes','Make unserialize() emit a E_WARNING if the input contains trailing bytes?','{"Yes":20,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(549,331,1,'doodle__form__introduce_the_php_technical_committee_as_defined_in_this_rfc','Introduce the PHP Technical Committee as defined in this RFC','{"Yes":10,"No":21}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(550,333,1,'doodle__form__accept_new_core_autoloading_mechanism_with_support_for_function_autoloading_rfc','Accept New core autoloading mechanism with support for function autoloading RFC?','{"Yes":0,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(551,334,1,'doodle__form__accept_saner_range_semantics_rfc','Accept Saner range() semantics RFC?','{"Yes":0,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(552,337,1,'doodle__form__accept_path_to_saner_increment:decrement_operators_rfc','Accept Path to Saner Increment/Decrement operators RFC?','{"Yes":0,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(553,338,1,'doodle__form__accept_add_file_descriptor_function_rfc','Accept Add file_descriptor function RFC?','{"Yes":0,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(554,339,1,'doodle__form__accept_add_samesite_cookie_attribute_parameter_rfc','Accept Add SameSite cookie attribute parameter RFC?','{"Yes":0,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(555,341,1,'doodle__form__add_list_unique_and_assoc_unique_functions','Add List\unique() and Assoc\unique() functions?','{"Yes":0,"No":0}',66,0);
INSERT INTO vote (id, rfc_id , primary_vote, vote_id , question , current_votes , pass_threshold , hide) VALUES(556,342,1,'doodle__form__use_exceptions_by_default_in_sqlite3_extension_as_described_in_this_rfc','Use exceptions by default in SQLite3 extension as described in this RFC?','{"Yes":18,"No":0}',66,0);