mirror of
https://github.com/php/php-src.git
synced 2025-01-06 02:43:34 +08:00
18 lines
434 B
PHP
18 lines
434 B
PHP
--TEST--
|
|
PDO_sqlite: Testing sqliteCreateFunction() produces warning when
|
|
un-callable function passed
|
|
--CREDITS--
|
|
Chris MacPherson chris@kombine.co.uk
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded('pdo_sqlite')) print 'skip not loaded'; ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$db = new PDO( 'sqlite::memory:');
|
|
|
|
$db->sqliteCreateFunction('bar-alias', 'bar');
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: PDO::sqliteCreateFunction(): function 'bar' is not callable in %s on line %d
|