PHP » GoLang |
login |
register |
about
|
GoLang mysqli::$connect_error
request it (423)
GoLang replacement for PHP's mysqli::$connect_error
[edit | history]
mysqli::$connect_errormysqli_connect_error(PHP 5, PHP 7) mysqli::$connect_error -- mysqli_connect_error — Returns a string description of the last connect error DescriptionObject oriented style string $mysqli->connect_error;
Procedural style
string mysqli_connect_error
( void
)
Returns the last error message string from the last call to mysqli_connect(). Return Values
A string that describes the error. ExamplesExample #1 $mysqli->connect_error example Object oriented style
<?php Procedural style
<?php The above examples will output: Connect Error: Access denied for user 'fake_user'@'localhost' (using password: YES) NotesWarning
The mysqli->connect_error property only works properly as of PHP versions 5.2.9 and 5.3.0. Use the mysqli_connect_error() function if compatibility with earlier PHP versions is required. See Also
|
more
Recently updated
more
Most requested
more
Last requests
|