mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
For rationale, see #6787 Extensions migrated in part 3: * ftp * gmp * iconv * opcache * shmop
15 lines
275 B
PHP
15 lines
275 B
PHP
--TEST--
|
|
Bug 76337: segmentation fault when an extension use zend_register_class_alias() and opcache enabled
|
|
--EXTENSIONS--
|
|
opcache
|
|
zend_test
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
--FILE--
|
|
<?php
|
|
var_dump(class_exists('_ZendTestClassAlias'));
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|