Who is the father of PHP and explain the changes in PHP
versions?
Answers were Sorted based on User's Feedback
Answer / nikunj kansara
php.ini is the fater of php. b'c php.ini is load when php
is start, all configration of php is set into php.ini like
max size file upload, file upload path, your web server
path, runtime server and much more so that.
Is This Answer Correct ? | 3 Yes | 11 No |
What are the differences between require and include?
how to get substring of string without using substr() function in php ????
How to open a file in php?
What is printf in php?
Who is the father of php and what is the current version of php and mysql?
What is a PHP accelerator?
Are objects passed by value or by reference?
How to take a substring from a given string?
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
Explain the value of the variable input is a string 1,2,3,4,5,6,7. How would you get the sum of the integers contained inside input?
What is the best website to learn php?
How are php sessions stored?