String Operations in PHP

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Strings</title>
<style>
h3{
font-size: 25px;
color: lime;
font-size-adjust: true;
text-align: center;
text-shadow: 2px;
}
*{
color: skyblue;
font-size: 15px;
font-family: "Console";

}
</style>
</head>
<body bgcolor="gray">

<h3>String functions</h3>
<hr width="1024px"></hr>
<center>
<pre>
<?php
$str1="Welcome to tutorital of PHP";
$str2="Thanks for Visiting this Page!!";
//String function and their output..
echo "<h4><u> Original String is (i): {$str1} & (ii) is {$str2}.</u></h4>";
?>

<code>strtoupper():</code> <?php echo strtoupper($str1); ?><br />
<code>strtolower():</code> <?php echo strtolower($str1); ?><br />
<code>ucwords():</code> <?php echo ucwords($str1); ?> <br/>
<code>ucfirst():</code> <?php echo ucfirst($str1); ?><br />

/*---------------------------------------------------------*/

<code>strlen():</code> <?php echo strlen($str1); ?><br />
<code>strstr():</code> <?php echo strstr($str1,"to"); ?><br />
<code>strpos():</code> <?php echo strpos($str1,"to"); ?><br />
<code>strchr():</code> <?php echo strchr("$str1","to"); ?><br />
<code>trim():</code> <?php echo trim($str1." ".$str2);?><br />
</pre>
<hr width="1024px"></hr>
&copy; Rajendra Kumar Yadav , Learn PHP - 2015.
</center>
</body>
</html>

The output of the above string operations is in below picture..

stropr
Output of the Above Program under on Chrome

Comments

Popular posts from this blog

PHP function and Keywords used to print on Webpage.

Assignment 1 Question 3 (Server side and Client Side Scripting)

Install the packages in Linux