-5

いくつかのデータ (確認キー、URL、異なるメッセージなど) を含む 10 個の変数があります。

$confirmation_key = "http://www.example.com/?key=127e9kK";
$web_url = "www.example.com";
$welcome_message = "Hello, welcome to our program!";

$show_now の内容をコードに置き換えさせたいので、一例を書きます。

$show_now = "Hi, thank you for registration, please check url: {confirmation_key}. Best regards {web_url}";

次のように置き換える必要があります。

$show_now = "Hi, thank you for registration, please check url: http://www.example.com/?key=127e9kK. Best regards www.example.com";
4

3 に答える 3

4

実際に $show_now を変更できる場合は、簡単に実行できます。

$show_now = "Hi, thank you for registration, please check url: $confirmation_key. Best regards $web_url";

http://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.double

str_replace を実行する必要がある場合は、他の答えの方が適しています。

于 2013-09-06T21:47:07.240 に答える
0
$show_now = str_replace("\{confirmation_key\}", $confirmation_key, $show_now);
于 2013-09-06T21:46:53.847 に答える