Example 1: substr() php
<?php
echo substr('abcdef', 1);
echo substr('abcdef', 1, 3);
echo substr('abcdef', 0, 4);
echo substr('abcdef', 0, 8);
echo substr('abcdef', -1, 1);
$string = 'abcdef';
echo $string[0];
echo $string[3];
echo $string[strlen($string)-1];
?>
//substr() function returns certain bits of a string
Example 2: take 10 character from string using php
$return_string = substr("Hi i am returning first 10 characters.", 0, 10);
Output:
"Hi i am re"
Example 3: php array slice
$array = array(1,2,3,4,5,6);
print_r(array_slice($array, 2));
print_r(array_slice($array, -2));
print_r(array_slice($array, 2, 3));
print_r(array_slice($array, 2, -3));
Example 4: print only some characters of a string in php
substr(string,start,length)
Example 5: slice array php
array_slice() function is used to get selected part of an array.
Syntax:
array_slice(array, start, length, preserve)
*preserve = false (default)
If we put preserve=true then the key of value are same as original array.
Example (without preserve):
<?php
$a=array("red","green","blue","yellow","brown");
print_r(array_slice($a,1,2));
?>
Output:
Array ( [0] => green [1] => blue )
Example (with preserve):
<?php
$a=array("red","green","blue","yellow","brown");
print_r(array_slice($a,1,2,true));
?>
Output:
Array ( [1] => green [2] => blue )