私は小さなウェブサイトを開発しており、PHPのinclude()
機能を使用する際にヘッダーを含めることにしています。ただし、インクルードから取り込まれたコードの直前には、この奇妙なページがあります。それはPHPページからを削除するには
<!DOCTYPE html>
<html>
<head>
<title>Things and Stuff | Source Files</title>
<!-- Style Sheets/Scripts/Misc Stuff -->
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/gmod.css">
<link rel="stylesheet" type="text/css" href="css/alerts.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="scripts/cycle.js"></script>
</head>
<body>
<?php include('./utilities/header.php'); ?>
<!-- rest of the page from here down... -->
EDIT W/SOLUTION
が起こっている場所
はここでページのコードだ私は下からの助けのおかげでそれを考え出しました。 私はメモ帳でファイルを開いた+ +を修正するには、それをPHPに設定し、エンコードの下に、選択されたANSI(これはUTF-8のBOM付きでした)が見つかりました!
ヘッダーファイルの内容を表示してください。 – Chris
これはあなたにとって最適です:[http://stackoverflow.com/questions/3255993/how-do-i-remove-%C3%AF-from-the-beginning-of-a-file](http:/ /stackoverflow.com/questions/3255993/how-do-i-remove-%C3%AF-from-the-beginning-of-a-file) – Provie9
ヘッダーファイルにある必要があります – Tonza