本文整理汇总了PHP中PMF_Utils::debug方法的典型用法代码示例。如果您正苦于以下问题:PHP PMF_Utils::debug方法的具体用法?PHP PMF_Utils::debug怎么用?PHP PMF_Utils::debug使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PMF_Utils
的用法示例。
在下文中一共展示了PMF_Utils::debug方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: query
/**
* This function sends a query to the database.
*
* @param string $query
* @param integer $offset
* @param integer $rowcount
*
* @return PDOStatement $statement
*/
public function query($query, $offset = 0, $rowcount = 0)
{
if (DEBUG) {
$this->sqllog .= PMF_Utils::debug($query);
}
try {
return $this->conn->query($query);
} catch (PDOException $e) {
$this->sqllog .= $e->getMessage();
}
}
示例2: query
/**
* This function sends a query to the database.
*
* @param string $query
* @param integer $offset
* @param integer $rowcount
*
* @return mixed $result
*/
public function query($query, $offset = 0, $rowcount = 0)
{
if (DEBUG) {
$this->sqllog .= PMF_Utils::debug($query);
}
if (0 < $rowcount) {
$query .= sprintf(' LIMIT %d,%d', $offset, $rowcount);
}
$result = $this->conn->query($query);
if (!$result) {
$this->sqllog .= $this->error();
}
return $result;
}
示例3: query
/**
* This function sends a query to the database.
*
* @param string $query
* @param integer $offset
* @param integer $rowcount
*
* @return mixed $result
*/
public function query($query, $offset = 0, $rowcount = 0)
{
if (DEBUG) {
$this->sqllog .= PMF_Utils::debug($query);
}
$result = mysql_query($query, $this->conn);
if (!$result) {
$this->sqllog .= $this->error();
}
return $result;
}
示例4: query
/**
* This function sends a query to the database.
*
* @param string $query
* @param integer $offset
* @param integer $rowcount
*
* @return mixed $result
*/
public function query($query, $offset = 0, $rowcount = 0)
{
if (DEBUG) {
$this->sqllog .= PMF_Utils::debug($query);
}
if (0 < $rowcount) {
$query .= sprintf(' OFFSET %d ROWS FETCH NEXT %d ROWS ONLY', $offset, $rowcount);
}
$result = mssql_query($query, $this->conn);
if (!$result) {
$this->sqllog .= $this->error();
}
return $result;
}
示例5: query
/**
* This function sends a query to the database.
*
* @param string $query
* @param integer $offset
* @param integer $rowcount
*
* @return mixed $result
*/
public function query($query, $offset = 0, $rowcount = 0)
{
if (DEBUG) {
$this->sqllog .= PMF_Utils::debug($query);
}
$options = array('Scrollable' => SQLSRV_CURSOR_KEYSET);
if (0 < $rowcount) {
$query .= sprintf(' OFFSET %d ROWS FETCH NEXT %d ROWS ONLY', $offset, $rowcount);
}
$result = sqlsrv_query($this->conn, $query, array(), $options);
if (!$result) {
$this->sqllog .= $this->error();
}
return $result;
}