Skip to content

Instantly share code, notes, and snippets.

@tobsn
Created March 18, 2016 11:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tobsn/912017463dedd5899004 to your computer and use it in GitHub Desktop.
Save tobsn/912017463dedd5899004 to your computer and use it in GitHub Desktop.
super simple token replace
$G['c2'] = 'bar';
$r='http://google.com/?s1=#c1#&s2=#c2#';
$r=preg_replace('/#([^#]+?)#/sUe','$G{"$1"}',$r);
http://google.com/?s1=&s2=bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment