Answers for "how to print a specific character from a string in php"

PHP
1

print only some characters of a string in php

substr(string,start,length)
Posted by: Guest on July-11-2020
-1

get specific word from string php

$myString = "input/name/something";

$strArray = explode('/',$myString);
$name = $strArray[1];
$something = $strArray[2];
Posted by: Guest on October-26-2020

Code answers related to "how to print a specific character from a string in php"

Browse Popular Code Answers by Language