Monday 21, May 2012
Welcome Guest, Register | Login  
      Home    |    Tutorials    |    Free Ebooks    |    Free Scripts    |    Articles    |    Blog     |    About Us    |    Contact Us

  Reversing a string using php

This code example will reverse the given string using php.
Cut & Paste Script
<?php
$str="Hello";
$rstr="";
$l=strlen($str);// string length
for($n=1; $n<=strlen($str); $n++){
    $rstr=$rstr.substr($str,($l-$n),1);
}

echo "<br><br>Orignal String<br>";
echo $str;

echo "<br><br>Reversed String<br>";
echo $rstr;
?>
 
   
     RELATED SCRIPTS
 
Difference Between two dates using php
This function will return the number of days elapsed between two dates....more »
Category : PHP Examples Hits : 559
   
Exporting data from MySql table to CSV using PHP
Here is a code example for exporting data from MySql table to a CSV File. CSV file format is a file type that stores tabular data usually processed in applications like Microsoft Excel....more »
Category : PHP Examples Hits : 1470
   
Comparing two arrays using php
This code example will take two arrays and compares 2nd array with 1st. It will show the list of elements which are not found in the first array....more »
Category : PHP Examples Hits : 650
   
Email validation using regular expression php
Here is a php script to validate email address. We are using regular expression for validation....more »
Category : PHP Examples Hits : 1010
   
sending email using mail function in php
An example to send email using php mail() function....more »
Category : PHP Examples Hits : 851
   
   
SCRIPT CATEGORIES
 
  C Programs
C Programs scripts
  C++ Programs
C++ Programs scripts
  Java Programs
Java Programs scripts
  JavaScript Examples
JavaScript Examples scripts
  PHP Examples
PHP Examples scripts
  VBScript Examples
VBScript Examples scripts
 
 
 
POPULAR E-BOOKS
 
Download List Building For Beginners  Ebook List Building For Beginners
   
Download Traffic Exchange Secrets  Ebook Traffic Exchange Secrets
   
Download Dotcomology Ebook Dotcomology
   
Download Viral Marketing Secrets Ebook Viral Marketing Secrets
   
Download The Powerful Basics Ebook The Powerful Basics
   
 
Studiesinn.com © 2012 All Rights Reserved.
Website Designed & Developed by TechXprtz