return $this->readable[$this->name];
}
+ // Cloning not allowed
+ function __clone () {
+ // Please do not clone this class
+ debug_report_bug(__METHOD__, __LINE__, 'Cloning of this class is not allowed.');
+ }
} // END - class
// [EOF]
ini_set('magic_quotes_runtime', false);
ini_set('magic_quotes_gpc', false); // This may not work on some systems
+// No compatibility with Zend Engine 1, else an error like 'Implicit cloning'
+// will be produced.
+if (phpversion() >= '5.0') {
+ ini_set('zend.ze1_compatibility_mode', 'Off');
+} // END - if
+
// Check if important arrays are found and define them if missing
if (!isset($_SERVER)) {
global $_SERVER;