|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-09-05 13:41 UTC] johannes@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 02:00:01 2025 UTC |
Description: ------------ $pdo->prepare() always returns PDOStatement object Reproduce code: --------------- <?php $pdo=new PDO(...); $sth=$pdo->prepare('La la la'); print_r($sth); ?> Expected result: ---------------- FALSE Actual result: -------------- PDOStatement Object ( [queryString] => La la la )