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