PHP Simple DOM パーサーを使用して、特定のページのすべての画像ソースを次のように抽出しています。
// Include the library
include('simple_html_dom.php');
// Retrieve the DOM from a given URL
$html = file_get_html('http://google.com/');
// Retrieve all images and print their SRCs
foreach($html->find('img') as $e)
echo $e->src . '<br>';
Google.com を使用する代わりに、Wordpress の管理 (バックエンド) 領域のページを使用したいと考えています。これらのページは HTML ではなく PHP ページです (ただし、ページ全体に標準の HTML があります)。$html
現在のページを変数として使用するにはどうすればよいですか? ここのPHP初心者。