在文档标题中使用 PHP 变量
我正在尝试将 php 变量插入到下面的代码中。当文档下载弹出窗口出现时,它显示 $filename 而不是实际的文件名。我怎样才能做到这一点?
代码:
<?php
header('Content-disposition: attachment; filename=$filename');
header('Content-type: $type');
readfile('$filename');
?>
I am trying to get php variables inserted into the code below. When the document download pop up shows up it shows $filename instead of the actual file name. How can i achieve this?
code:
<?php
header('Content-disposition: attachment; filename=$filename');
header('Content-type: $type');
readfile('$filename');
?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您正在使用单引号。不评估使用单引号的字符串文字内的变量。请改用串联或双引号。
有关 String 类型,请参阅 PHP 手册页。
You're using single quotes. Variables inside string literals using single quotes are not evaluated. Use concatenation or double quotes instead.
See the PHP manual page for the String type.
这里不需要引号,只需使用
You don't need quotes here, just use
使用
"
而不是'
来获取变量的值而不是名称。当您使用"
时,将解析变量(解析数组元素)需要使用 { 和 },但我相信您会在需要时找到它)。Use
"
, not'
, to get variables' values instead of names. When you use"
, variables are parsed (to parse array elements it is required to use { and }, but I'm sure you'll find it out when you will need it).使用双引号:
"
而不是单引号:'
Use double-quotes:
"
instead of single quotes:'
使用
"
引号。PHP 不会替换'
引号内的字符串中的变量。Use
"
quotes. PHP doesn't substitute variables in a string enclosed in'
quotes.