forked from php/web-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2014.php
2097 lines (1864 loc) · 95.9 KB
/
2014.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
$_SERVER['BASE_PAGE'] = 'archive/2014.php';
include_once __DIR__ . '/../include/prepend.inc';
include_once __DIR__ . '/../include/pregen-news.inc';
news_archive_sidebar();
site_header("News Archive - 2014", array("cache" => true));
?>
<h1>News Archive - 2014</h1>
<p>
Here are the most important news items we have published in 2014 on PHP.net.
</p>
<hr>
<article class="newsItem">
<header>
<div class="newsImage"><?php news_image("http://2015.phpsouthcoast.co.uk/", "php-south-coast.png", "PHP South Coast 2015"); ?></div>
<h2 class="newstitle"><a id="id2014-12-29-2" href="http://2015.phpsouthcoast.co.uk/" rel="bookmark" class="bookmark">PHP South Coast 2015</a></h2>
</header>
<time class="newsdate" datetime="2014-12-29T23:08:32+01:00">29 Dec 2014</time>
<div class="newscontent">
<div>
<p> We’re pleased to announce our first conference, PHP South Coast 2015!</p>
<p> Taking place on the south coast of England in Summer 2015, where community members from around the world will come together to learn and share information about the latest trends and technologies in professional PHP development.</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"><?php news_image("http://bulgariawebsummit.com/", "bulgaria-web-summit.png", "Bulgaria Web Summit 2015"); ?></div>
<h2 class="newstitle"><a id="id2014-12-29-1" href="http://bulgariawebsummit.com/" rel="bookmark" class="bookmark">Bulgaria Web Summit 2015</a></h2>
</header>
<time class="newsdate" datetime="2014-12-29T23:03:02+01:00">29 Dec 2014</time>
<div class="newscontent">
<div>
<p>Bulgaria Web Summit 2015 is an event about (almost) everything a modern web person should know: {Programming, IoT, UX, UI, Fun, Privacy}. This year we will have strong PHP presense to support the growth of Bulgarian PHP community. The event will take place on the 18th of April at the conference area of the Inter Expo Centre.</p>
<p>The purpose of this meeting is to discuss the new tendencies in this direction and to popularize the internet technologies in the spheres of business, education, and services. The range of subjects includes technologies like PHP, JavaScript, CSS, Privacy and others.</p>
<p>Join us and have fun while learning something new.</p>
<p>Twitter: <a href="https://twitter.com/bgwebsummit">@bgwebsummit</a></p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-12-18-3" href="http://php.net/archive/2014.php#id2014-12-18-3" rel="bookmark" class="bookmark">PHP 5.4.36 Released</a></h2>
</header>
<time class="newsdate" datetime="2014-12-18T18:15:29-08:00">18 Dec 2014</time>
<div class="newscontent">
<div>
<p>The PHP development team announces the immediate availability of PHP
5.4.36. Two security-related bugs were fixed in this release, including the fix for CVE-2014-8142.
All PHP 5.4 users are encouraged to upgrade to this version.
</p>
<p>For source downloads of PHP 5.4.36 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-5.php#5.4.36">ChangeLog</a>.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-12-18-2" href="http://php.net/archive/2014.php#id2014-12-18-2" rel="bookmark" class="bookmark">PHP 5.6.4 is available</a></h2>
</header>
<time class="newsdate" datetime="2014-12-18T16:35:48-08:00">18 Dec 2014</time>
<div class="newscontent">
<div>
<p>The PHP development team announces the immediate availability of PHP
5.6.4. This release fixes several bugs and one CVE related to unserialization.
All PHP 5.6 users are encouraged to upgrade to this version.
</p>
<p>For source downloads of PHP 5.6.4 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-5.php#5.6.4">ChangeLog</a>.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-12-18-1" href="http://php.net/archive/2014.php#id2014-12-18-1" rel="bookmark" class="bookmark">PHP 5.5.20 is available</a></h2>
</header>
<time class="newsdate" datetime="2014-12-18T16:10:55+00:00">18 Dec 2014</time>
<div class="newscontent">
<div>
<p>The PHP development team announces the immediate availability of PHP
5.5.20. This release fixes several bugs and one CVE related to unserialization.
All PHP 5.5 users are encouraged to upgrade to this version.
</p>
<p>For source downloads of PHP 5.5.20 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-5.php#5.5.20">ChangeLog</a>.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-11-13-3" href="http://php.net/archive/2014.php#id2014-11-13-3" rel="bookmark" class="bookmark">PHP 5.4.35 Released</a></h2>
</header>
<time class="newsdate" datetime="2014-11-13T22:11:34-08:00">13 Nov 2014</time>
<div class="newscontent">
<div>
<p>The PHP development team announces the immediate availability of PHP
5.4.35. 4 security-related bugs were fixed in this release, including the fix for CVE-2014-3710.
All PHP 5.4 users are encouraged to upgrade to this version.
</p>
<p>For source downloads of PHP 5.4.35 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-5.php#5.4.35">ChangeLog</a>.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-11-13-2" href="http://php.net/archive/2014.php#id2014-11-13-2" rel="bookmark" class="bookmark">PHP 5.6.3 is available</a></h2>
</header>
<time class="newsdate" datetime="2014-11-13T15:15:58-08:00">13 Nov 2014</time>
<div class="newscontent">
<div>
<p>The PHP development team announces the immediate availability of PHP 5.6.3.
This release fixes several bugs and one CVE in the fileinfo extension.
All PHP 5.6 users are encouraged to upgrade to this version.
</p>
<p>For source downloads of PHP 5.6.3 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-5.php#5.6.3">ChangeLog</a>.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-11-13-1" href="http://php.net/archive/2014.php#id2014-11-13-1" rel="bookmark" class="bookmark">PHP 5.5.19 is available</a></h2>
</header>
<time class="newsdate" datetime="2014-11-13T16:45:26+00:00">13 Nov 2014</time>
<div class="newscontent">
<div>
<p>The PHP development team announces the immediate availability of PHP
5.5.19. This release fixes several bugs and one CVE in the fileinfo extension.
All PHP 5.5 users are encouraged to upgrade to this version.
</p>
<p>For source downloads of PHP 5.5.19 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-5.php#5.5.19">ChangeLog</a>.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"><?php news_image("https://phpconference.com/2015se/en", "ipc2015.png", "International PHP Conference Spring 2015"); ?></div>
<h2 class="newstitle"><a id="id2014-11-05-1" href="https://phpconference.com/2015se/en" rel="bookmark" class="bookmark">International PHP Conference Spring 2015</a></h2>
</header>
<time class="newsdate" datetime="2014-11-05T22:31:52+01:00">05 Nov 2014</time>
<div class="newscontent">
<div>
<p>The International PHP Conference is an opportunity for all those involved in the PHP and the Web developer community to learn about the latest trends and technologies. The conference takes place in the center of Berlin which is often considered the "Silicon Valley of Europe". We have some of the best speakers in the world and a tremendous opportunity to get involved in a wonderful networking atmosphere to get in contact with your peers.</p>
<p>The conference will provide the latest know how for building modern and innovative web applications and everything you need for digital success. The conference will explore key topics and core technologies for web developers and decision makers. We will show you how to scale your applications and explain the details of Continuous Integration or evaluate different approaches to NoSQL.</p>
<p>Attendees will have the opportuntiy to meet World Class speakers, core developers and consultants. In addition to having the the chance to meet international known PHP and Web experts at this conference, you will also be given the chance to evaluate your code.</p>
<p>This Conference has been around for ten years and it is definitely a must go event for the PHP Community!</p>
<p>
Basic facts: <br/><br/>
Date: June 7th - 11th, 2015 <br/>
Location: Maritim proArte, Berlin <br/>
</p>
<p>HIGHLIGHTS</p>
<ul>
<li><strong>90+</strong> best practice sessions</li>
<li><strong>Cool PHP & the Gang: 60+</strong> international top speakers</li>
<li>Hands-on Power Workshop Days</li>
<li><strong>Expo</strong> with exiting exhibitors</li>
<li><strong>Conference Combo:</strong> Visit the webinale For Free</li>
<li><strong>All inclusive:</strong> Changing buffets, snacks & refreshing drinks Official certificate for attendees</li>
<li><strong>Free Swag:</strong> Developer backpack, T-Shirt, magazines etc.</li>
<li>Exclusive <strong>community events</strong></li>
</ul>
<p>Topics:</p>
<ul>
<li>Core PHP /PHPNG</li>
<li>PHP Frameworks</li>
<li>PHP Scaling & Performance</li>
<li>PHP Security</li>
<li>PHP Testing & Quality</li>
<li>HHVM & Hack</li>
<li>Architecture</li>
<li>JavaScript / ECMAScript 6</li>
<li>JavaScript Frameworks</li>
<li>JavaScript Performance & Security</li>
<li>Web APIs & Services</li>
<li>Agile</li>
<li>Continuous Delivery</li>
<li>DevOps</li>
<li>Cloud</li>
<li>Data Stores</li>
</ul>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"><?php news_image("http://www.phpuceu.org/phpuceu-2015/", "phpuceu-may-2015-thumb.png", "PHP Unconference Europe 2015"); ?></div>
<h2 class="newstitle"><a id="id2014-10-27-1" href="http://www.phpuceu.org/phpuceu-2015/" rel="bookmark" class="bookmark">PHP Unconference Europe 2015</a></h2>
</header>
<time class="newsdate" datetime="2014-10-27T01:23:45+02:00">27 Oct 2014</time>
<div class="newscontent">
<div>
<p>The 4th PHPucEU is taking place on May 9th and 10th on the wonderful island of Majorca, Spain.</p>
<p>
For the 3rd PHP Unconference Europe in 2014 about 100 attendees came to
Spain and joined a bunch of different sessions. Our mission is to bring
together an international group with knowledge of PHP. In order to address
as wide an audience as possible, the language of all sessions, presentations
and round table discussions will be English.
</p>
<p>
One of the key aspects of an unconference, besides the sessions themselves,
is the motivation for further discussions about topics while a coffee break
(or depending on the time of the day, a beer). We are looking forward to
organize an inspiring, comprehensive and successful weekend, talking about
PHP and related Open Source and web technologies on the sunny island
of Majorca again.
</p>
<p>
Start your summer with a short trip to Majorca, enjoy good coffee and shiny
weather while discussing PHP related topics with international attendees.
</p>
<p>
<a href="http://www.phpuceu.org/phpuceu-2015/" title="PHP Unconference Europe 2015">PHP Unconference Europe 2015</a>
<a href="https://twitter.com/hashtag/phpuceu" title="PHP Unconference Europe on Twitter">#phpuceu</a>
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"><?php news_image("http://sunshinephp.com/", "sunshinephp-feb-2015-thumb.png", "SunshinePHP Developer Conference 2015"); ?></div>
<h2 class="newstitle"><a id="id2014-10-18-1" href="http://sunshinephp.com/" rel="bookmark" class="bookmark">SunshinePHP Developer Conference 2015</a></h2>
</header>
<time class="newsdate" datetime="2014-10-18T03:42:05+02:00">18 Oct 2014</time>
<div class="newscontent">
<div>
<p>
The 3rd year of <a href="http://sunshinephp.com/" title="SunshinePHP">SunshinePHP</a> in Miami, Florida is shaping up to be awesome once again from February 5th - 7th, 2015. We will have a full day of in-depth 3-hour tutorials on Thursday, followed by the 2 day conference on Friday an Saturday. The conference has something for every level of PHP developer, as well as a hack-a-thon, unscheduled Uncon, fun activities, and of course sunshine. February is the perfect time to be in sunny Miami, Florida but you'll want to hurry because tickets sold out last year.
</p>
<p>
So when it is cold everywhere else, come down to Florida where it is sunny and warm to enjoy some PHP, learning, community, and fun!
</p>
<p>
<a href="http://sunshinephp.com/" title="SunshinePHP">SunshinePHP</a>
<a href="https://twitter.com/hashtag/ssp15" title="SunshinePHP on Twitter">#ssp15</a>
</p>
<p>
NOTE: Yes, there will be elePHPants!
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-10-16-3" href="http://php.net/archive/2014.php#id2014-10-16-3" rel="bookmark" class="bookmark">PHP 5.6.2 is available</a></h2>
</header>
<time class="newsdate" datetime="2014-10-16T16:26:14-07:00">16 Oct 2014</time>
<div class="newscontent">
<div>
<p>The PHP development team announces the immediate availability of PHP 5.6.2.
Four security-related bugs were fixed in this release, including fixes for CVE-2014-3668, CVE-2014-3669 and CVE-2014-3670.
All PHP 5.6 users are encouraged to upgrade to this version.
</p>
<p>For source downloads of PHP 5.6.2 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-5.php#5.6.2">ChangeLog</a>.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-10-16-2" href="http://php.net/archive/2014.php#id2014-10-16-2" rel="bookmark" class="bookmark">PHP 5.4.34 Released</a></h2>
</header>
<time class="newsdate" datetime="2014-10-16T15:32:14-07:00">16 Oct 2014</time>
<div class="newscontent">
<div>
<p>The PHP development team announces the immediate availability of PHP
5.4.34. 6 security-related bugs were fixed in this release, including fixes for
CVE-2014-3668, CVE-2014-3669 and CVE-2014-3670. Also, a fix for OpenSSL which
produced regressions was reverted.
All PHP 5.4 users are encouraged to upgrade to this version.
</p>
<p>For source downloads of PHP 5.4.34 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-5.php#5.4.34">ChangeLog</a>.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-10-16-1" href="http://php.net/archive/2014.php#id2014-10-16-1" rel="bookmark" class="bookmark">PHP 5.5.18 is available</a></h2>
</header>
<time class="newsdate" datetime="2014-10-16T13:32:40+00:00">16 Oct 2014</time>
<div class="newscontent">
<div>
<p>The PHP development team announces the immediate availability of PHP
5.5.18. Several bugs were fixed in this release. A regression in OpenSSL introduced in PHP 5.5.17 has
also been addressed in this release.
PHP 5.5.18 also fixes 4 CVEs in different components.
All PHP 5.5 users are encouraged to upgrade to this version.
</p>
<p>For source downloads of PHP 5.5.18 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-5.php#5.5.18">ChangeLog</a>.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-10-02-1" href="http://php.net/archive/2014.php#id2014-10-02-1" rel="bookmark" class="bookmark">PHP 5.6.1 released</a></h2>
</header>
<time class="newsdate" datetime="2014-10-02T16:44:05-07:00">02 Oct 2014</time>
<div class="newscontent">
<div>
<p>The PHP development team announces the immediate availability of PHP
5.6.1. Several bugs were fixed in this release.
All PHP 5.6 users are encouraged to upgrade to this version.
</p>
<p>For source downloads of PHP 5.6.1 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-5.php#5.6.1">ChangeLog</a>.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"><?php news_image("http://www.phpconference.com.au", "php-australia-march12.png", "PHP Australia Conference 2015"); ?></div>
<h2 class="newstitle"><a id="id2014-09-26-1" href="http://www.phpconference.com.au" rel="bookmark" class="bookmark">PHP Australia Conference 2015</a></h2>
</header>
<time class="newsdate" datetime="2014-09-26T09:52:27+02:00">26 Sep 2014</time>
<div class="newscontent">
<div>
<p>
We are extremely pleased to be hosting Australia’s first ever PHP
Conference on the 12th & 13th March 2015 in Sydney. This conference
has been a long time coming. We aim to inspire, educate and motivate
our brilliant PHP Australia developers. We are delighted to be hosting
this event where beginner, intermediate to skilled developers are
welcome to participate. Please join us on this opportunity, share your
ideas, get valuable knowledge, collaborate with your peers and enjoy
this amazing adventure.
</p>
<p>
With more than 200 delegates expected over two days, this will be the
highlight of our 2015 calendar. We will be welcoming some amazing
international and local speakers to share their knowledge.
</p>
<p>
<a href="http://www.phpconference.com.au">http://www.phpconference.com.au</a>
<a href="https://twitter.com/hashtag/PHPOZ15">#phpoz15</a>
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-09-18-2" href="http://php.net/archive/2014.php#id2014-09-18-2" rel="bookmark" class="bookmark">PHP 5.4.33 Released</a></h2>
</header>
<time class="newsdate" datetime="2014-09-18T20:03:36-07:00">18 Sep 2014</time>
<div class="newscontent">
<div>
<p>The PHP development team announces the immediate availability of PHP
5.4.33. 10 bugs were fixed in this release.
All PHP 5.4 users are encouraged to upgrade to this version.
</p>
<p>
This release is the last planned release that contains regular bugfixes. All the consequent releases
will contain only security-relevant fixes, for the term of one year.
PHP 5.4 users that need further bugfixes are encouraged to upgrade to PHP 5.6 or PHP 5.5.
</p>
<p>For source downloads of PHP 5.4.33 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-5.php#5.4.33">ChangeLog</a>.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-09-18-1" href="http://php.net/archive/2014.php#id2014-09-18-1" rel="bookmark" class="bookmark">PHP 5.5.17 is available</a></h2>
</header>
<time class="newsdate" datetime="2014-09-18T11:55:24+00:00">18 Sep 2014</time>
<div class="newscontent">
<div>
<p>The PHP development team announces the immediate availability of PHP
5.5.17. Several bugs were fixed in this release.
All PHP 5.5 users are encouraged to upgrade to this version.
</p>
<p>For source downloads of PHP 5.5.17 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-5.php#5.5.17">ChangeLog</a>.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-08-28-1" href="http://php.net/archive/2014.php#id2014-08-28-1" rel="bookmark" class="bookmark">PHP 5.6.0 released</a></h2>
</header>
<time class="newsdate" datetime="2014-08-28T08:14:28+00:00">28 Aug 2014</time>
<div class="newscontent">
<div>
<p>The PHP Development Team announces the immediate availability of PHP 5.6.0.
This new version comes with new features, some backward incompatible changes and many improvements.
</p>
<p><b>The main features of PHP 5.6.0 include:</b></p>
<ul>
<li><a href="http://php.net/migration56.new-features#migration56.new-features.const-scalar-exprs">Constant scalar expressions</a>.</li>
<li><a href="http://php.net/functions.arguments#functions.variable-arg-list">Variadic functions</a> and argument unpacking using the <code>...</code> operator.</li>
<li><a href="http://php.net/language.operators.arithmetic">Exponentiation using the <code>**</code> operator</a>.</li>
<li><a href="http://php.net/migration56.new-features#migration56.new-features.use">Function and constant importing</a> with the <a href="http://php.net/language.namespaces.importing">use keyword</a>.</li>
<li><a href="http://phpdbg.com/docs">phpdbg</a> as an interactive integrated debugger SAPI.</li>
<li><a href="http://php.net/wrappers#wrappers.php.input">php://input</a> is now reusable, and <code>$HTTP_RAW_POST_DATA</code> is deprecated.</li>
<li><a href="http://php.net/book.gmp">GMP</a> objects now support operator overloading.</li>
<li>File uploads larger than 2 gigabytes in size are now accepted.</li>
</ul>
<p>For a full list of new features, you may read <a href="http://php.net/migration56.new-features">the new features chapter of the migration guide</a>.</p>
<p>
<b>PHP 5.6.0 also introduces changes that affect compatibility:</b>
</p>
<ul>
<li>Array keys won't be overwritten when defining an array as a property of a class via an array literal.</li>
<li><a href="http://php.net/function.json-decode">json_decode()</a> is more strict in JSON syntax parsing.</li>
<li>Stream wrappers now verify peer certificates and host names by default when using SSL/TLS.</li>
<li><a href="http://php.net/book.gmp">GMP</a> resources are now objects.</li>
<li><a href="http://php.net/book.mcrypt">Mcrypt</a> functions now require valid keys and IVs.</li>
</ul>
<p>
For users upgrading from PHP 5.5, <a href="http://php.net/migration56">a full migration guide</a> is available, detailing the changes between 5.5 and 5.6.0.
</p>
<p>For source downloads of PHP 5.6.0, please visit our <a href="http://www.php.net/downloads.php">downloads page</a>.
Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The full list of changes is available in the <a href="http://www.php.net/ChangeLog-5.php#5.6.0">ChangeLog</a>.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"><?php news_image("http://world.phparch.com/", "conference_php_world_11_10.png", "php[world] in Washington, D.C."); ?></div>
<h2 class="newstitle"><a id="id2014-08-27-1" href="http://world.phparch.com/" rel="bookmark" class="bookmark">php[world] in Washington, D.C.</a></h2>
</header>
<time class="newsdate" datetime="2014-08-27T21:06:14+02:00">27 Aug 2014</time>
<div class="newscontent">
<div>
<p>The team at <a href="http://www.phparch.com/" title="php[architect] : Magazine, Training, Books, Conferences">php[architect]</a> is excited to
announce our new conference: <a href="http://world.phparch.com/" title="php[world] conference">php[world]</a>! This conference, is being
designed to bring together all of the various PHP communities into one
place to share ideas together.
</p>
<p>Whether you are a core PHP developer, or use WordPress, Drupal,
Magento, Joomla!, Symfony, Laravel, Zend Framework or another framework.
This conference has a track specifically for you! Check out our
published <a href="http://world.phparch.com/schedule/">schedule</a> and
<a href="http://world.phparch.com/speakers/">speaker list</a> to see all
the sessions available.
</p>
<p>The conference takes place on November 10-14, 2014 in Washington, DC,
USA. It features a Training Day, Tutorial Day, and 3 days full of
sessions & keynotes. Our Training day includes full day trainings on
WordPress, Web Security, and an Introduction to PHP.
</p>
<p>We've recently announced our <a href="http://world.phparch.com/five-amazing-keynotes/">keynote
lineup</a> as well, including:
</p>
<ul>
<li><b>Angela Byron</b> - @webchick - Core Contributor to Drupal</li>
<li><b>Andrew Nacin</b> - @nacin - Lead Developer on WordPress</li>
<li><b>Jeffrey 'jam' McQuire</b> - @horncologne - Open Source
Evangelist for Acquia
</li>
<li><b>Luke Stokes</b> - @lukestokes - Founder and CTO of FoxyCart</li>
<li>Plus we will be ending the conference with the
<b><i>biggest</i></b> panel around. Featuring key notables from at
least seven different of the most popular PHP applications and
frameworks to discuss, debate, and answer your questions.
</li>
</ul>
<p>For more information and to purchase your tickets, head over to
<a href="http://world.phparch.com/">world.phparch.com</a> and we look
forward to seeing you in D.C.!
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-08-22-1" href="http://php.net/archive/2014.php#id2014-08-22-1" rel="bookmark" class="bookmark">PHP 5.5.16 is released</a></h2>
</header>
<time class="newsdate" datetime="2014-08-22T07:59:58+00:00">22 Aug 2014</time>
<div class="newscontent">
<div>
<p>The PHP Development Team announces the immediate availability of PHP 5.5.16.
This release fixes several bugs against PHP 5.5.15 and resolves CVE-2014-3538, CVE-2014-3587,
CVE-2014-2497, CVE-2014-5120 and CVE-2014-3597.
</p>
<p>All PHP users are encouraged to upgrade to this new version.</p>
<p>For source downloads of PHP 5.5.16, please visit our <a href="http://www.php.net/downloads.php">downloads page</a>.
Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-5.php#5.5.16">ChangeLog</a>.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-08-21-1" href="http://php.net/archive/2014.php#id2014-08-21-1" rel="bookmark" class="bookmark">PHP 5.4.32 Released</a></h2>
</header>
<time class="newsdate" datetime="2014-08-21T17:27:58-07:00">21 Aug 2014</time>
<div class="newscontent">
<div>
<p>The PHP development team announces the immediate availability of PHP
5.4.32. 16 bugs were fixed in this release, including the following security-related issues:
CVE-2014-2497, CVE-2014-3538, CVE-2014-3587, CVE-2014-3597, CVE-2014-4670, CVE-2014-4698, CVE-2014-5120.
All PHP 5.4 users are encouraged to upgrade to this version.
</p>
<p>For source downloads of PHP 5.4.32 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-5.php#5.4.32">ChangeLog</a>.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-08-14-1" href="http://php.net/archive/2014.php#id2014-08-14-1" rel="bookmark" class="bookmark">Last 5.3 release ever available: PHP 5.3.29 - 5.3 now EOL</a></h2>
</header>
<time class="newsdate" datetime="2014-08-14T14:26:40+02:00">14 Aug 2014</time>
<div class="newscontent">
<div>
<p>The PHP development team announces the immediate availability of
PHP 5.3.29. This release marks the <strong>end of life</strong> of the <strong>PHP 5.3 series</strong>.
Future releases of this series are <strong>not planned</strong>. All PHP 5.3 users are
encouraged to upgrade to the current stable version of PHP 5.5 or
previous stable version of PHP 5.4, which are supported till at least
2016 and 2015 respectively.</p>
<p>PHP 5.3.29 contains about 25 potentially security related fixes
backported from PHP 5.4 and 5.5.</p>
<p>For source downloads of PHP 5.3.29, please visit our <a href="http://www.php.net/downloads.php">downloads page</a>. Windows
binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>. The list of changes is recorded in
the <a href="http://www.php.net/ChangeLog-5.php#5.3.29">ChangeLog</a>.</p>
<p>For helping your migration to newer versions please refer to our migration
guides for updates from <a href="http://php.net/migration54">PHP 5.3 to
5.4</a> and from <a href="http://php.net/migration55">PHP 5.4 to 5.5</a>.</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-08-14-2" href="http://php.net/archive/2014.php#id2014-08-14-2" rel="bookmark" class="bookmark">PHP 5.6.0RC4 is available</a></h2>
</header>
<time class="newsdate" datetime="2014-08-14T23:23:50-07:00">14 Aug 2014</time>
<div class="newscontent">
<div>
<p>
The PHP development team announces the immediate availability of the fourth and
hopefully last release candidate of PHP 5.6.0. As we entered the feature freeze
with beta1, this is a bugfix-only release. All users of PHP are encouraged to test
this version carefully, and report any bugs in <a href="https://bugs.php.net">
the bug tracking system</a>.
</p>
<p>
<strong>THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!</strong>
</p>
<p>
For more information about the new features you can check out the work-in-progress
<a href="http://www.php.net/manual/en/migration56.new-features.php">documentation</a>
or you can read the full list of changes in the
<a href="https://github.com/php/php-src/blob/php-5.6.0RC4/NEWS">NEWS file</a>
contained in the release archive.
</p>
<p>
For source downloads of PHP 5.6.0RC4 please visit
the <a href="http://qa.php.net/">download page</a>. Windows binaries
can be found on <a href="http://windows.php.net/qa/">windows.php.net/qa/</a>.
</p>
<p>
The stable 5.6.0 release should show up on the 28th of August.
</p>
<p>
Thank you for helping us make PHP better.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"><?php news_image("http://cakefest.org/", "cakefest-2014.png", "CakeFest 2014"); ?></div>
<h2 class="newstitle"><a id="id2014-08-04-3" href="http://cakefest.org/" rel="bookmark" class="bookmark">CakeFest 2014 - The CakePHP Conference</a></h2>
</header>
<time class="newsdate" datetime="2014-08-04T21:11:08+01:00">04 Aug 2014</time>
<div class="newscontent">
<div>
<p>
<a href="http://cakefest.org/">CakeFest</a> is the annual conference
dedicated to the CakePHP framework and related technologies, hosting
live workshops, and inviting a variety of great speakers, to give the
very best in presentations and talks on the latest from the community.
This year the conference comes to Madrid, Spain, and takes place from
August 21st until August 24th.
</p>
<p>
The workshops are a great way to learn CakePHP, and get up-to-date with
the latest version 3.0 and innovations directly from the core
developers, while the conference days are packed with presentations,
discussions and talks, and an ideal moment to learn more from
the community.
</p>
<p>
It's a great opportunity to network, meet friends old and new, and have
some fun with the core members of the project. Plus, there's cake!
</p>
<p>
Tickets are available <a href="http://cakefest.org/">here</a> and a list of conference
speakers is available <a href="http://cakefest.org/schedule">here</a>.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"><?php news_image("http://www.madisonphpconference.com/", "madison-php-2013.png", "Madison PHP Conference 2014"); ?></div>
<h2 class="newstitle"><a id="id2014-08-04-2" href="http://www.madisonphpconference.com/" rel="bookmark" class="bookmark">Madison PHP Conference 2014</a></h2>
</header>
<time class="newsdate" datetime="2014-08-04T20:57:13+01:00">04 Aug 2014</time>
<div class="newscontent">
<div>
<p>
One day, three tracks, more fun than a barrel of elePHPants!
</p>
<p>
Join us for a one day, three-track conference that focuses on PHP and
related web technologies. This event is organized by Madison PHP and is
designed to offer something to attendees at all skill levels. It will
be a day of networking, learning, sharing, and great fun!
</p>
<p>
<strong>Three Tracks</strong>
</p>
<p>
We've carefully crafted three distinct tracks but you're not locked
into just one. Attend any talk from any track.
</p>
<p>
<strong>PHP Foundations Track</strong>
</p>
<p>
Learn the basics of PHP development. A carefully selected set of talks
for those who have never programmed before or who are new to PHP and
would like a refresher of the basics.
</p>
<p>
<strong>PHP Professional Track (2x)</strong>
</p>
<p>
Explore new technologies and techniques. Gather with other seasoned
developers and increase your value with a series of talks that will
both energize and get you excited about the future of PHP.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"><?php news_image("https://www.brnophp.cz/conference-2014", "brnophp-conference-2014.png", "BRNO PHP Conference 2014"); ?></div>
<h2 class="newstitle"><a id="id2014-08-04-1" href="https://www.brnophp.cz/conference-2014" rel="bookmark" class="bookmark">Brno PHP Conference 2014</a></h2>
</header>
<time class="newsdate" datetime="2014-08-04T20:41:07+01:00">04 Aug 2014</time>
<div class="newscontent">
<div>
<p>
Brno PHP Conference 2014 - 20th of September 2014
</p>
<p>
We are pleased to announce the first international PHP conference in Czech
Republic. Over the years, the creative minds behind this conference,
gathered experience and motivation to do something bigger and unique. Being
the first of its kind, it brings together great technology content and
great people. You will find a high-quality presentations by the brightest
experts in the PHP world, coupled with a welcoming and friendly community
of attendees and speakers.
</p>
<p>
We have special events <a href="https://www.brnophp.cz/workshop-microsoft-azure">Microsoft Azure Workshop</a>
and a smashing <a href="https://www.brnophp.cz/conference-2014-after-party">After Party</a>.
</p>
<p>
See a schedule at <a href="https://www.brnophp.cz/conference-2014">https://www.brnophp.cz/conference-2014</a>
and you certainly enjoy it!
</p>
<p>
Looking forward to see you there :-)
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-07-31-1" href="http://php.net/archive/2014.php#id2014-07-31-1" rel="bookmark" class="bookmark">PHP 5.6.0RC3 is available</a></h2>
</header>
<time class="newsdate" datetime="2014-07-31T13:50:59-07:00">31 Jul 2014</time>
<div class="newscontent">
<div>
<p>
The PHP development team announces the immediate availability of the third release
candidate of PHP 5.6. As we entered the feature freeze with beta1, this is a
bugfix-only release. All users of PHP are encouraged to test this version carefully,
and report any bugs in <a href="https://bugs.php.net">the bug tracking system</a>.
</p>
<p>
<strong>THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!</strong>
</p>
<p>
For more information about the new features you can check out the work-in-progress
<a href="http://www.php.net/manual/en/migration56.new-features.php">documentation</a>
or you can read the full list of changes in the
<a href="https://github.com/php/php-src/blob/php-5.6.0RC3/NEWS">NEWS file</a>
contained in the release archive.
</p>
<p>
For source downloads of PHP 5.6.0RC3 please visit
the <a href="http://qa.php.net/">download page</a>. Windows binaries
can be found on <a href="http://windows.php.net/qa/">windows.php.net/qa/</a>.
</p>
<p>
Our next Release Candidate should show up on the 14th of August.
</p>
<p>
Thank you for helping us make PHP better.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-07-24-2" href="http://php.net/archive/2014.php#id2014-07-24-2" rel="bookmark" class="bookmark">PHP 5.4.31 Released</a></h2>
</header>
<time class="newsdate" datetime="2014-07-24T21:30:09-07:00">24 Jul 2014</time>
<div class="newscontent">
<div>
<p>The PHP development team announces the immediate availability of PHP
5.4.31. Over 10 bugs were fixed in this release.
All PHP 5.4 users are encouraged to upgrade to this version.
</p>
<p>For source downloads of PHP 5.4.31 please visit our <a href="http://www.php.net/downloads.php">downloads page</a>,
Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-5.php#5.4.31">ChangeLog</a>.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-07-24-1" href="http://php.net/archive/2014.php#id2014-07-24-1" rel="bookmark" class="bookmark">PHP 5.5.15 is released</a></h2>
</header>
<time class="newsdate" datetime="2014-07-24T09:01:34+00:00">24 Jul 2014</time>
<div class="newscontent">
<div>
<p>The PHP Development Team announces the immediate availability of PHP 5.5.15.
This release fixes several bugs against PHP 5.5.14.
</p>
<p>All PHP users are encouraged to upgrade to this new version.</p>
<p>For source downloads of PHP 5.5.15, please visit our <a href="http://www.php.net/downloads.php">downloads page</a>.
Windows binaries can be found on <a href="http://windows.php.net/download/">windows.php.net/download/</a>.
The list of changes is recorded in the <a href="http://www.php.net/ChangeLog-5.php#5.5.15">ChangeLog</a>.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"><?php news_image("http://www.phpsouthafrica.com/", "capetown2014.png", "PHP Cape Town"); ?></div>
<h2 class="newstitle"><a id="id2014-07-08-1" href="http://www.phpsouthafrica.com/" rel="bookmark" class="bookmark">PHP Cape Town Conference</a></h2>
</header>
<time class="newsdate" datetime="2014-07-08T17:03:44-07:00">08 Jul 2014</time>
<div class="newscontent">
<div>
<p>
Cape Town's 2nd Annual PHP Conference is here... 2nd – 4th October 2014
</p>
<p>
We are excited to announce our 2nd Annual
<a href="http://www.phpsouthafrica.com/">PHP Cape Town Conference</a>, 3 Days
at The Cape Town Stadium overlooking the Atlantic Ocean - yip insane views.
</p>
<p>
Keeping with our winning formula of international speakers combined with some
great local talent to learn off. With over 300 delegates expected, you do not
want to miss this one.
</p>
<p>
PHP Cape Town 2013 SOLD OUT in less than 4 weeks and it will happen again.
</p>
<p>
If you're PHP-Curious or Skilled Developer we would like you to share in the
experience. Thank You to the PHP Cape Town Community for volunteering and
helping out. Call for Papers will close 20th July 2014.
</p>
<ul>
<li>12 Speakers</li>
<li>6 Practical Workshop Sessions</li>
<li>Great Sponsors</li>
<li>Free Swag, T Shirt and Books</li>
<li>Prize Draws</li>
</ul>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-07-03-1" href="http://php.net/archive/2014.php#id2014-07-03-1" rel="bookmark" class="bookmark">PHP 5.6.0RC2 is available</a></h2>
</header>
<time class="newsdate" datetime="2014-07-03T14:16:36-07:00">03 Jul 2014</time>
<div class="newscontent">
<div>
<p>
The PHP development team announces the immediate availability of the second release
candidate of PHP 5.6. As we entered the feature freeze with beta1, this is a
bugfix-only release. All users of PHP are encouraged to test this version carefully,
and report any bugs in <a href="https://bugs.php.net">the bug tracking system</a>.
</p>
<p>
<strong>THIS IS A DEVELOPMENT PREVIEW - DO NOT USE IT IN PRODUCTION!</strong>
</p>
<p>
For more information about the new features you can check out the work-in-progress
<a href="http://www.php.net/manual/en/migration56.new-features.php">documentation</a>
or you can read the full list of changes in the
<a href="https://github.com/php/php-src/blob/php-5.6.0RC2/NEWS">NEWS file</a>
contained in the release archive.
</p>
<p>
For source downloads of PHP 5.6.0RC2 please visit
the <a href="http://qa.php.net/">download page</a>. Windows binaries
can be found on <a href="http://windows.php.net/qa/">windows.php.net/qa/</a>.
</p>
<p>
Our third Release Candidate should show up on the 17th of July.
</p>
<p>
Thank you for helping us make PHP better.
</p>
</div>
</div>
</article>
<article class="newsItem">
<header>
<div class="newsImage"></div>
<h2 class="newstitle"><a id="id2014-06-27-1" href="http://php.net/archive/2014.php#id2014-06-27-1" rel="bookmark" class="bookmark">PHP 5.5.14 is released</a></h2>
</header>
<time class="newsdate" datetime="2014-06-27T09:40:44+00:00">27 Jun 2014</time>
<div class="newscontent">
<div>
<p>The PHP Development Team announces the immediate availability of PHP 5.5.14.
This release fixes several bugs against PHP 5.5.13.
Also, this release fixes a total of 8 CVEs, half of them concerning the FileInfo
extension.</p>
<p>All PHP users are encouraged to upgrade to this new version.</p>
<p>Please, note that this release also fixes a backward compatibility issue that has been
detected in the PHP 5.5.13 release. Still, the fix in PHP 5.5.14 may break some very rare