Abend zusammen,
folgender Code macht mir wirklich Probleme:
Sobald $out den Wert "status_error_tmp.txt" annimmt kommt
Fatal error: Call to a member function on a non-object in irgendwas\contact.sys.php on line 8
Die Klasse ist vollkommen in Ordnung und funktioniert wunderbar solange $out den Wert "status_normal_tmp.txt" hat...
Was mache ich falsch?!?
Ich kapier nich warum das Ganze nicht funktioniert....
Edit:
Was vielleicht noch wichtig sein könnte:
Logischerweise wird dieses Script included, und $templet = new class; wird in dem Hauptfile als ein Object deklariert.
folgender Code macht mir wirklich Probleme:
PHP-Code:
<?php
if($_POST['command'] == "send")
$out = "status_error_tmp.txt";
else
$out = "status_normal_tmp.txt";
$array[status] = $templet->get_file("content/kontakt/$out");
$array[content] = $templet->get_content("content/kontakt_temp.txt",$array);
?>
Fatal error: Call to a member function on a non-object in irgendwas\contact.sys.php on line 8
Die Klasse ist vollkommen in Ordnung und funktioniert wunderbar solange $out den Wert "status_normal_tmp.txt" hat...
Was mache ich falsch?!?
Ich kapier nich warum das Ganze nicht funktioniert....
Edit:
Was vielleicht noch wichtig sein könnte:
Logischerweise wird dieses Script included, und $templet = new class; wird in dem Hauptfile als ein Object deklariert.
Kommentar