|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-10-15 01:19 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 18:00:01 2025 UTC |
Description: ------------ This is just a simple request to modify the output of the array for the sqlite_fetch_column_types() function. Currently, it displays the array indexed by the column name[1]. It would be cool if you could pass an int result_type, similar to sqlite_fetch_array to index by column name, column number, or both[2]. Thas all. It'd certainly be helpful. :) Reproduce code: --------------- [1] Array ( [id] => integer [volume] => integer ) [2] Array ( [id] => integer [0] => integer [volume] => integer [1] => integer )