Ferreteria/archive/data.php: Difference between revisions
(headers) |
(→Code: 7/5 revisions) |
||
Line 20: | Line 20: | ||
function ExecUpdate($iSet,$iWhere) | function ExecUpdate($iSet,$iWhere) | ||
function SQLValue($iVal) | function SQLValue($iVal) | ||
2009-05-03 Wzl more undocumented changes -- looks like mainly $iWhere is now optional in GetData()*/ | 2009-05-03 Wzl more undocumented changes -- looks like mainly $iWhere is now optional in GetData() | ||
2009-07-05 Wzl DataSet->__get now returns NULL if no field found; DataSet->HasField() | |||
*/ | |||
// Select which DB library to use -- | // Select which DB library to use -- | ||
Line 171: | Line 173: | ||
return $ok; | return $ok; | ||
} | } | ||
public function NewID() { | public function NewID($iDbg='0') { | ||
if (KF_USE_MYSQL) { | if (KF_USE_MYSQL) { | ||
$id = mysql_insert_id($this->Conn); | $id = mysql_insert_id($this->Conn); | ||
Line 178: | Line 180: | ||
$id = $this->Conn->insert_id; | $id = $this->Conn->insert_id; | ||
} | } | ||
assert('$id!=0'); | assert('$id!=0 /*'.$iDbg.'*/'); | ||
return $id; | return $id; | ||
} | } | ||
Line 344: | Line 346: | ||
} | } | ||
public function __get($iName) { | public function __get($iName) { | ||
return $this->Row[$iName]; | if (isset($this->Row[$iName])) { | ||
return $this->Row[$iName]; | |||
} else { | |||
return NULL; | |||
} | |||
} | |||
public function HasField($iName) { | |||
return isset($this->Row[$iName]); | |||
} | } | ||
} | } | ||
/*============= | /*============= | ||
Line 636: | Line 640: | ||
*** UTILITY FUNCTIONS *** | *** UTILITY FUNCTIONS *** | ||
*/ | */ | ||
function Pluralize($iQty,$iSingular='',$iPlural='s') { | if (!defined('FUNC_PLURALIZE')) { | ||
function Pluralize($iQty,$iSingular='',$iPlural='s') { | |||
define('FUNC_PLURALIZE',1); | |||
if ($iQty == 1) { | |||
return $iSingular; | |||
} else { | |||
return $iPlural; | |||
} | |||
} | |||
} | } | ||
function SQLValue($iVal) { | function SQLValue($iVal) { |
Revision as of 22:14, 10 July 2009
About
Database abstraction classes; used by VbzCart and SpamFerret
Code
<php><?php /* ===========================
*** DATA UTILITY CLASSES ***
HISTORY:
2007-05-20 Wzl These classes have been designed to be db-engine agnostic, but I wasn't able
to test against anything other than MySQL nor was I able to implement the usage of the dbx_ functions, as the system that I was using didn't have them installed.
2007-08-30 Wzl posting this version at http://htyp.org/User:Woozle/data.php 2007-12-24 Wzl Some changes seem to have been made as recently as 12/17, so posting updated version 2008-02-06 Wzl Modified to use either mysqli or (standard) mysql library depending on flag; the latter isn't working yet 2009-03-10 Wzl adding some static functions to gradually get rid of the need for object factories 2009-03-18 Wzl debug constants now have defaults 2009-03-26 Wzl clsDataSet.Query() no longer fetches first row; this will require some rewriting NextRow() now returns TRUE if data was fetched; use if (data->NextRow()) {..} to loop through data. 2009-05-02 Wzl undocumented changes -- looks like: assert-checks return ID of an insertion function ExecUpdate($iSet,$iWhere) function SQLValue($iVal) 2009-05-03 Wzl more undocumented changes -- looks like mainly $iWhere is now optional in GetData() 2009-07-05 Wzl DataSet->__get now returns NULL if no field found; DataSet->HasField()
- /
// Select which DB library to use -- // exactly one of the following must be true: define('KF_USE_MYSQL',TRUE); // in progress define('KF_USE_MYSQLI',FALSE); // complete & tested define('KF_USE_DBX',false); // not completely written; stalled
if (!defined('KDO_DEBUG')) { define('KDO_DEBUG',FALSE); } if (!defined('KDO_DEBUG_STACK')) { define('KDO_DEBUG_STACK',FALSE); } if (!defined('KDO_DEBUG_IMMED')) { define('KDO_DEBUG_IMMED',FALSE); } if (!defined('KS_DEBUG_HTML')) { define('KS_DEBUG_HTML',FALSE); } if (!defined('KDO_DEBUG_DARK')) { define('KDO_DEBUG_DARK',FALSE); }
class clsDatabase {
/* ============= | STATIC SECTION
- /
// nothing yet
/* ============== | DYNAMIC SECTION
- /
private $cntOpen; // count of requests to keep db open private $strType; // type of db (MySQL etc.) private $strUser; // database user private $strPass; // password private $strHost; // host (database server domain-name or IP address) private $strName; // database (schema) name
private $Conn; // connection object
// status
private $strErr; // latest error message public $sql; // last SQL executed (or attempted)
public function __construct($iConn) { $this->Init($iConn); } public function Init($iConn) {
// $iConn format: type:user:pass@server/dbname
$this->cntOpen = 0; list($part1,$part2) = split('@',$iConn); list($this->strType,$this->strUser,$this->strPass) = split(':',$part1); list($this->strHost,$this->strName) = explode('/',$part2); $this->strType = strtolower($this->strType); // make sure it is lowercased, for comparison } public function Open() { CallEnter($this,__LINE__,'clsDatabase.Open()'); if ($this->cntOpen == 0) {
// then actually open the db
if (KF_USE_MYSQL) {
$this->Conn = mysql_connect( $this->strHost, $this->strUser, $this->strPass, false ); assert('is_resource($this->Conn)'); $ok = mysql_select_db($this->strName, $this->Conn); if (!$ok) { $this->getError(); }
} if (KF_USE_MYSQLI) {
$this->Conn = new mysqli($this->strHost,$this->strUser,$this->strPass,$this->strName);
} if (KF_USE_DBX) {
$this->Conn = dbx_connect($this->strType,$this->strHost,$this->strName,$this->strUser,$this->strPass);
} } if (!$this->isOk()) { $this->getError(); } $this->cntOpen++; CallExit('clsDatabase.Open() - '.$this->cntOpen.' lock'.Pluralize($this->cntOpen)); } public function Shut() { CallEnter($this,__LINE__,'clsDatabase.Shut()'); $this->cntOpen--; if ($this->cntOpen == 0) { if (KF_USE_MYSQL) {
mysql_close($this->Conn);
} if (KF_USE_MYSQLI) {
$this->Conn->close();
} if (KF_USE_DBX) {
dbx_close($this->Conn);
} } CallExit('clsDatabase.Shut() - '.$this->cntOpen.' lock'.Pluralize($this->cntOpen)); } public function GetHost() {
return $this->strHost;
} public function GetUser() {
return $this->strUser;
} public function isOpened() {
/*
PURPOSE: For debugging, mainly RETURNS: TRUE if database connection is supposed to be open
- /
return ($this->cntOpen > 0); } public function isOk() {
/*
PURPOSE: For debugging, mainly RETURNS: TRUE if database connection was actually opened successfully
- /
if ($this->strErr) { return FALSE; } elseif ($this->Conn == FALSE) { return FALSE; } else { return TRUE; }
} public function getError() { if (KF_USE_MYSQL) {
$this->strErr = mysql_error();
} if (KF_USE_MYSQLI) {
$this->strErr = $this->Conn->error;
} return $this->strErr; } public function Exec($iSQL) { CallEnter($this,__LINE__,__CLASS__.'.'.__METHOD__.'('.$iSQL.')'); $this->sql = $iSQL; if (KF_USE_MYSQL) {
$ok = mysql_query($iSQL);
} if (KF_USE_MYSQLI) {
$objQry = $this->Conn->prepare($iSQL);
if (is_object($objQry)) {
$ok = $objQry->execute();
} else {
$ok = false;
echo '
SQL error: '.$iSQL.'
';
}
} if (!$ok) { $this->getError(); } if (KF_USE_MYSQL) { // no need to do anything; no resource allocated as long as query SQL was non-data-fetching } if (KF_USE_MYSQLI) {
$objQry->close();
} CallExit(__CLASS__.'.'.__METHOD__.'()'); return $ok; } public function NewID($iDbg='0') { if (KF_USE_MYSQL) {
$id = mysql_insert_id($this->Conn);
} if (KF_USE_MYSQLI) {
$id = $this->Conn->insert_id;
} assert('$id!=0 /*'.$iDbg.'*/'); return $id; } public function SafeParam($iString) { CallEnter($this,__LINE__,__CLASS__.'.SafeParam("'.$iString.'")'); if (KF_USE_MYSQL) {
if (is_resource($this->Conn)) {
$out = mysql_real_escape_string($iString,$this->Conn);
} else {
$out = '
'.get_class($this).'.SafeParam("'.$iString.'") has no connection.';
}
} if (KF_USE_MYSQLI) {
$out = $this->Conn->escape_string($iString);
} CallExit('SafeParam("'.$iString.'")'); return $out; } public function ErrorText() { if ($this->strErr == ) { $this->_api_getError(); } return $this->strErr; }
/* === API WRAPPER FUNCTIONS === */ // some of these could be static, but for now it seems simpler to keep them all together here
public function _api_query($iSQL) { global $dbgSQL;
$this->sql = $iSQL; $dbgSQL = $iSQL; if (KF_USE_MYSQL) {
return mysql_query($iSQL);
} if (KF_USE_MYSQLI) {
$this->Conn->real_query($iSQL); return $this->Conn->store_result();
} if (KF_USE_DBX) {
return dbx_query($this->Conn,$iSQL,DBX_RESULT_ASSOC);
}
} public function _api_rows_rewind($iRes) { if (KF_USE_MYSQL) {
mysql_data_seek($iRes, 0);
} } public function _api_fetch_row($iRes) { // ACTION: Fetch the first/next row of data from a result set if (KF_USE_MYSQL) {
assert('is_resource($iRes)'); return mysql_fetch_assoc($iRes);
} if (KF_USE_MYSQLI) {
return $iRes->fetch_assoc();
} } public function _api_count_rows($iRes) { // ACTION: Return the number of rows in the result set if (KF_USE_MYSQL) {
if ($iRes === FALSE) { return FALSE; } else { assert('is_resource($iRes)'); return mysql_num_rows($iRes); }
} if (KF_USE_MYSQLI) {
return $iRes->num_rows;
} } public function _api_row_filled($iRow) { if (KF_USE_MYSQL) {
return ($iRow !== FALSE) ;
} }
/* === OBJECT FACTORY === */
public function DataSet($iSQL = NULL,$iClass = NULL) { CallEnter($this,__LINE__,__CLASS__.'.DataSet("'.$iSQL.'","'.$iClass.'")'); if (is_string($iClass)) {
$objData = new $iClass($this); assert('is_object($objData)'); if (!($objData instanceof clsDataSet)) { LogError($iClass.' is not a clsDataSet subclass.'); }
} else {
$objData = new clsDataSet($this); assert('is_object($objData)');
} if (!is_null($iSQL)) { if (is_object($objData)) {
$objData->Query($iSQL);
} } CallExit(__CLASS__.'.DataSet()'); return $objData; }
}
class clsDataSet {
protected $objDB; public $Res; // native result set public $Row; // data from the active row
public function __construct(clsDatabase $iDB=NULL, $iRes=NULL, array $iRow=NULL) { CallEnter($this,__LINE__,__CLASS__.'.'.__FUNCTION__.'(['.get_class($iDB).'])'); $this->objDB = $iDB; $this->Res = $iRes; $this->Row = $iRow; CallExit(__CLASS__.'.'.__FUNCTION__.'()'); }
// -- loading and navigating through a data set
public function Query($iSQL) { global $sql;
CallEnter($this,__LINE__,__CLASS__.'.'.__FUNCTION__.'('.$iSQL.')'); $sql = $iSQL; $this->Res = $this->objDB->_api_query($iSQL); //$sqlEsc = $this->objDB->SafeParam($sql); assert('is_resource($this->Res) /* SQL='.$iSQL.' */'); // && ('$sqlEsc' != )");
// $this->NextRow(); // load the first row without wasting time rewinding
CallExit(__CLASS__.'.'.__FUNCTION__.'()'); } public function hasRows() {
// RETURNS: # of rows iff result has rows, otherwise FALSE
$rows = $this->objDB->_api_count_rows($this->Res); if ($rows === FALSE) {
return FALSE;
} elseif ($rows == 0) {
return FALSE;
} else {
return $rows;
} } public function hasRow() { return $this->objDB->_api_row_filled($this->Row); } public function RowCount() { return $this->objDB->_api_count_rows($this->Res); } public function FirstRow() { if ($this->hasRows()) {
$this->objDB->_api_rows_rewind($this->Res);
$this->NextRow(); // get the first row of data } } public function NextRow() {
/* ACTION: Fetch the next row of data into $this->Row.
If no data has been fetched yet, then fetch the first row. RETURN: TRUE if row was fetched; FALSE if there were no more rows or the row could not be fetched.
- /
$this->Row = $this->objDB->_api_fetch_row($this->Res); return $this->hasRow(); }
// -- accessing individual fields
public function __set($iName, $iValue) { $this->Row[$iName] = $iValue; } public function __get($iName) { if (isset($this->Row[$iName])) {
return $this->Row[$iName];
} else {
return NULL;
} } public function HasField($iName) { return isset($this->Row[$iName]); }
}
/*============= | NAME: clsTable | PURPOSE: objects for operating on particular tables
- /
class clsTable {
protected $objDB; protected $vTblName; protected $vKeyName; protected $vSngClass; // name of singular class
public function __construct($iDB,$iTblName,$iKeyName,$iSngClass=NULL) {
$this->objDB = $iDB; $this->vTblName = $iTblName; $this->vKeyName = $iKeyName; $this->vSngClass = $iSngClass;
} public function Name() {
return $this->vTblName;
} public function SingularName(string $iName=NULL) {
if (!is_null($iName)) { $this->vSngClass = $iName; } return $this->vSngClass;
} public function GetItem($iID,$iClass=NULL) {
/* $sql = 'SELECT * FROM `'.$this->vTblName.'` WHERE '.$this->vKeyName.'='.$iID; if (is_null($iClass)) { $strClass = $this->vSngClass; } else { $strClass = $iClass; } return $this->objDB->DataSet($sql,$strClass);
- /
$objItem = $this->GetData($this->vKeyName.'='.$iID,$iClass); $objItem->NextRow(); return $objItem;
} public function GetData($iWhere=NULL,$iClass=NULL,$iSort=NULL) {
global $sql; // for debugging
CallEnter($this,__LINE__,__CLASS__.'.'.__METHOD__.'("'.$iWhere.'","'.$iClass.'")'); $sql = 'SELECT * FROM `'.$this->vTblName.'`'; if (!is_null($iWhere)) { $sql .= ' WHERE '.$iWhere; } if (!is_null($iSort)) { $sql .= ' ORDER BY '.$iSort; } if (is_null($iClass)) { $strClass = $this->vSngClass; } else { $strClass = $iClass; } CallExit('GetData() - SQL: '.$sql); return $this->objDB->DataSet($sql,$strClass);
} public function ExecUpdate($iSet,$iWhere) {
$sql = 'UPDATE `'.$this->Name().'` SET '.$iSet.' WHERE '.$iWhere; return $this->objDB->Exec($sql);
}
}
// OLDER CLASSES -- DEPRECATED /* class clsData {
protected $objDB; // clsDatabase public function __construct($iDB) { $this->objDB = $iDB; $this->objDB->Open(); assert (isset($this->objDB)); } public function DB() { CallStep('('.get_class($this).')clsDataTable.DB()'); return $this->objDB; }
}
class clsDataQuery extends clsData {
protected $sqlSelect;
public function __construct($iDB,$iSQL) { CallEnter($this,__LINE__,'clsDataQuery('.get_class($iDB).','.$iSQL.')'); parent::__construct($iDB); $this->sqlSelect = $iSQL; CallExit('clsDataQuery()'); } public function __destruct() { $this->objDB->Shut(); } protected function _newItem() { return new clsDataItem_noID($this); } public function GetData() { $objItem = $this->_newItem(); $objItem->Query($this->sqlSelect); return $objItem; }
}
class clsDataTable_noID extends clsData {
protected $strName; public function __construct($iDB,$iName) { CallEnter($this,__LINE__,'clsDataTable_noID('.get_class($iDB).','.$iName.')'); parent::__construct($iDB); $this->strName = $iName; CallExit('clsDataTable_noID()'); } public function __destruct() { $this->objDB->Shut(); } protected function _newItem() { CallStep('('.get_class($this).')'.__CLASS__.'.'.__FUNCTION__.'()'); return new clsDataItem_noID($this); } public function Name() { return $this->strName; } public function GetData($iFilt=,$iSort=) { CallEnter($this,__LINE__,'clsDataTable.GetData(filt="'.$iFilt.'",sort="'.$iSort.'")'); $sql = 'SELECT * FROM '.$this->strName; if ($iFilt != ) { $sql .= ' WHERE ('.$iFilt.')'; } if ($iSort != ) { $sql .= ' ORDER BY '.$iSort; } CallStep('line '.__LINE__.' ['.get_class($this).'] SQL = ['.$sql.']'); $objItem = $this->_newItem(); $objItem->Query($sql); CallExit('clsDataTable.GetData() -> '.get_class($objItem)); return $objItem; }
} // // clsDataTable_noID with functions based on autonumbered ID field // class clsDataTable extends clsDataTable_noID {
protected $strIDname; // name of unique ID field
public function __construct($iDB,$iName,$iIDname='ID') { CallEnter($this,__LINE__,'clsDataTable('.get_class($iDB).','.$iName.')'); parent::__construct($iDB,$iName); $this->strIDname = $iIDname; CallExit('clsDataTable()'); } public function NameOfID() { return $this->strIDname; }
public function IDName() {
return $this->strIDname;
}
protected function _newItem() { CallStep('('.get_class($this).')clsDataTable._newItem()'); return new clsDataItem($this); } public function GetItem($iID) { CallEnter($this,__LINE__,'clsDataTable.GetItem('.$iID.')'); $sql = 'SELECT * FROM '.$this->strName.' WHERE '.$this->strIDname.'="'.$iID.'"'; CallStep('SQL = ['.$sql.']');
// $objQry = dbx_query($this->objDB,$sql,DBX_RESULT_ASSOC);
$objItem = $this->_newItem(); $objItem->Query($sql);
// $objItem->Eat($objQry);
CallExit('clsDataTable.GetItem('.$iID.') -> '.get_class($objItem)); return $objItem; }
}
class clsDataItem_noID {
public $Res; // result set public $Row; // first (presumably the *only*) row data public $Table; // clsDataTable object public function __construct($iTable=NULL) { CallEnter($this,__LINE__,'clsDataItem_noID('.get_class($iTable).')'); $this->Init($iTable); CallExit('clsDataItem_noID()'); } public function Init($iTable=NULL) { CallEnter($this,__LINE__,'clsDataItem_noID.Init('.get_class($iTable).')'); $this->Table = $iTable;
// this works for mysql only: // fetch the first row of the results as an associative array: // $this->Row = $iResults->fetch_assoc();
CallExit('clsDataItem_noID.Init()'); } public function isResOk() {
if (KF_USE_MYSQL) { return $this->Res !== FALSE; }
} protected function LoadResults() {
// USAGE: Abstract
CallStep('('.get_class($this).')clsDataItem_noID.LoadResults()'); } public function GetValue($iName) {
// this works for mysql only
CallEnter($this,__LINE__,'clsDataTable_noID.GetValue('.$iName.')');
// DumpArray($this->Row);
$val = $this->Row[$iName]; CallExit('clsDataTable_noID.GetValue('.$iName.') -> ['.$val.']'); return $val; } public function RowCount() {
if (KF_USE_MYSQL) {
if (is_resource($this->Res)) { $cntRows = mysql_num_rows($this->Res); } else { echo '
BAD RESOURCE in '.get_class($this).'.RowCount()'; }
} if (KF_USE_MYSQLI) {
$cntRows = $this->Res->num_rows;
}
CallStep('('.get_class($this).')clsDataItem_noID.RowCount() -> '.$cntRows); return $cntRows; } public function HasData() { return (is_array($this->Row)); } public function HasRows($iMin=1) { if ($this->HasData()) { assert('is_resource($this->Res)'); return ($this->RowCount() >= $iMin); } else { return 0; } } private function FirstRow() { CallEnter($this,__LINE__,'clsDataItem_noID.FirstRow()'); if (is_resource($this->Res)) { if ($this->RowCount()) { $this->NextRow(); // get the first row of data } } CallExit('('.get_class($this).')clsDataItem_noID.FirstRow()'); } public function NextRow() {
// this works for mysql only: // fetch the NEXT row of the results as an associative array: if (KF_USE_MYSQL) {
$this->Row = mysql_fetch_assoc($this->Res);
} if (KF_USE_MYSQLI) {
$this->Row = $this->Res->fetch_assoc();
}
if (is_array($this->Row)) { $this->LoadResults(); } }
} // // clsDataItem with functions based on autonumbered ID field // class clsDataItem extends clsDataItem_noID {
public $ID; protected $strIDname; // name of unique ID field
//TO DO: set $strIDname at construct time; use it instead of hard-coded "ID" // or maybe clsTitleExt should descend from clsDataItem_noID? Or need clsTitleIttyp class instead?
protected function LoadResults() {
// USAGE: Descendants do not have to call this function
CallEnter($this,__LINE__,'clsDataItem.LoadResults()'); assert($this->Table); $strID = $this->Table->NameOfID(); assert(($strID != ) && ($strID != FALSE)); $this->ID = $this->GetValue($strID); assert($this->ID);
if (KDO_DEBUG) {
if (!isset($this->ID)) { echo '
TABLE: ['.$this->Table->Name().'] ID name: ['.$strID.']
'; }
}
CallExit('clsDataItem.LoadResults()'); }
}
- /
/* ========================
*** UTILITY FUNCTIONS ***
- /
if (!defined('FUNC_PLURALIZE')) {
function Pluralize($iQty,$iSingular=,$iPlural='s') {
define('FUNC_PLURALIZE',1); if ($iQty == 1) { return $iSingular; } else { return $iPlural; }
}
} function SQLValue($iVal) { if (is_null($iVal)) { return 'NULL'; } else if (is_bool($iVal)) { return $iVal?'TRUE':'FALSE'; } else if (is_string($iVal)) { // $oVal = str_replace('"','\\"',$iVal); $oVal = mysql_real_escape_string($iVal); return '"'.$oVal.'"'; } else { // numeric can be raw // all others, we don't know how to handle, so return raw as well return $iVal; } } /* ========================
*** DEBUGGING FUNCTIONS ***
- /
// these could later be expanded to create a call-path for errors, etc.
function CallEnter($iObj,$iLine,$iName) {
global $intCallDepth, $debug; if (KDO_DEBUG_STACK) { $strDescr = ' line '.$iLine.' ('.get_class($iObj).')'.$iName; _debugLine('enter','>',$strDescr); $intCallDepth++; _debugDump(); }
} function CallExit($iName) {
global $intCallDepth, $debug; if (KDO_DEBUG_STACK) { $intCallDepth--; _debugLine('exit','<',$iName); _debugDump(); }
} function CallStep($iDescr) {
global $intCallDepth, $debug; if (KDO_DEBUG_STACK) { _debugLine('step',':',$iDescr); _debugDump(); }
} function LogError($iDescr) {
global $intCallDepth, $debug;
if (KDO_DEBUG_STACK) { _debugLine('error',':',$iDescr); _debugDump(); }
} function _debugLine($iType,$iSfx,$iText) {
global $intCallDepth, $debug;
if (KDO_DEBUG_HTML) { $debug .= ''.str_repeat('—',$intCallDepth).$iSfx.' '.$iText.'
'; } else { $debug .= str_repeat('*',$intCallDepth).'++ '.$iText."\n"; }
} function _debugDump() {
global $debug;
if (KDO_DEBUG_IMMED) {
DoDebugStyle(); echo $debug; $debug = ;
}
} function DumpArray($iArr) {
global $intCallDepth, $debug;
if (KDO_DEBUG) { while (list($key, $val) = each($iArr)) { if (KS_DEBUG_HTML) { $debug .= '
'.str_repeat('-- ',$intCallDepth+1).''; $debug .= " $key => $val"; $debug .= ''; } else { $debug .= "/ $key => $val /"; } if (KDO_DEBUG_IMMED) { DoDebugStyle(); echo $debug; $debug = ; } } }
} function DumpValue($iName,$iVal) {
global $intCallDepth, $debug;
if (KDO_DEBUG) { if (KS_DEBUG_HTML) { $debug .= '
'.str_repeat('-- ',$intCallDepth+1); $debug .= " $iName: [$iVal]"; $debug .= ''; } else { $debug .= "/ $iName => $iVal /"; } if (KDO_DEBUG_IMMED) { DoDebugStyle(); echo $debug; $debug = ; } }
} function DoDebugStyle() {
static $isStyleDone = false;
if (!$isStyleDone) { echo '<style type="text/css"></style>'; $isStyleDone = true; }
} </php>