15 lines
177 B
PHP
15 lines
177 B
PHP
<?php
|
|
/** clone function for php4
|
|
*/
|
|
|
|
function clone($obj){
|
|
return $obj;
|
|
}
|
|
|
|
function println($str){
|
|
$f = fopen("debug.txt", "a");
|
|
fwrite($f, $str . "\n");
|
|
fclose($f);
|
|
}
|
|
|
|
?>
|