Guest User

Untitled

a guest
Feb 18th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2.  
  3. function smartyMerge($string, $array) {
  4. $smarty = new Smarty();
  5. if (is_array($array) && count($array) > 0) {
  6. foreach ($array as $k => $v) {
  7. $smarty->assign($k, $v);
  8. }
  9. }
  10. return $smarty->fetch("eval:$string");
  11. }
Add Comment
Please, Sign In to add comment