Sınıf başka bir yerde dahil edildiğinde benim php programı doğru DOĞRU YANLIŞ değerini döndürüyor değil neden ben merak ediyorum
böyle bir şey gider
source: signup.php
class signup
{
function buildProfile()
{
if($logic){
$this->success = TRUE;
}else{
$this->success = FALSE;
}
}
function __construct()
{
$this->success = NULL;
$this->buildProfile
return $this->success;
}
}
ve başka bir yerde yapmam
include('signup.php');
$signup = new signup();
if($signup){
successFunction();
}else....
ama bu doğru $ kayıt == almak değil, her zaman YANLIŞ oluyor