I would like to get the text between "play_url":"
and ","
using PHP's preg_match_all, but those quotes are complicating me and I do not even know the direction it would be for the tracking code, what I currently have is this: p>
$texto: '"play_url":"http:/video.server.com/","'
preg_match_all('/"play_url"(.*?) ","/i', $texto, $link);