|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-11-27 22:01 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 12:00:02 2025 UTC |
Description: ------------ When PDO::FETCH_FUNC is used without passing the function name as additional argument, Apache crashes. Reproduce code: --------------- <? $pdo = new PDO("sqlite::memory:"); $pdo->query ("CREATE TABLE test (a integer primary key)"); $pdo->query ("select a from test")->fetchAll(PDO::FETCH_FUNC); Expected result: ---------------- no error Actual result: -------------- Apache crashes.