Hello,
I have the following function:
function capturar($string, $start, $end) {
$str = explode($start, $string);
$str = explode($end, $str[1]);
return $str[0];
}
I use it with cURL, to get the value of an input.
Example u...
asked by
07.01.2017 / 21:35