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 methods of array in java?

905


What are the new features in php 7?

928


What is meant by pear in php? What is the purpose of it?

911


Tell me how to get the value of current session id?

879


What is the use of @ in php?

989


What is the string concatenation operator in php?

1009


Which function is used in php to delete a file?

969


How do I find out the number of parameters passed into function9?

911


Why do we use polymorphism in php?

957


What are sql injections, how do you prevent them and what are the best practices?

983


Why do we need session?

905


What are the advantages of oops in php?

995


What is parent __construct ();?

963


Does php require a web server?

917


Write a select query that will be displayed the duplicated site name and how many times it is duplicated?

968