function krumo::_integer
Render a dump for a integer value
@access private @static
Parameters
mixed $data:
string $name:
1 call to krumo::_integer()
- krumo::_dump in krumo/
class.krumo.php - Dump information about a variable
File
-
krumo/
class.krumo.php, line 1198
Class
- krumo
- Krumo API
Code
private static function _integer($data, $name) {
?>
<li class="krumo-child">
<div class="krumo-element"
onMouseOver="krumo.over(this);"
onMouseOut="krumo.out(this);">
<?php
/* DEVEL: added htmlSpecialChars */
?>
<a class="krumo-name"><?php
echo htmlSpecialChars($name);
?></a>
(<em class="krumo-type">Integer</em>)
<strong class="krumo-integer"><?php
echo $data;
?></strong>
</div>
</li>
<?php
}