我不知道这是否可能。
我想调用外部页面并如下所示回显。
的index.php
<?php include 'extern/connect.php';
$title = file_get_contents('extern/title.php');
?>
<head>
<title><?php echo $title; ?></title> //here i want to echo also $a from title.php
</head>
Title.php
<?php
$a ="Youtube";
$b ="Facebook";
$c ="Myspace";
$d ="Google";
?>
这可能吗?
感谢您的帮助
答案 0 :(得分:0)
为什么不使用简单的包含?它将放置您的页面内容并对其进行解释(就像您在index.php顶部所做的那样)