我当前的代码如下。
<?php
header('Content-Type: image/png');
header('Content-Disposition: attachment; filename="Skin"');
echo file_get_contents("http://domain.tld/script/skins/' . $_GET["m"] . '.png");
?>
我知道问题出在...
(' . $_GET["m"] . ')
...但是如何解决呢?
我收到以下错误。
解析错误:语法错误,意外的 '"',期待 T_STRING 或 T_VARIABLE 或 T_NUM_STRING 在 ...