|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2013-08-02 00:56 UTC] yohgaki@php.net
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: yohgaki
[2013-08-02 00:56 UTC] yohgaki@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 08 20:00:02 2025 UTC |
Description: ------------ This is my first (small) contribution to the QA testing effort. I was advised to submit the test here as a bug to keep track of it. Default php.ini Test script: --------------- --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