public function __construct($input = null) {
if (empty($input)){
return false;
}
and then there's some constructor code...
what I would like to do is for the class to not initialize if I pass an empty variable
$classinstance = new myClass(); I want $classinstance to be empty (or false)
I think this is not possible like this, What's an easy way to accomplish a similar result?