Sixem

PHP GetBetween Function

May 17th, 2014
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.15 KB | None | 0 0
  1. function GetBetween($string, $start, $end) {
  2.     $get_base = explode($end, $string);
  3.     $get_finish = explode($start, $get_base[0]);
  4.     return $get_finish[1];
  5. }
Advertisement
Add Comment
Please, Sign In to add comment