我有一个页面function.php,并在另一个页面view.php中调用了此函数,但该函数未正确调用 这是function.php代码
<?php
function head1()
{
global $title;
<html xmlns="http://www.w3.org/1999/xhtml">
<header>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="style.css" />
<title>WhiteFlower| florida web design</title>
</header>
}
head1();
?>
第二个php文件
<?php
include "function.php";
head1();
?>
这是另一个文件view.php的代码 我是php的新手,所以我无法理解它如何正常工作
答案 0 :(得分:0)