|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-04-25 09:25 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 10:00:02 2025 UTC |
Description: ------------ $mysqli = new mysqli('host','user','password','non-exist-db') or exit('error'); does not exit the program. However, the following exits the program: $mysqli = mysqli_connect('host','user','password','non-exist-db') or exit('error');