Jump to content
  • 0

конструктор тупит , или я


crautcher
 Share

Question

рабочий вариант

$iconf = blabla::GetConf(); var_dump($iconf); die();
class blabla
{

public static function GetConf()
{
static $conf = false;
if (!$conf)
$conf = include "conf/conf.blabla.php";
return $conf;
}

}

не рабочии варианты , почему?

$iconf = blabla::GetConf(); 
class blabla
{

function _construct()
{
global $iconf;
var_dump($iconf);
$conf = self::GetConf(); var_dump($conf);
$conf2 = include "conf/conf.blabla.php"; var_dump($conf2); die();
}

public static function GetConf()
{
static $conf = false;
if (!$conf)
$conf = include "conf/conf.blabla.php";
return $conf;
}

}

везде null , почему?

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Ну во-первых: __construct(), а не _construct()

Во-вторых: file_exists('conf/conf.blabla.php') ?

В-третьих: А может вы лучше расскажите, что хотите получить, а мы предложим варианты решения.

P.s. global $iconf; ? :blink: Объявите её в классе и обращайтесь как $this->iconf или ещё как в зависимости от фантазии. а вообще см. В-третьих

Link to comment
Share on other sites

  • 0

точно , долбаная черточка из за невнимательности недовала мне покоя)

теперь у меня проблема в другом месте ...

буду писать сокращеный вариант только то что учавствует в проблеме

класс 1



class someclass1
{
private $variable;

function __construct()
{
$conf = self::GetConf();
$this -> variable = array();
foreach ($conf as $c)
$this -> variable[ $c ] = false;
}

public static function GetConf()
{
static $conf = false;
if (!$conf)
$conf = include "conf/someconf.php";
return $conf;
}

public function GetSome()
{
return $this -> variable;
}

}

класс 2 использует объект этого класса


class someclass2
{
public $somevar;

function __construct()
{
$this -> somevar = new someclass1;
$this -> methode1();
}

function methode1()
{
...
$somevar2 = $this -> somevar -> GetSome();
...
}

}

PHP Fatal error: Call to a member function GetSome() on a non-object

Edited by crautcher
Link to comment
Share on other sites

  • 0

действительно урезаный не ругается :/

всё понял , на практике выходило что перед созданием обьекта юзался метод , который тоже юзает метод "methode1" . Поставил создание объекта 1ым действием и всё норм

Edited by crautcher
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy