phpで簡易フォーマット
Tag:php
1 2 3 4 5 6 7 8 |
<?php function my_format($text, $arr){ foreach($arr as $key=>$val){ $text = str_replace('{'.$key.'}', $val, $text); } return $text; } $text = my_format('{name}は{age}歳です。', ['name'=>'佐藤', 'age'=>20]); |