mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

For rationale, see #6787 Extensions migrated in part 4: * simplexml * skeleton * soap * spl * sqlite3 * sysvmsg * sysvsem * tidy - also removed a check for an ancient dependency version
19 lines
332 B
PHP
19 lines
332 B
PHP
--TEST--
|
|
SQLite3::open test, testing for function parameters
|
|
--CREDITS--
|
|
Felix De Vliegher
|
|
# Belgian PHP Testfest 2009
|
|
--EXTENSIONS--
|
|
sqlite3
|
|
--FILE--
|
|
<?php
|
|
|
|
try {
|
|
$db = new SQLite3();
|
|
} catch (TypeError $e) {
|
|
var_dump($e->getMessage());
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
string(59) "SQLite3::__construct() expects at least 1 argument, 0 given"
|