我想尝试一下你可以在这里找到的例子:http://php.net/manual/en/function.include.php, 但我似乎无法使其发挥作用。
在第一个文件index1.php中,我把它放在:
<?php
$color = 'green';
$fruit = 'apple';
?>
在第二个文件index2.php中,我把它放在:
<?php
include("http://www.domain.com/mypathtothefile/index2.php");
echo "A $color $fruit";
?>
它应该回应'一个青苹果',但它没有回音。 路径是正确的,因为当我将echo部分放在第一个文件(index1.php)中时,它会回显'a geen apple',在index1.php中都是index2.php。
希望有人可以提供帮助。 提前谢谢!
答案 0 :(得分:2)
不应该只是:
include('index1.php');
修改:已更正以反映文件名。