php(function.php)文件功能在另一个文件中的调用

时间:2018-07-14 07:53:43

标签: php

我有一个页面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的新手,所以我无法理解它如何正常工作

1 个答案:

答案 0 :(得分:0)

此页面显示错误,因为您的函数有错误,您应该回显html或返回它们,例如您在php块中编写的html 您的代码 <?php     函数head1()     {       全球$ title;            <标题>                WhiteFlower |佛罗里达网页设计          } ?> 用这个替换 <?php     函数head1()     {       全球$ title;     回声'       <标题>                WhiteFlower |佛罗里达网页设计     ';     } ?> 请让我知道您的错误是否已解决,并附上错误快照,我们会找出答案