Exemple #1
0
 /**
  * Quotes a value and places into a piece of text at a placeholder.
  *
  * The placeholder is a question-mark; all placeholders will be replaced
  * with the quoted value.   For example:
  *
  * <code>
  * $text = "WHERE date < ?";
  * $date = "2005-01-02";
  * $safe = $sql->quoteInto($text, $date);
  * // $safe = "WHERE date < '2005-01-02'"
  * </code>
  *
  * @param string  $text  The text with a placeholder.
  * @param mixed   $value The value to quote.
  * @param string  $type  (optional) SQL datatype
  * @param integer $count (optional) count of placeholders to replace
  * @return string An SQL-safe quoted value placed into the original text.
  */
 public function quoteInto($text, $value, $type = null, $count = null)
 {
     return $this->_adapter->quoteInto($text, $value, $type, $count);
 }