我在include中有一个php函数,它被调用来创建我的html头。 php包括代码从以下开始。
<?
function makeHead($title, $description, $keywords, $canonical, $author, $headextras, $robots = "index, follow"){
?>
<!DOCTYPE html>
该函数导致我的html文档创建为第1行为空。
我试图删除所有空间。如下面的代码示例,但没有成功
<? function makeHead($title, $description, $keywords, $canonical, $author, $headextras, $robots = "index, follow"){ ?><!DOCTYPE html>
我已经找到了答案,但我只能找到与空白引起的错误有关的文章。我的问题没有生成错误。有人可以告诉我这个空白的html行来自何处?