Function db_or
Build the SQL WHERE clause OR condition from the various condition arrays
Alias of db_conditionOR()
Package: PHPLucidFrame\Core
Copyright: Copyright (c), PHPLucidFrame.
License: MIT License This source file is subject to the MIT license that is bundled with this source code in the file LICENSE
Author: Sithu sithu@phplucidframe.com
Located at helpers/db_helper.mysqli.php
Copyright: Copyright (c), PHPLucidFrame.
License: MIT License This source file is subject to the MIT license that is bundled with this source code in the file LICENSE
Author: Sithu sithu@phplucidframe.com
Located at helpers/db_helper.mysqli.php
array |
$cond = array() |
<p>[,$cond2,$cond3,...] The condition array(s), for example</p> <pre><code>array( 'fieldName1' => $value1, 'fieldName2 >=' => $value2, 'fieldName3 => NULL ) </code></pre> <h3>Operators allowed in condition array</h3> <pre><code>>, >=, <, <=, !=, between, nbetween, like, like%%, like%~, like~%, nlike, nlike%%, nlike%~, nlike~% </code></pre> |
string
|
The built condition WHERE clause |