|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-07-16 07:55 UTC] scottmac@php.net
-Status: Open
+Status: Bogus
[2010-07-16 07:55 UTC] scottmac@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 06 04:00:01 2025 UTC |
Description: ------------ It seems to me that it would make sense to at least apply the basic features of the SQL ANSI standard to php arrays that are NOT derived from another database. To start with, it could support most of the features found within SELECT, INSERT, UPDATE and DELETE at least from a single table. Support could be added later for joins and other complex SQL commands. Mimic the mysql commands in php. Suppose an array exists called $array. $qry = php_query("SELECT * FROM $array where name = "Bill"); php_fetch_array($qry); I believe such a feature would add to the overall ease of use of php, especially for newer programmers and people coming from other languages that are already familiar with SQL commands.