問題はfile _ get _ contents("body.html")
、と同じフォルダーにあるクラスでメソッドを使用することbody.html
です。問題は、ファイルが見つからないというエラーが表示されることです。これは、別のクラスの私がメソッドを使用するファイルを必要としていてfile _ get _ contents("body.html")
、突然 "../body/body.html" をファイルパスとして使用する必要があるためです..!
それは少し奇妙ではありませんか?メソッドを呼び出すクラスはfile _ get _ contents("body.html")
と同じフォルダにありますbody.html
が、このクラスは別の場所にある別のクラスから必要とされているため、新しいファイルパスが必要ですか?!
ディレクトリとファイルの短いリストを次に示します。
lib/main/main.php
lib/body/body.php
lib/body/body.html
これは body.php です:
class Body {
public function getOutput(){
return file_get_contents("body.html");
}
}
これは main.php です:
require '../body/body.php';
class Main {
private $title;
private $body;
function __construct() {
$this->body = new Body();
}
public function setTitle($title) {
$this->title = $title;
}
public function getOutput(){
//prints html with the body and other stuff..
}
}
$class = new Main();
$class->setTitle("Tittel");
echo $class->getOutput();
私が求めているのbody.php
は、同じフォルダーにあるエラーの修正ですが、別のクラスがメソッドの別の場所からbody.html
要求するときにパスを変更する必要がありますbody.php
file _ get _ contents("body.html")
ありがとう!