0

現在のページから 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();
}

?>
4

1 に答える 1

2

basenameパスの最後の部分を返します。REQUEST_URIで終わる場合/(のようにhttp://yourdomain.arg/、basenameは空の文字列を返しますがfile_get_html、URIまたはファイル名を期待します。

于 2012-10-16T20:19:42.197 に答える