skip to Main Content

strrchr strtok php not working (extract everything after id=

been on this for 2 hours now ... $string = "https://www.example.com/?id=fsdf29512590125Agajgenaemganheji"; $end = strrchr($string, 'id='); // should return "fsdf29512590125Agajgenaemganheji" echo $end; only returns "i" these work but not in larger url $s = "https://www.example.com/?id=fsdf29512590125Agajgenaemganheji"; $firstPart = strtok( $s, 'id=' );…

VIEW QUESTION
Back To Top
Search