db_or
- 7
db_or()
Returns a new DatabaseCondition, set to "OR" all conditions together.
Related topics
- Database abstraction layer
- Allow the use of different database servers using the same code base.
Code
includes/database/query.inc, line 1356
<?php
function db_or() {
return new DatabaseCondition('OR');
}
?>
Login or
register to post comments