how to split string in php code example
Example 1: php split string along spaces
$pizza = "piece1 piece2 piece3 piece4 piece5 piece6";
$pieces = explode(" ", $pizza);
echo $pieces[0];
echo $pieces[1];
Example 2: php split string
<?php
$pizza = "piece1 piece2 piece3 piece4 piece5 piece6";
$pieces = explode(" ", $pizza);
echo $pieces[0];
echo $pieces[1];
Example 3: php split string
explode(" ","Geeks for Geeks")
Example 4: php split string from end
You can use this following function
function str_rsplit($string, $length)
{
if ( !$length ) { return false; }
if ( $length > 0 ) { return str_split($string,$length); }
$l = strlen($string);
$length = min(-$length,$l);
$mod = $l % $length;
if ( !$mod ) { return str_split($string,$length); }
return array_merge(array(substr($string,0,$mod)), str_split(substr($string,$mod),$length));
}
$str = '123456789';
str_split($str,5);
str_rsplit($str,5);
str_rsplit($str,-7);
Example 5: explode a number php
$nums = "";
$nums .= $number;
$nums = $nums.$number;
$nums[0] is now 4, $nums[1] is now 5, etc..
$length = strlen($nums);
$target = strlen($nums) -1;
$last_digit = $nums[$target];