PHP String Functions Part 2
In Previous post PHP String Functions Part 1 we have explained with examples some PHP string functions, there are many functions to deal with string, I will explain some other functions.
PHP String Functions Examples :
nl2br()
Inserts HTML line breaks before all newlines in a string.
$string = "today's entries"; echo nl2br($string); /* result : today's entries */
ucfirst()
Make a string’s first character uppercase
$string = 'hello world'; echo ucfirst($string); // result : Hello world
ucwords()
Uppercase the first character of each word in a string
$string = 'hello world'; echo ucwords($string); // result : Hello World
strtolower()
Make a string lowercase
$string = 'HeLLo WoRld'; echo strtolower($string); // result : hello world
strtoupper()
Make a string uppercase
$string = 'hello world'; echo strtoupper($string); // result : HELLO WORLD
strpos()
Find the position of the first occurrence of a substring in a string
$string = 'Hello World';
$word = 'llo';
$pos = strpos($string, $word);
if ($pos === false) {
echo "The word was not found in the string";
} else {
echo "The word is found in the string";
}
// result : The word is found in the string
strip_tags()
Strip HTML and PHP tags from a string
$string = '<p>Test paragraph.</p><!-- Comment --> <a href="#fragment">Other text</a>'; echo strip_tags($string); // result : Test paragraph. Other text $string = '<p>Test paragraph.</p><!-- Comment --> <a href="#fragment">Other text</a>'; echo strip_tags($string,'<p>'); // allowable HTML // result : <p>Test paragraph.</p> Other text


![JQuery Functions [wrap-wrapInner-wrapAll-unwrap]](http://pluscss.com/wp-content/uploads/2014/05/265913821198741-150x150.jpg)
![JQuery Functions [html-append-prepend]](http://pluscss.com/wp-content/uploads/2014/05/97413821199241-150x150.jpg)
![Responsive Ajax Contact Form [PHP - JQuery]](http://pluscss.com/wp-content/uploads/2014/05/responsive-ajax-contact-for-150x150.jpg)


