Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Design a class that should always return a single object ?

Answer Posted / amitverma

class DB {
private static $_singleton;
private $_connection;

private function __construct(){
$this->_connection = mysql_connect();
}

public static function getInstance(){
if (is_null (self::$_singleton)) {
self::$_singleton = new DB();
}
return self::$_singleton;
}
}

$db = DB::getInstance();

Is This Answer Correct ?    2 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the different errors in php?

997


Write a program to get lcm of two numbers using php?

962


What's the difference between accessing a class method via -> and via ::?

1119


What is a helper function?

951


How to download files from an external server with code in php?

884


How to insert an new array element in array?

1038


Where php language is used?

982


Can a trait extend a class php?

983


Under what circumstance is it impossible to assign a default value to a parameter while declaring a function?

1140


Do you know how can php and html interact?

1002


What is session and why do we use it?

1050


Php says that an array is an ordered map. But how the values are ordered in an array?

1049


How many keywords are there in php?

1127


What is active record in php?

902


What are the three classes of errors that can occur in php?

1024