PHP& SWF - 幻灯片放映不显示

时间:2012-05-10 16:55:28

标签: php flash

我正在尝试显示幻灯片。 slide_auto.php位于 slideS_img 文件夹相同的目录

这是我的slide_auto.php文件:

<?php
$file_dir="slideS_img"; //change this to a folder name
$show_titles=false; //change to false if you don't want to see the captions
$omit_chars=0; //how many characters to cut off the title's front
$link_to_image=false; //do you want to display links?

print '<?xml version="1.0" encoding="iso-8859-1"?>
<slideshow  displayTime="5" 
            transitionSpeed=".7"
            ...more code...
            >';

            $dir=opendir($file_dir);
        $xml_string= array();
            while ($file=readdir($dir))
            {
                if(substr($file, -3) == "jpg" || substr($file, -4) == "jpeg" ){
                $tmp_str = '<image img="'.$file_dir.'/'.$file.'" ';
                if($show_titles){
                    $file_title=substr($file, $omit_chars, strpos($file, ".")-$omit_chars);
                    $tmp_str .= 'caption="'.$file_title.'" ';

                }

                if($link_to_image){
                    $link_title=substr($file, $omit_chars, strpos($file, ".")-$omit_chars);
                    $tmp_str .= 'link="'.$file_dir.'/'.$file.'" target="_blank"';

                }

                    $tmp_str .=" />";
                    array_push($xml_string, $tmp_str);
                }


            }
            sort($xml_string);
            for($i=0; $i<count($xml_string); $i++){
            print $xml_string[$i];
            }
closedir($dir);
print '</slideshow>';
?>

amd my slideshowpage.php:

<?php
require_once('slideshow/slide_auto.php')
?>

<!DOCTYPE>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
</head>

<body>
<div align="center">
<br />
<br />
<br />
<div id="flashcontent">
  This text is replaced by the Flash movie.
</div>

<script type="text/javascript">
   swfobject.embedSWF("slideshow.swf?file=slideshow/slide_auto.php", "gallery", "100%", "100%", "7", "#333333");
   so.write("flashcontent");
</script>
</div>
</body>
</html>

我收到错误说警告:opendir(slideS_img)[function.opendir]:无法打开dir:第62行/[path]/slideshow/slide_auto.php中没有此类文件或目录

有任何帮助吗? 谢谢

2 个答案:

答案 0 :(得分:1)

包含的文件假定您包含它们的文件的工作目录。您的父幻灯片页面脚本位于(比方说)

 /home/sites/example.com/html

将成为幻灯片脚本的工作目录。所以opendir实际上是以

完成的
 /home/sites/example.com/html/slideS_img

而不是

 /home/sites/example.com/html/slideshow/slideS_image

您必须修改您的opendir调用才能使用更具体的目录。

答案 1 :(得分:0)

Marc在他的解决方案中实际上是正确的。如果我可以尝试详细说明一下,当你包含slide_auto.php时,你可以认为发生了以下情况:

  1. PHP从文件slide_auto.php中插入文本,其中包含include命令。
  2. 所以,当$ file_dir =“slideS_img”时;它试图找到slideshowpage.php下的目录,不是slide_auto.php
  3. 此操作失败,因为实际的图像文件夹位于目录幻灯片

    如果你直接(或在Flash应用程序中)调用slide_auto.php,那么它的目录是幻灯片显示,你应该能够获得XML而不会有任何其他错误。