次のような単純な php ページを取得しました。
<?php
include 'config.php';
include 'lib.php';
header("Content-type: text/html; charset=UTF-8");
?>
<html>
<head>
<title>view states</title>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<script type="text/javascript" src="jquery-1.8.2.min.js"></script>
</head>
<body>
<div id="container">
WTF?
</div>
</body>
</html>
lib.php に以下のコードがある場合、dom には頭と体だけが含まれます。タイトルがなくなり、div コンテナーがなくなり、「wtf?」というテキストがなくなりました。また。
どうしたの?
class State {
$id;
$ip;
$state;
$date;
$played;
function __construct($id, $ip, $state, $date, $played) {
$this->$id = $id;
$this->$ip = $ip;
$this->$state = $$state;
$this->$date = $date;
$this->$played = $played;
}
}