[Solved] How can i extracted the information after / [closed]


use php explode

 $estimate="123456/5";
 print_r (explode("https://stackoverflow.com/",$estimate));
 $arr=explode("https://stackoverflow.com/",$estimate);
 echo $arr[1];

5

solved How can i extracted the information after / [closed]