mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
16 lines
304 B
PHP
16 lines
304 B
PHP
--TEST--
|
|
SQLite3::prepare test with empty string argument
|
|
--CREDITS--
|
|
Thijs Feryn <thijs@feryn.eu>
|
|
#TestFest PHPBelgium 2009
|
|
--SKIPIF--
|
|
<?php require_once(__DIR__ . '/skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
$db = new SQLite3(':memory:');
|
|
var_dump($db->prepare(''));
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|
|
Done
|