Answers for "split a file string into pieces in 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

Code answers related to "split a file string into pieces in php"

Browse Popular Code Answers by Language