<?php $layout = 'The [[quick]] brown fox jumped over the [[lazy]] dog'; $data = ['quick' => 'slow', 'lazy' => 'brown']; $search = array_map(function ($s) { return "[[$s]]"; }, array_keys($data)); $replacements = array_values($data); echo str_replace($search, $replacements, $layout);
You have javascript disabled. You will not be able to edit any code.