リモートserver.Iからすべてのファイルを一覧表示することが可能ですが、そのPHPサーバー.IはserverTwo.com/dirOneにそのaTomcatサーバーにアクセスしたい、serverOne.comでこのコードを実行しています。phpのリモートサーバからのdirへのアクセス?
$path = "http://www.serverTwo.com/dirOne"; if ($handle = opendir($widget_path)) { while (false !== ($widgetfile = readdir($handle))) { if ($widgetfile != "." && $widgetfile != "..") { echo $widgetfile; } } closedir($handle); }