Dutch PHP Conference 2025 - Call For Papers

DatabaseObject::existsInDatabase

(No version information available, might only be in Git)

DatabaseObject::existsInDatabaseCheck if object exists in database

Опис

abstract public mysql_xdevapi\DatabaseObject::existsInDatabase(): bool

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.

Приклади

Приклад #1 mysql_xdevapi\DatabaseObject::existsInDatabase() example

<?php

$existInDb
= $dbObj->existsInDatabase();

?>
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top