Answers for "explode php for"

PHP
27

php explode

$colors  = "red,blue,green,orange";
$colorsArray = explode(",", $colors);
Posted by: Guest on June-14-2019
2

php explode

$list = "one,two,three";
$sep_char = ",";
// array of all needed items: "one", "two", "three"
$arr = explode($sep_char, $list);
// array of max two items: "one", "two,three"
$arr = explode($sep_char, $list, 2);
Posted by: Guest on February-17-2021
2

explode a number php

$nums = ""; //Declare a variable with empty set.

$nums .= $number; //concatenate the empty string with the integer $number You can also use

$nums = $nums.$number; // this and the expression above do the same thing choose whichever you
                     //like.. This concatenation automatically converts integer to string
$nums[0] is now 4, $nums[1] is now 5, etc..
$length = strlen($nums); // This is the length of your integer.
$target = strlen($nums) -1; // target the last digit in the string;    
$last_digit = $nums[$target]; // This is the value of 5. Last digit in the (now string)
Posted by: Guest on June-20-2020

Browse Popular Code Answers by Language