Created
March 19, 2015 02:03
-
-
Save mougua/0ab06f5b23e25d5b2cc3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$template = 'abc{def}gh{ijk}lmn'; | |
$data['def']='DEF你妹'; | |
$data['ijk']='IJK壕'; | |
preg_match_all('/(?<=\{)([^\}]*?)(?=\})/' , $template , $arr); | |
foreach ($arr[0] as &$item) { | |
$template= str_replace('{' . $item . '}', $data[$item], $template); | |
} | |
echo $template; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment