mirror of
https://github.com/php/php-src.git
synced 2025-01-05 02:14:08 +08:00
22 lines
382 B
PHP
22 lines
382 B
PHP
--TEST--
|
|
Bug #60104 (Segmentation Fault in pdo_sqlite when using sqliteCreateFunction())
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('pdo_sqlite')) print 'skip not loaded';
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
function setUp()
|
|
{
|
|
$handler = new PDO( "sqlite::memory:" );
|
|
$handler->sqliteCreateFunction( "md5", "md5", 1 );
|
|
unset( $handler );
|
|
}
|
|
|
|
setUp();
|
|
setUp();
|
|
echo "done";
|
|
?>
|
|
--EXPECTF--
|
|
done
|