本文整理汇总了PHP中Doctrine::dump方法的典型用法代码示例。如果您正苦于以下问题:PHP Doctrine::dump方法的具体用法?PHP Doctrine::dump怎么用?PHP Doctrine::dump使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Doctrine
的用法示例。
在下文中一共展示了Doctrine::dump方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: toString
/**
* __toString alias
*
* @return string $dump
*/
public function toString()
{
return Doctrine::dump(get_object_vars($this));
}
示例2: getCollectionAsString
/**
* Generates a string representation of a collection.
*
* This method returns an html dump of a collection of records, containing
* all data.
*
* @param Doctrine_Collection $collection
* @return string
*/
public static function getCollectionAsString(Doctrine_Collection $collection)
{
$r[] = "<pre>";
$r[] = get_class($collection);
$r[] = 'data : ' . Doctrine::dump($collection->getData(), false);
//$r[] = 'snapshot : ' . Doctrine::dump($collection->getSnapshot());
$r[] = "</pre>";
return implode("\n", $r);
}
示例3: dump
/**
* dump
*
* dumps a given variable
*
* @param mixed $var a variable of any type
* @param boolean $output whether to output the content
* @return void|string
*/
public static function dump($var, $output = true)
{
$ret = array();
switch (gettype($var)) {
case 'array':
$ret[] = 'Array(';
foreach ($var as $k => $v) {
$ret[] = $k . ' : ' . Doctrine::dump($v, false);
}
$ret[] = ")";
break;
case 'object':
$ret[] = 'Object(' . get_class($var) . ')';
break;
default:
$ret[] = var_export($var, true);
}
if ($output) {
print implode("\n", $ret);
}
return implode("\n", $ret);
}