我到处寻找一种简单的方法来做到这一点,但无法正确。在 php 中,我想为变量分配一个名称,然后用变量替换字符串中的名称。斜杠导致语法错误。
//Assign the name to a variable.
$patient_name = "John_Doe";
//Replace the name in this string with the variable.
header("Content-Disposition: attachment; filename=\"John_Doe.pdf\"");