0

私は3つのクラスを持っています。[1] シングルトン [2] ロード [3] ダッシュボード . Load クラスには、「model()」というメソッドが 1 つあります。このコードを使用して、シングルトン オブジェクトのデータを初期化しています。

$obj = Singleton::getInstance();
$obj->insertData('email', 'mail@domain.com');

繰り返しますが、Dashboard クラスには、Singleton オブジェクト データを印刷しようとしているところから「show()」というメソッドが 1 つあります。しかし、ここでは「Load」クラスの「model」メソッドによって初期化されたデータを除いて、Singleton オブジェクトのすべてのデータを見ることができます。

これが私の完全なコードです...

<?php 
//---Singletone Class---
class Singleton
{
    // A static property to hold the single instance of the class
    private static $instance;

    // The constructor is private so that outside code cannot instantiate
    public function __construct() {

        if(isset(self::$instance))
        foreach(self::$instance as $key => &$val)
        {
            $this->{$key} = &$val;
        }
    }



    // All code that needs to get and instance of the class should call
    // this function like so: $db = Database::getInstance();
    public static function getInstance()
    {
        // If there is no instance, create one
        if (!isset(self::$instance)) {
            $c = __CLASS__;
            self::$instance = new $c;
        }
        return self::$instance;
    }

    // Block the clone method
    private function __clone() {}


    // Function for inserting data to object
    public function insertData($param, $element)
    {
        $this->{$param} = $element;
    }
}


//---LOAD class---
class Load
{    
    function __construct() 
    {
     $obj = Singleton::getInstance();
     $obj->insertData('country', 'INDIA');
    } 

    function model()
    {
        $this->name = 'Suresh';     

        $obj = Singleton::getInstance();
        $obj->insertData('email', 'mail@domain.com');
    }

    function msg()
    {
        return('<br><br>This message is from LOAD class');
    }       
}

$obj = Singleton::getInstance();
$load = new load();
$obj->load = $load;



//---Dashboard Class---
class Dashboard extends Singleton
{
    function __construct()
    {
        parent::__construct();
   }

    function show()
    {
        echo "Default data in current Object";
        echo "<br>";
        print_r($this);

        echo $this->load->msg();

        $this->load->model();

        echo "<br><br>Data in current Object after post intialization";
        echo "<br>";
        print_r($this);
    }
}

$dashboard = new dashboard();
$dashboard->show();
4

2 に答える 2

0

配列のようなオブジェクトに直接アクセスするのは好きではありません。これはより良いアプローチです[こちらを参照]

次のように呼び出す必要があります。

$obj = Singleton::getInstance();
$load = new Load();
$obj->insertData( 'load', $load );

シングルトンの実装:

class Singleton
{

// A static property to hold the single instance of the class
private static $instance;

// my local data
protected $_properties;

// You might want to move setter/getter to the end of the class file

public function __set( $name, $value )
{
    $this->_properties[ $name ] = $value;
}

public function __get( $name )
{
    if ( ! isset( $this->_properties[ $name ] )) {
       return null;
    }

    return $this->_properties[ $name ];
}

// No need to check, if single instance exists! 
// __construct can only be called, if an instance of Singleton actually exists
private function __construct() {

  $this->_properties = array();

  foreach(self::$instance as $key => &$val)
  {
     $this->_properties{$key} = &$val;
  }

}

public static function getInstance()
{
    if (!isset(self::$instance)) {
        $c = __CLASS__;
        self::$instance = new $c;
    }
    return self::$instance;
}

// Function for inserting data to object
public function insertData($param, $element)
{
    $this->_properties{$param} = $element;
}


// Block the clone method
private function __clone() {}

}

于 2012-07-22T14:49:18.227 に答える
0

シングルトンが本当にシングルトンだった場合、更新は機能していたはずです。初期化されたシングルトン クラスのインスタンスが複数あると思われます。
編集:
真のシングルトンクラスから継承することもお勧めできません。ダッシュボードがシングルトンに持っている継承を削除する必要があります

編集: PHP シングルトン クラスのベスト プラクティス

于 2012-07-22T14:07:33.363 に答える