mirror of
https://github.com/php/php-src.git
synced 2024-12-12 19:33:31 +08:00
34 lines
675 B
PHP
34 lines
675 B
PHP
--TEST--
|
|
SQLite3 load extension
|
|
--SKIPIF--
|
|
<?php
|
|
require_once(dirname(__FILE__) . '/skipif.inc');
|
|
$r = new ReflectionClass("sqlite3");
|
|
if (!$r->hasMethod("loadExtension")) {
|
|
die("skip - sqlite3 doesn't have loadExtension enabled");
|
|
}
|
|
?>
|
|
--INI--
|
|
open_basedir=.
|
|
sqlite3.extension_dir=.
|
|
--FILE--
|
|
<?php
|
|
|
|
require_once(dirname(__FILE__) . '/new_db.inc');
|
|
|
|
$directory = dirname(__FILE__);
|
|
|
|
touch($directory . '/myext.txt');
|
|
|
|
var_dump($db->loadExtension('myext.txt'));
|
|
var_dump($db->close());
|
|
unlink($directory . '/myext.txt');
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Warning: SQLite3::loadExtension(): Unable to load extension at '.%emyext.txt' in %s on line %d
|
|
bool(false)
|
|
bool(true)
|
|
Done
|