mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
19 lines
387 B
PHP
19 lines
387 B
PHP
--TEST--
|
|
Bug #71683 Null pointer dereference in zend_hash_str_find_bucket
|
|
--EXTENSIONS--
|
|
session
|
|
--SKIPIF--
|
|
<?php include('skipif.inc'); ?>
|
|
--INI--
|
|
session.save_handler=files
|
|
session.auto_start=1
|
|
session.use_only_cookies=0
|
|
--FILE--
|
|
<?php
|
|
ob_start();
|
|
echo "ok\n";
|
|
?>
|
|
--EXPECT--
|
|
Deprecated: PHP Startup: Disabling session.use_only_cookies INI setting is deprecated in Unknown on line 0
|
|
ok
|