本文整理汇总了PHP中Mysql::quote方法的典型用法代码示例。如果您正苦于以下问题:PHP Mysql::quote方法的具体用法?PHP Mysql::quote怎么用?PHP Mysql::quote使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mysql
的用法示例。
在下文中一共展示了Mysql::quote方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: update
public function update($table, $id, $params, $idFieldName = '')
{
try {
if (array_key_exists('rt', $params)) {
array_shift($params);
}
$arrayString = array();
if (is_array($params)) {
foreach ($params as $key => $value) {
$value = Mysql::quote($value);
$arrayString[] = "`{$key}` = {$value}";
}
}
$keyString = implode(', ', $arrayString);
if (empty($idFieldName)) {
$sql = "UPDATE `{$table}` SET {$keyString} WHERE id={$id}";
} else {
$sql = "UPDATE `{$table}` SET {$keyString} WHERE {$idFieldName} = {$id}";
}
//var_dump($sql);exit;
return mysql_query($sql, $this->_connecter);
} catch (Exception $ex) {
echo $ex->getMessage();
}
return NULL;
}
示例2: orHaving
/**
* @return Mysql_Query_Select
*/
public function orHaving($condition)
{
$num = func_num_args();
if ($num == 2) {
$value = func_get_arg(1);
if (is_array($value) || strpos($condition, Mysql::PLACEHOLDER)) {
$condition = Mysql::quoteInto($condition, $value);
} else {
$condition = "{$condition} = " . Mysql::quote($value);
}
} elseif ($num > 1) {
$bind = func_get_args();
array_shift($bind);
$condition = Mysql::quoteInto($condition, $bind);
}
if (sizeof($this->_having) != 0) {
$this->_having[] = " OR ( {$condition} )";
} else {
$this->_having[] = " ( {$condition} )";
}
return $this;
}