Answers for "split string into two parts php"

PHP
51

php split string

<?php
// It doesnt get any better than this Example
$pizza  = "piece1 piece2 piece3 piece4 piece5 piece6";
$pieces = explode(" ", $pizza);
echo $pieces[0]; // piece1
echo $pieces[1]; // piece2
Posted by: Guest on August-05-2020
1

php divide string into parts

$str = explode('=', 'Hello=World');
echo 'str[0] : ' . $str[0] . '<br'>;
echo 'str[1] : ' . $str[1] . '<br'>;

// printout : 
// str[0] : Hello
// str[1] : World
Posted by: Guest on January-02-2022
6

php split string

explode(" ","Geeks for Geeks")
Posted by: Guest on April-02-2020
1

how to split sting in php

<?php
list($user, $pass, $uid, $gid, $extra) =
    split(":", $passwd_line, 5);
?>
Posted by: Guest on October-26-2020

Code answers related to "split string into two parts php"

Browse Popular Code Answers by Language