我想通过GET从外部HTML网站加载内容。
PHP:
<?php
$content = file_get_contents('template/' . $_GET['l'] . "/" + $_GET['n'] . ".html");
?>
所以我想打电话给这个页面:(页面根目录)/template/html/1.html
现在,如果我通过在URL中添加参数(file.php?l = html&amp; n = 1)来实现,我什么也没有显示。这是为什么?
答案 0 :(得分:1)
使用.
代替+
进行连接。