當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Manager::getPictures方法代碼示例

本文整理匯總了PHP中Manager::getPictures方法的典型用法代碼示例。如果您正苦於以下問題:PHP Manager::getPictures方法的具體用法?PHP Manager::getPictures怎麽用?PHP Manager::getPictures使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Manager的用法示例。


在下文中一共展示了Manager::getPictures方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: Picture

<?php

/**
 * Created by PhpStorm.
 * User: Papangping
 * Date: 8/7/14
 * Time: 4:56 PM
 */
if ($_SERVER['REQUEST_METHOD'] == "POST") {
    Manager::uploadPictures($_FILES['files'], $_GET['type']);
    Helper::reload();
    exit;
}
$pictures = Manager::getPictures($_GET['type']);
?>
<div style="padding: 20px;">
    <form class="form-upload" method="post" enctype="multipart/form-data">
        <h4>Upload New Picture(*ควร upload ทีละไม่เกิน 8Mb)</h4>
        <input type="file" name="files[]" multiple>
        <input type="submit" value="Upload">
        <br />
        <small>อณุญาติให้ upload ได้เฉพาะไฟล์ jpg, jpeg, png เท่านั้น</small>
    </form>
    <div>
        <form method="post" action="?page=delete_picture&type=<?php 
echo $_GET['type'];
?>
">
            <?php 
foreach ($pictures as $key => $picture) {
    ?>
開發者ID:nuiz,項目名稱:petchngam_web,代碼行數:31,代碼來源:gallery.php

示例2:

}
?>
        </div>

        <div class="clearfix"></div>
        <h3 class="title-style1">
            <?php 
echo $text['header3'];
?>
            <span class="title-block"></span>
        </h3>

        <div>

            <?php 
$pictures = Manager::getPictures('room_vip');
foreach ($pictures as $key => $picture) {
    ?>
                <a class="fancybox" rel="gallery3" href="pictures/<?php 
    echo $picture['path'];
    ?>
" alt="">
                    <img src="thumb.php?url=pictures/<?php 
    echo $picture['path'];
    ?>
" alt=""/>
                </a>
            <?php 
}
?>
        </div>
開發者ID:nuiz,項目名稱:petchngam_web,代碼行數:31,代碼來源:room.php

示例3:

            <?php 
}
?>
        </div>

        <div class="clearfix"></div>
        <h3 class="title-style1">
            <?php 
echo $text['header3'];
?>
            <span class="title-block"></span>
        </h3>

        <div>
            <?php 
$pictures = Manager::getPictures('gallery_room');
foreach ($pictures as $key => $picture) {
    ?>
                <a class="fancybox" rel="gallery3" href="pictures/<?php 
    echo $picture['path'];
    ?>
" alt="">
                    <img src="thumb.php?url=pictures/<?php 
    echo $picture['path'];
    ?>
" alt=""/>
                </a>
            <?php 
}
?>
        </div>
開發者ID:nuiz,項目名稱:petchngam_web,代碼行數:31,代碼來源:gallery.php


注:本文中的Manager::getPictures方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。