Build template render email and sms - dathalongbay/notes GitHub Wiki
<?php
$searchVal = ["{user}", "{location}", "{gender}"];
$replacSomething = ["hùng", "hà nội", "nam"];
$subjectVal = "{user} địa chỉ {location} giới tính {gender}";
echo str_replace ( $searchVal, $replacSomething, $subjectVal );