<?php $input = 'https://someurl.com "This is a \"quote\" in the caption"'; list($url, $caption)=(preg_match('~(\S+) "(.+)"~', $input, $out) ? array_slice($out,1) : ['','']); echo "url: $url\ncaption: $caption";
You have javascript disabled. You will not be able to edit any code.