You are here

static function krumo::_null in Devel 6

Same name and namespace in other branches
  1. 7 krumo/class.krumo.php \krumo::_null()

* Render a dump for a NULL value * *

Parameters

string $name: * @return string * @access private * @static

1 call to krumo::_null()
krumo::_dump in krumo/class.krumo.php
* Dump information about a variable * *

File

krumo/class.krumo.php, line 834

Class

krumo
Krumo API

Code

static function _null($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 krumo-null">NULL</em>)
	</div>
</li>
<?php

}