(No version information available, might only be in Git)
DatabaseObject::existsInDatabase — Check if object exists in database
Verifies if the database object refers to an object that exists in the database.
此函数没有参数。
Returns true
if object exists in the database, else false
if it does not.
Example #1 mysql_xdevapi\DatabaseObject::existsInDatabase() example
<?php
$existInDb = $dbObj->existsInDatabase();
?>