Hallo, ich habe das problem, das der return in meiner Error Class nicht funktioniert. aber komischerweiße funktioniert die echo. An was könnte das liegen?
PHP-Code:
class ImageUpload extends ErrorClass {
public function checkImage () {
if(exif_imagetype($_FILES['avatar']['tmp_dir']) != IMAGETYPE_JPEG) {
return $this->errormessage("Kein gültiges Format");
}
}
}
class errorClass {
function errormessage($message) {
$this->msg = "Ungültiges Format";
echo "Variable MSG:".$this->msg."";
return $this->msg;
}
}
Kommentar