|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-10-25 09:57 UTC] uw@php.net
[2012-10-25 12:00 UTC] uw@php.net
[2012-12-07 08:09 UTC] philip@php.net
-Assigned To:
+Assigned To: philip
[2012-12-07 08:30 UTC] philip@php.net
[2013-01-17 08:11 UTC] philip@php.net
-Status: Assigned
+Status: Closed
[2013-01-17 08:11 UTC] philip@php.net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 23 13:00:01 2025 UTC |
Description: ------------ mysql() is an alias to mysql_db_query() which itself is deprecated. this fact is undocumented and left me wondering for a long time why I can't define mysql(). Reading source code revealed the truth. Test script: --------------- <?php function mysql() { return "nope"; } ?>