|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2015-10-11 01:50 UTC] jerome at taotesting dot com
 
-Operating System: 3.19.0-30-generic #34~14.04.1-Ub
+Operating System: 3.19.0-30-generic 14.04 Ubuntu
  [2015-10-11 01:50 UTC] jerome at taotesting dot com
  [2015-10-11 13:54 UTC] felipe@php.net
 
-Status: Open
+Status: Feedback
  [2015-10-11 13:54 UTC] felipe@php.net
  [2015-10-11 17:02 UTC] jerome at taotesting dot com
 
-Status: Feedback
+Status: Open
  [2015-10-11 17:02 UTC] jerome at taotesting dot com
  [2015-10-12 09:23 UTC] derick@php.net
 
-Assigned To:
+Assigned To: dmitry
  [2015-10-12 09:23 UTC] derick@php.net
  [2015-10-12 09:43 UTC] dmitry@php.net
  [2015-10-12 09:54 UTC] jerome at taotesting dot com
  [2015-10-12 10:27 UTC] dmitry@php.net
  [2015-10-12 10:59 UTC] jerome at taotesting dot com
  [2015-10-12 11:02 UTC] jerome at taotesting dot com
  [2015-10-17 15:04 UTC] jerome at taotesting dot com
  [2015-10-17 15:12 UTC] jerome at taotesting dot com
 
-PHP Version: 7.0.0RC4
+PHP Version: 7.0.0RC5
  [2015-10-17 15:12 UTC] jerome at taotesting dot com
  [2015-10-17 15:59 UTC] jerome at taotesting dot com
  [2015-10-17 16:03 UTC] jerome at taotesting dot com
  [2015-10-18 15:49 UTC] nikic@php.net
 
-Status: Assigned
+Status: Closed
  [2015-10-18 15:49 UTC] nikic@php.net
  [2015-11-03 13:16 UTC] mihor dot cz at gmail dot com
 | |||||||||||||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 08:00:01 2025 UTC | 
Description: ------------ Dear PHP Team, When instantiating a DateTime object with PHP 7.0.0RC4 using PHP CLI, the output systematically contains "zend_mm_heap corrupted" OR "Segmentation fault (core dumped)". I'm using the PHP 7.0.0RC4 package provided by ondrej (ppa:ondrej/php-7.0) for Ubuntu. In addition with the following test script, expected output and actual output, I must say that calling date_default_timezone_set('Europe/Brussels'); does not help either. Thanks for fixing it, as we are waiting PHP7.0.0 as the messiah :) ! Thanks a lot also for all your efforts for making PHP better every day! All the best, Jérôme Bogaerts Test script: --------------- <?php $date = new \DateTime('2000-01-01'); echo $date->format('Y-m-d') . "\n"; Expected result: ---------------- // -- Expected output is simple as: 2000-01-01 Actual result: -------------- // -- Output when php.ini's directive date.timezone is commented (using ;) 2000-01-01 zend_mm_heap corrupted // OR (randomly) 2000-01-01 Segmentation fault (core dumped) // -- Output when php.ini's directive date.timezone = Europe/Brussels 2000-01-01 zend_mm_heap corrupted // OR (randomly) 2000-01-01 Segmentation fault (core dumped)