/**
  * @desc Debugging output interface.
  * @access public
  * @param mixed $theValue The "thing" to be pretty printed.
  * @param boolean $theHTMLFlag True if the output will be seen in a browser, false otherwise.
  */
 function print_d(&$theValue, $theHTMLFlag = true)
 {
     print SDD::dump($theValue, $theHTMLFlag);
 }
 /**
  * @desc Debugging output interface.
  * @access public
  * @param mixed $theValue The "thing" to be pretty printed.
  * @param boolean $theHTMLFlag True if the output will be seen in a browser, false otherwise.
  */
 public function print_d(&$thevalue, $thehtmlflag = true)
 {
     print SDD::dump($thevalue, $thehtmlflag);
 }
Ejemplo n.º 3
0
<?php

include_once 'SDD/class.SDD.php';
echo SDD::dump($_POST);