Windows PHP 7.0.3 x64(Apache句柄)崩溃后,zend_mm_heap的很多请求损坏

我正在使用基本的Apache基准testing在我的Windows 7工作站上testingPHP 7 x64

F:\apache\bin\ab -c 200 -n 2000 localhost/index.php 

index.php很简单

 <?php phpinfo(); 

该基准在50/100个请求发生之后终止

来自apache的error.log(请参阅zend_mm_heap已损坏)

 zend_mm_heap corrupted [Tue Feb 16 09:39:59.311046 2016] [mpm_winnt:notice] [pid 3716:tid 284] AH00428: Parent: child process 1740 exited with status 1 -- Restarting. [Tue Feb 16 09:39:59.389048 2016] [mpm_winnt:notice] [pid 3716:tid 284] AH00455: Apache/2.4.18 (Win64) configured -- resuming normal operations [Tue Feb 16 09:39:59.389048 2016] [mpm_winnt:notice] [pid 3716:tid 284] AH00456: Apache Lounge VC14 Server built: Dec 9 2015 11:13:29 [Tue Feb 16 09:39:59.389048 2016] [core:notice] [pid 3716:tid 284] AH00094: Command line: 'F:\\apache\\Apache2418\\bin\\httpd.exe -d F:/apache/Apache2418' [Tue Feb 16 09:39:59.389048 2016] [mpm_winnt:notice] [pid 3716:tid 284] AH00418: Parent: Created child process 564 [Tue Feb 16 09:39:59.779055 2016] [mpm_winnt:notice] [pid 564:tid 340] AH00354: Child: Starting 300 worker threads. 

从php php_error.log是空的(假设没有错误在这里)

窗体事件查看器日志(我的SO是意大利语)

 Nome dell'applicazione che ha generato l'errore: httpd.exe, versione: 2.4.18.0, timestamp: 0x5667fd57 Nome del modulo che ha generato l'errore: ntdll.dll, versione: 6.1.7601.19018, timestamp: 0x560a0083 Codice eccezione: 0xc0000374 Offset errore 0x00000000000bffc2 ID processo che ha generato l'errore: 0x1db4 Ora di avvio dell'applicazione che ha generato l'errore: 0x01d16957bd43bbb5 Percorso dell'applicazione che ha generato l'errore: F:\apache\Apache2418\bin\httpd.exe Percorso del modulo che ha generato l'errore: C:\Windows\SYSTEM32\ntdll.dll ID segnalazione: c15a5ec5-d54b-11e5-9ec7-bc305bde2d3c 

PHP 7.0.3在Apache 2.4上使用httpd.conf中的这些设置(revelant部分)

 LoadFile "F:/php/php703/php7ts.dll" LoadModule php7_module "F:/php/php703/php7apache2_4.dll" <IfModule php7_module> PHPINIDir "F:/php/php703" </IfModule> 

和php.ini中的其他设置(仅限相关部分)

 extension=php_curl.dll extension=php_fileinfo.dll extension=php_gd2.dll extension=php_intl.dll extension=php_mbstring.dll extension=php_openssl.dll extension=php_pdo_mysql.dll extension=php_soap.dll extension=php_xmlrpc.dll extension=php_xsl.dll extension=php_apcu.dll extension=php_apc.dll realpath_cache_size = 2M realpath_cache_ttl = 3600 memory_limit=512M output_buffering = 4096 [opcache] zend_extension="F:\php\php703\ext\php_opcache.dll" opcache.enable=1 opcache.enable_cli=1 opcache.memory_consumption=128 opcache.interned_strings_buffer=16 opcache.max_accelerated_files=6000 opcache.use_cwd=1 opcache.validate_timestamps=1 opcache.save_comments=1 opcache.fast_shutdown=1 

相同的基准运行正常PHP 5.6.17 / 18 x64具有相同的设置

UPDATE

我试图禁用apc和opcache,但不工作…