現在のページから href パス (#navbar $pg で終わる href) を抽出しようとしています。
最初の foreach で警告を受け取る:
file_get_contents() [function.file-get-contents]: Filename cannot be empty.
どうすればこれを修正できますか?
<?php
include_once 'path/to/simple_html_dom.php';
$pg = 'c.html';
echo 'Page: ' . $pg . "<br />"; // Correct: c.html
$cpath = $_SERVER['REQUEST_URI'];
echo var_dump($cpath).": Current Path"."<br />"; // Correct: /copyr/index.php
$cfile = basename($cpath);
echo 'Current File: ' . $cfile . "<br />"; // Correct: index.php
$html = file_get_html($cfile);
foreach($html->find(sprintf('#navbar a[href=%s]', $pg)) as $path) { // BROKEN
echo 'Path: ' . $path."<br />";
$tpath = $path."/".$pg;
echo 'Total Path: ' . $tpath;
$html->clear();
}
$html = file_get_html($tpath);
foreach($html->find('#testdiv2') as $ret) {
echo $ret;
$html->clear();
}
?>