Subscribe For Free Updates!

We'll not spam mate! We promise.

Showing posts with label String. Show all posts
Showing posts with label String. Show all posts

May 10, 2013

php to remove last two characters from string



php remove last two characters from string

 The following code is used to remove character from the last of the string. here "substr()" function is used.
this function is used to get substring from original string.

<?php
echo substr('abcdef', 1);     // bcdef
echo substr('abcdef', 1, 3);  // bcd
echo substr('abcdef', 0, 4);  // abcd
echo substr('abcdef', 0, 8);  // abcdef
echo substr('abcdef', -1, 1); // f

// Accessing single characters in a string
// can also be achieved using "square brackets"
$string = 'abcdef';
echo $string[0];                 // a
echo $string[3];                 // d
echo $string[strlen($string)-1]; // f

?>