What is Date function in PHP ?
The PHP Date function is the PHP built-in function which works with the date data types .The Date function is use to optimize the dates in proper and human readable…
As Developer
The PHP Date function is the PHP built-in function which works with the date data types .The Date function is use to optimize the dates in proper and human readable…
The php variable can be of the different types and different types of variables are stored in different type of data types . The data types stores the different types…
As we have discussed about the Regular Expression in previous topic , Before the string can be matched to regular expression ,The regular expression has to be created , Thus,…
Heredoc : Heredoc string function act just like quoted strings but it starts with <<< followed by an identifier and begins with the new line ,then the set of strings…
Single Quote : The simplest way to specify the string is the single quoted string . The single quote treats the string as the plain text . It is bit…
PHP have a feature which allows you to send the mail from the server using mail() function. In order to sent mail using php it requires three mandatory parameters The Reciever …
The both functions “include” and “require” is used include the file to the PHP Page. The base difference between the “include()” and “require()” is that the “require()” give the fatal…
The echo and print both are used for produce out put but the main difference between them is that echo has no returning value where as print has returning value…