目前我正在以这种方式使用sprintf:
$route = 'text.txt';
$route_r = file_get_contents($route);
sprintf($route_r, $custom_param1, $custom_param_2);
在text.txt中我们发现:
This is a test with param1 = %s and param 2 = %s
它真的很好用,但我想要一些更“友好”的东西,就像这样:
This is a test with param1 = %param1 and param2 = %param2
在这种情况下,它们都是字符串。有没有办法做到这一点?感谢