explain php variable length argument function.
No Answer is Posted For this Question
Be the First to Post Answer
What is pdo in php why use?
What is session expiry?
How can you make a connection with mysql server using php?
How to return ascii value of character in php?
How can we extract string 'abc.com' from a string "http://info@abc.com" using regular expression of PHP
Explain how can we execute a php script using command line?
What is $_ files in php?
Why php is also called as scripting language?
How can we know that a session is started or not?
3 Answers Rushmore Consultancy,
class Database { public static $_instance; public static function getInstance() { if(!isset(self::$_instance)) self::$_instance = new Database(DB_SERVER, DB_USER, DB_PASS, DB_NAME); print_r(self::$_instance); return self::$_instance; } } can any one explain "self::$_instance = new Database(DB_SERVER, DB_USER, DB_PASS, DB_NAME);" this line
How to download file in php?
What are the steps involved to run php?