Hi! Could we please enable some services and cookies to improve your experience and our website?

PHPize Online / SQLize Online  /  SQLtest Online

A A A
Login    Share code      Blog   FAQ

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

Copy Format Clear

Stuck with a problem? Got Error? Ask AI support!

Copy Clear
Copy Format Clear
<?php $sentence = '#budget 520 #src Google #aff Test'; $pattern = '/#(\w+)\s(.*?)(?=\s#|$)/'; preg_match_all($pattern, $sentence, $matches); $tagInfo = array_combine($matches[1], $matches[2]); $tagInfo = array_map('trim', $tagInfo); print_r($tagInfo);
Copy Clear