3v4l.org

run code in 300+ PHP versions simultaneously
<?php $html = '[link href="http://www.google.com" title="Google" target="_blank"]Google[/link] [link href="http://www.google.com" title="Google" target="_blank"]Google[/link]sdfsdfs[link href="http://www.google.com" title="Google" target="_blank"]Google[/link] [link href="http://www.google.com" title="Google" target="_blank"]Google[/link]'; $regex = '#(?:.*?\[link|\G)\K(?:\s+([^=\s]+)=["\'](.*?)["\']|.*?\](.*?)\[/link\])#i'; preg_match_all($regex, $html, $matches, PREG_SET_ORDER); $links = array(); $reset = true; foreach($matches as $match) { if($reset) { $links[] = array( 'params' => array(), 'value' => null ); $reset = false; } end($links); $key = key($links); if(isset($match[3])) { $links[$key]['value'] = $match[3]; $reset = true; } else { $links[$key]['params'][$match[1]] = $match[2]; } } var_dump($links);

preferences:
42.09 ms | 402 KiB | 5 Q