コード例 #1
0
 /**
  * @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);
 }
コード例 #2
0
 /**
  * @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);
 }
コード例 #3
0
ファイル: dumpState.php プロジェクト: CIVICS/wp-sched-api
<?php

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