php string split by character code example
Example 1: php foreach string char
$chars = str_split($str);
foreach($chars as $char)
{
}
Example 2: php split string
<?php
$pizza = "piece1 piece2 piece3 piece4 piece5 piece6";
$pieces = explode(" ", $pizza);
echo $pieces[0];
echo $pieces[1];
Example 3: explode in php
$str = 'one two three four';
$numbers4 = explode(' ',$str);
Example 4: split php
$pizza = "piece1 piece2 piece3 piece4 piece5 piece6";
$pieces = explode(" ", $pizza);
echo $pieces[0];
echo $pieces[1];
$keywords = preg_split("/[\s,]+/", "hypertext language, programming");
print_r($keywords);
Array
(
[0] => hypertext
[1] => language
[2] => programming
)
Example 5: character split php
str_split ( string $string [, int $split_length = 1 ] ) : array