Answers for "php find specific string"

PHP
0

php find string in string

$pos = strpos("find the position of X in here", "X");
Posted by: Guest on March-16-2021
-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 "php find specific string"

Browse Popular Code Answers by Language