preload

The “Final” keyword is used to make the class uninheritable. So the class or it’s methods can not be overridden.


An Abstract class will never be a final class as an abstract class must be extendable.

Read More...

Magic methods are the members functions that is available to all the instance of class Magic methods always starts with "__".

Eg. __construct. All magic methods needs to be declared as public To use magic method they should be defined within the class or program scope Various Magic Methods used in PHP 5 are:
__construct() __destruct() __set() __get() __call() __toString() __sleep() __wakeup() __isset() __unset() __autoload() __clone()

Read More...

default session time in PHP is 1440 seconds or 24 minutes
Default session save path id temporary folder /tmp

Read More...

There are lot of difference among these three version of php
1)Php3 is oldest version after that php4 came and current version is php5 (php5.3) where php6 have to come
2)Difference mean oldest version have less functionality as compare to new one like php5 have all OOPs concept now where as php3 was pure procedural language constructive like C
In PHP5
1. Implementation of exceptions and exception handling
2. Type hinting which allows you to force the type of a specific argument
3. Overloading of methods through the __call function
4. Full constructors and destructors etc through a __constuctor and __destructor function
5. __autoload function for dynamically including certain include files depending on the class you are trying to create.
6 Finality : can now use the final keyword to indicate that a method cannot be overridden by a child. You can also declare an entire class as final which prevents it from having any children at all.
7 Interfaces & Abstract Classes
8 Passed by Reference :
9 An __clone method if you really want to duplicate an object

Read More...

The header() function sends a raw HTTP header to a client.We can use header()
function for redirection of pages. It is important to notice that header() must
be called before any actual output is seen..

Read More...

Following tables (Storage Engine) we can create
1. MyISAM(The default storage engine IN MYSQL Each MyISAM table is stored on disk in three files. The files have names that begin with the table name and have an extension to indicate the file type. An .frm file stores the table format. The data file has an .MYD (MYData) extension. The index file has an .MYI (MYIndex) extension. )
2. InnoDB(InnoDB is a transaction-safe (ACID compliant) storage engine for MySQL that has commit, rollback, and crash-recovery capabilities to protect user data.)
3. Merge
4. Heap (MEMORY)(The MEMORY storage engine creates tables with contents that are stored in memory. Formerly, these were known as HEAP tables. MEMORY is the preferred term, although HEAP remains supported for backward compatibility. )
5. BDB (BerkeleyDB)(Sleepycat Software has provided MySQL with the Berkeley DB transactional storage engine. This storage engine typically is called BDB for short. BDB tables may have a greater chance of surviving crashes and are also capable of COMMIT and ROLLBACK operations on transactions)
6. EXAMPLE
7. FEDERATED (It is a storage engine that accesses data in tables of remote databases rather than in local tables. )
8. ARCHIVE (The ARCHIVE storage engine is used for storing large amounts of data without indexes in a very small footprint. )
9. CSV (The CSV storage engine stores data in text files using comma-separated values format.)
10. BLACKHOLE (The BLACKHOLE storage engine acts as a "black hole" that accepts data but throws it away and does not store it. Retrievals always return an empty result)

Read More...

$name is variable where as $$name is reference variable
like $name=sonia and $$name=singh so $sonia value is singh.

Read More...

We can do it by 4 Ways
1. mysql_fetch_row
2. mysql_fetch_array
3. mysql_fetch_object
4. mysql_fetch_assoc

Read More...

There are some defference between GET and POST method
1. GET Method have some limit like only 2Kb data able to send for request. But in POST method unlimited data can we send
2. when we use GET method requested data show in url but Not in POST method so POST method is good for send sensitive request.

Read More...

preg_match("/^http:\/\/.+@(.+)$/","http://info@pcds.co.in",$matches);
echo $matches[1];

Read More...

Inserts HTML line breaks (<BR />) before all newlines in a string.

Read More...

.htaccess is often the only file we have access to. It lives at the root of a Web site - in the same directory as the default home page of a site - and/or below that in the subdirectories for the site. Therefore, the Webmaster can upload, modify, copy, or move it at will.

However, if you administrate your own server, then you'll also have access to httpd.conf, which is one of the server configuration files. It is located along with the rest of the server files at a level that users can't get to.

Directives in httpd.conf are compiled at server start-up, so that processing is more efficient. Directives in .htaccess, however, must be interpreted for each and every HTTP request; Interpreting them slows things down a bit, and might be done 20 times to load a single HTML page with several images and scripts on it.

However, interpreting .htaccess directives is no less efficient than interpreting any other scripted language, so you do the same thing you'd do with any script that was to be run often: Decide exactly what you need to do and code it as efficiently as possible.

On the other hand, changing a directive in .htaccess does not require the server to be restarted, so some may wish to test their code by running it in .htaccess, and then 'port' it to httpd.conf once it is initially debugged. That option -- when available -- gives the best of both worlds.

Read More...

Rasmus Lerdorf is known as the father of PHP.

Read More...

 Three are three types of errors:
1. Notices: These are trivial, non-critical errors that PHP encounters while executing a script  for example, accessing a variable that has not yet been defined. By default, such errors are not displayed to the user at all  although, as you will see, you can change this default behavior.
2. Warnings: These are more serious errors  for example, attempting to include() a file which does not exist. By default, these errors are displayed to the user, but they do not result in script termination.
3. Fatal errors: These are critical errors  for example, instantiating an object of a non-existent class, or calling a
non-existent function. These errors cause the immediate termination of the script, and PHP's default behavior is to display them to the user when they take place.

Read More...

Contact Us

Gmail
nmohanswe
Facebook
nmohanswe
Twitter
nmohanswe
Skype
nmohanswe