Supersized - 从PHP中的多级数组中读取特定值

时间:2013-11-21 17:42:09

标签: javascript php arrays slideshow

我有一个JavaScript幻灯片,可以从文件夹中读取图片,我需要从.dat文件中读取每张图片的说明。 这是脚本:

    <?php

    require ('macoola.inc');
    $upload = new images_upload('installations/', 3000000, 'info.dat');
    $photo_list = $upload->read_data(); #this gets unserialized values from info.dat

#read all jpegs in the folder
    $path_userspecific_array = explode(";", $_SESSION['userDirs']);
    $images_splice = null;
    settype($images_splice, "array");
    foreach($path_userspecific_array as $thisdir){ 
    $thispath = ('installations/' . $thisdir);
    $thisimages = null;
    $thisimages = glob($thispath.'/{*.jpg,*.JPG,*.jpeg,*.JPEG}', GLOB_BRACE);
    $images_splice = array_merge($images_splice, $thisimages);
    }
    ?>

然后是java:

 {
    image: '<?php
    echo $filename ?>',
    title: '<?php   
    **#show description here**
    ?>',
thumb : '<?php                                                                      echo $filename                                                                          ?>'
                                                                 }

提前谢谢。

1 个答案:

答案 0 :(得分:0)

我终于解决了这个问题!解决方案极其容易。 我没有使用其他脚本来读取文件夹中的图像,而是直接从.dat文件中提取图片和描述的链接,如下面的代码所示:

<?php

require ('macoola.inc');
$upload = new images_upload('url/', 3000000, 'info.dat');
$photo_list = $upload->read_data();
$photo_url = "url/";

?>

然后使用foreach函数打印我需要的字符串以放入Supersized中的“幻灯片”字段:

<?php                                            
foreach ($photo_list as $key=>$val){
$input .= " image: '".$photo_url.$key."', title: '".$val['desc']."', thumb : '',";
?> 
                                                        { <?php echo $input; ?> },
<?php } ?>