本文整理汇总了PHP中DBG::error方法的典型用法代码示例。如果您正苦于以下问题:PHP DBG::error方法的具体用法?PHP DBG::error怎么用?PHP DBG::error使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DBG
的用法示例。
在下文中一共展示了DBG::error方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: where
/**
*
*
*/
public function where($criteria, $bindParams = null)
{
if (func_num_args() > 2) {
DBG::error(__METHOD__ . ' Argument #2 should be an array if there is more than one bound parameter.');
}
$this->parts[self::WHERE][] = $this->db->bind($criteria, $bindParams);
return $this;
}
示例2: link_to
/**
* Creates a <a> link tag of the given name using a routed URL
* based on the module/action passed as argument and the routing configuration.
*
* If null is passed as a name, the link itself will become the name.
*
* Examples:
* echo link_to('Homepage', 'default/index')
* => <a href="/">Homepage</a>
*
* echo link_to('News 2008/11', 'news/index?year=2008&month=11')
* => <a href="/news/2008/11">News 2008/11</a>
*
* echo link_to('News 2008/11 [absolute url]', 'news/index?year=2008&month=11', array('absolute'=>true))
* => <a href="http://myapp.example.com/news/2008/11">News 2008/11 [absolute url]</a>
*
* echo link_to('Absolute url', 'http://www.google.com')
* => <a href="http://www.google.com">Absolute url</a>
*
* echo link_to('Link with attributes', 'default/index', array('id'=>'my_link', 'class'=>'green-arrow'))
* => <a id="my_link" class="green-arrow" href="/">Link with attributes</a>
*
* echo link_to('<img src="x.gif" width="150" height="100" alt="[link with image]" />', 'default/index' )
* => <a href="/"><img src="x.gif" width="150" height="100" alt="[link with image]" /></a>
*
*
* Options:
* 'absolute' - if set to true, the helper outputs an absolute URL
* 'query_string' - to append a query string (starting by ?) to the routed url
* 'anchor' - to append an anchor (starting by #) to the routed url
*
* @param string text appearing between the <a> tags
* @param string 'module/action' or '@rule' of the action, or an absolute url
* @param array additional HTML compliant <a> tag parameters
* @return string XHTML compliant <a href> tag
* @see url_for
*/
function link_to($name = '', $internal_uri = '', $options = array())
{
$html_options = _parse_attributes($options);
$absolute = false;
if (isset($html_options['absolute'])) {
$absolute = (bool) $html_options['absolute'];
unset($html_options['absolute']);
}
// Fabrice: FIXME (genUrl() doesnt like '#anchor' ?) => ignore empty string
$html_options['href'] = $internal_uri !== '' ? url_for($internal_uri, $absolute) : '';
// anchor
if (isset($html_options['anchor'])) {
$html_options['href'] .= '#' . $html_options['anchor'];
unset($html_options['anchor']);
}
if (isset($html_options['query_string'])) {
$html_options['href'] .= '?' . $html_options['query_string'];
unset($html_options['query_string']);
}
if (is_object($name)) {
if (method_exists($name, '__toString')) {
$name = $name->__toString();
} else {
DBG::error(sprintf('Object of class "%s" cannot be converted to string (Please create a __toString() method).', get_class($name)));
}
}
if (!strlen($name)) {
$name = $html_options['href'];
}
return content_tag('a', $name, $html_options);
}
示例3: read
/**
* Reads the cache file and returns the content.
*
* @param string The file path
* @param mixed The type of data you want to be returned
* sfFileCache::READ_DATA: The cache content
* sfFileCache::READ_TIMEOUT: The timeout
* sfFileCache::READ_LAST_MODIFIED: The last modification timestamp
*
* @return string The content of the cache file.
*
* @throws sfCacheException
*/
protected function read($path, $type = self::READ_DATA)
{
if (!($fp = @fopen($path, 'rb'))) {
throw new sfCacheException(sprintf('Unable to read cache file "%s".', $path));
}
@flock($fp, LOCK_SH);
clearstatcache();
// because the filesize can be cached by PHP itself...
$length = @filesize($path);
$mqr = get_magic_quotes_runtime();
set_magic_quotes_runtime(0);
switch ($type) {
case self::READ_TIMEOUT:
$data = $length ? intval(@fread($fp, 12)) : 0;
break;
case self::READ_LAST_MODIFIED:
@fseek($fp, 12);
$data = $length ? intval(@fread($fp, 12)) : 0;
break;
case self::READ_DATA:
if ($length) {
@fseek($fp, 24);
$data = @fread($fp, $length - 24);
} else {
$data = '';
}
break;
default:
DBG::error(sprintf('Unknown type "%s".', $type));
}
set_magic_quotes_runtime($mqr);
@flock($fp, LOCK_UN);
@fclose($fp);
return $data;
}