mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
7485978339
This is an automated migration of most SKIPIF extension_loaded checks.
27 lines
407 B
PHP
27 lines
407 B
PHP
--TEST--
|
|
Bug #71930 (_zval_dtor_func: Assertion `(arr)->gc.refcount <= 1' failed)
|
|
--EXTENSIONS--
|
|
curl
|
|
--FILE--
|
|
<?php
|
|
|
|
class A {
|
|
public static function dummy() {
|
|
}
|
|
}
|
|
|
|
$a = array();
|
|
$a[] = "A";
|
|
$a[] = "dummy";
|
|
|
|
$ch1 = curl_init();
|
|
curl_setopt($ch1, CURLOPT_HEADERFUNCTION, $a);
|
|
|
|
set_error_handler($a);
|
|
set_error_handler(function()use($ch1){});
|
|
set_error_handler(function(){});
|
|
?>
|
|
okey
|
|
--EXPECT--
|
|
okey
|