Skip to content

Instantly share code, notes, and snippets.

@rbk
Created July 15, 2015 20:25
Show Gist options
  • Save rbk/7b7ad8ccbe8df3c5de9d to your computer and use it in GitHub Desktop.
Save rbk/7b7ad8ccbe8df3c5de9d to your computer and use it in GitHub Desktop.
Rbk ToolKit - Curly brace swap
function rbkCurlySwap($shortcodes,$string) {
foreach( $shortcodes as $key => $value ){
$string = str_replace( '{{'.$key.'}}', $value, $string );
}
return $string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment