PHP Strings

PHP Escape Sequences

Escape sequences are used for escaping a character during string parsing. It is also used for giving special meaning to represent line break ...

November 8th, 2013

HTML PHP

Like other server-side scripting languages, PHP scripts are running on the server. And then, the server will send an HTML response after exe ...

September 12th, 2013

PHP String Replace

We have already seen many PHP string functions with this blog, like implode/explode, string extract, split and etc. But, it is a never-endin ...

August 26th, 2013

PHP String Concatenation

If we have enough familiarity with PHP inbuilt string and array functions, then, it will more helpful while doing code on PHP. In this serie ...

July 8th, 2013

PHP htmlentities()

Generally, the character encoding is done in various ways in PHP which provides many functions to perform these conversions, onto a given in ...

July 5th, 2013

PHP String Extract

Among the enormous amount of PHP functions, the string functions are more in number and very popular and heavily utilized. So, the operation ...

July 2nd, 2013

PHP Line Breaks

Line breaks are the separators that are used to escape from continuing with the same line. This is for splitting the lengthy line into small ...

June 25th, 2013

PHP Case Conversion

In PHP, string-related functions are most popular and widely used while programming. Among them, some set predefined string functions are us ...

May 11th, 2013

Trimming String using PHP

String Trimming is the process of clearing the unwanted whitespace present in a string. This process will clear the whitespace that occurs a ...

May 2nd, 2013

↑ Back to Top