码迷,mamicode.com
首页 > 数据库 > 详细

拿取保存在数据库中的多张图片

时间:2018-12-19 11:10:38      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:循环   HERE   color   request   认证   asp   view   银行   dna   

1.数据库保存图片的格式

url以英文,分割

2.explode()把字符串打散为数组

语法:w3school

explode(separator,string,limit)

ex.
<?php
$str = '1,2,3,4'; 
//缺省limit
print_r(explode(',',$str)); //Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 )
// 零 limit
print_r(explode(',',$str,0)); //Array ( [0] => 1,2,3,4)
// 正的 limit
print_r(explode(',',$str,2)); //Array ( [0] => 1[1] => 2,3,4)
// 负的 limit
print_r(explode(',',$str,-1)); //Array ( [0] => 1[1] => 2[2] => 3)
?>

3.sql

技术分享图片

4.思路

//controller将数据库图片分割成数组
$img = explode(",", $photo->certimg); 
//view遍历循环取出
<?php foreach($img as $v){?>
    <span><img width="150px" src="<?=$v?>"/></span>
<?php }?>

5.Controller END

    //查看个人认证
    public function actionLookauthper()
    {
        $uid=Yii::$app->request->get('uid');
        $per = IbdEbqAuthper::find()->where(['uid'=>$uid])->one();
        $photo = IbdEbqAuthper::find()->where(['uid'=>$uid])->one();
        $img ="";
        if($photo) {
            $img = explode(",", $photo->certimg);
        }
        return $this->render("lookauthper", ['com' => $per,'img' => $img]);
    }

6.view END

<script type="text/javascript" charset="utf-8" src="/common/lib/jquery.form.min.js"></script>

<div style="background-color: #FFFFFF">
    <div class="col-md-12" style="max-height: 1600px;min-height: 550px">
        <div id="main" style="display: block;">
            <div class="form-group">
                <label>银行卡卡号</label>
                <input type="text" class="form-control" name="username"
                       value="<?= !empty($com['cardno']) ? $com['cardno'] : '' ?>"/>
            </div>

            <div class="form-group">
                <label>银行卡收款人</label>
                <input type="text" class="form-control" name="username"
                       value="<?= !empty($com['cardname']) ? $com['cardname'] : '' ?>"/>
            </div>
            <div class="form-group">
                <label>银行卡预留手机号</label>
                <input class="form-control" name="shop_name" maxlength="30"
                       value="<?= !empty($com['cardphoneno']) ? $com['cardphoneno']: '' ?>"/>
            </div>
            <div class="form-group">
                <label>身份证号</label>
                <input type="text" class="form-control" name="username"
                       value="<?= !empty($com['certno']) ? $com['certno'] : '' ?>"/>
            </div>

            <div id="outerdiv" style="position:fixed;top:0;left:0;background:rgba(0,0,0,0.7);z-index:2;width:100%;height:100%;display:none;">
                <div id="innerdiv" style="position:absolute;">
                    <img id="bigimg" style="border:5px solid #fff;" src="" />
                </div>
            </div>

            <div class="form-group">
                <label>身份证图片</label><br/>
                <?php if(!empty($img[0])){?>
                    <?php foreach($img as $v){?>
                        <span><img width="150px" src="<?=$v?>" class="pimg"/></span>
                    <?php }?>
                <?php }?>
            </div>

            <div class="form-group">
                <label>邮件</label>
                <input type="text" class="form-control" name="username"
                       value="<?= !empty($com['email']) ? $com['email'] : '' ?>"/>
            </div>

            <div class="form-group">
                <label>认证状态</label>
                <?php if ($com['status']== 0) { ?>
                    未认证
                <?php } else if ($com['status']== 1){
                    echo '已认证';
                } else if ($com['status']== 2){
                    echo '驳回';
                } ?>
            </div>
        </div>
    </div>
</div>

<script>
    $(function(){
        $(".pimg").click(function(){
            var _this = $(this);//将当前的pimg元素作为_this传入函数
            imgShow("#outerdiv", "#innerdiv", "#bigimg", _this);
        });
    });

    function imgShow(outerdiv, innerdiv, bigimg, _this){
        var src = _this.attr("src");//获取当前点击的pimg元素中的src属性
        $(bigimg).attr("src", src);//设置#bigimg元素的src属性

        /*获取当前点击图片的真实大小,并显示弹出层及大图*/
        $("<img/>").attr("src", src).load(function(){
            var windowW = $(window).width();//获取当前窗口宽度
            var windowH = $(window).height();//获取当前窗口高度
            var realWidth = this.width;//获取图片真实宽度
            var realHeight = this.height;//获取图片真实高度
            var imgWidth, imgHeight;
            var scale = 0.8;//缩放尺寸,当图片真实宽度和高度大于窗口宽度和高度时进行缩放

            if(realHeight>windowH*scale) {//判断图片高度
                imgHeight = windowH*scale;//如大于窗口高度,图片高度进行缩放
                imgWidth = imgHeight/realHeight*realWidth;//等比例缩放宽度
                if(imgWidth>windowW*scale) {//如宽度扔大于窗口宽度
                    imgWidth = windowW*scale;//再对宽度进行缩放
                }
            } else if(realWidth>windowW*scale) {//如图片高度合适,判断图片宽度
                imgWidth = windowW*scale;//如大于窗口宽度,图片宽度进行缩放
                imgHeight = imgWidth/realWidth*realHeight;//等比例缩放高度
            } else {//如果图片真实高度和宽度都符合要求,高宽不变
                imgWidth = realWidth;
                imgHeight = realHeight;
            }
            $(bigimg).css("width",imgWidth);//以最终的宽度对图片缩放

            var w = (windowW-imgWidth)/2;//计算图片与窗口左边距
            var h = (windowH-imgHeight)/2;//计算图片与窗口上边距
            $(innerdiv).css({"top":h, "left":w});//设置#innerdiv的top和left属性
            $(outerdiv).fadeIn("fast");//淡入显示#outerdiv及.pimg
        });

        $(outerdiv).click(function(){//再次点击淡出消失弹出层
            $(this).fadeOut("fast");
        });
    }
</script>

7.jquery点击放大整理

<div id="outerdiv" style="position:fixed;top:0;left:0;background:rgba(0,0,0,0.7);z-index:2;width:100%;height:100%;display:none;">
    <div id="innerdiv" style="position:absolute;">
        <img id="bigimg" style="border:5px solid #fff;" src="" />
    </div>
</div>

<div class="form-group">
    <label>身份证图片</label><br/>
        <?php if(!empty($img[0])){?>
            <?php foreach($img as $v){?>
                <span><img width="150px" src="<?=$v?>" class="pimg"/></span>
            <?php }?>
        <?php }?>
</div>

<script>
    $(function(){
        $(".pimg").click(function(){
            var _this = $(this);//将当前的pimg元素作为_this传入函数
            imgShow("#outerdiv", "#innerdiv", "#bigimg", _this);
        });
    });

    function imgShow(outerdiv, innerdiv, bigimg, _this){
        var src = _this.attr("src");//获取当前点击的pimg元素中的src属性
        $(bigimg).attr("src", src);//设置#bigimg元素的src属性

        /*获取当前点击图片的真实大小,并显示弹出层及大图*/
        $("<img/>").attr("src", src).load(function(){
            var windowW = $(window).width();//获取当前窗口宽度
            var windowH = $(window).height();//获取当前窗口高度
            var realWidth = this.width;//获取图片真实宽度
            var realHeight = this.height;//获取图片真实高度
            var imgWidth, imgHeight;
            var scale = 0.8;//缩放尺寸,当图片真实宽度和高度大于窗口宽度和高度时进行缩放

            if(realHeight>windowH*scale) {//判断图片高度
                imgHeight = windowH*scale;//如大于窗口高度,图片高度进行缩放
                imgWidth = imgHeight/realHeight*realWidth;//等比例缩放宽度
                if(imgWidth>windowW*scale) {//如宽度扔大于窗口宽度
                    imgWidth = windowW*scale;//再对宽度进行缩放
                }
            } else if(realWidth>windowW*scale) {//如图片高度合适,判断图片宽度
                imgWidth = windowW*scale;//如大于窗口宽度,图片宽度进行缩放
                imgHeight = imgWidth/realWidth*realHeight;//等比例缩放高度
            } else {//如果图片真实高度和宽度都符合要求,高宽不变
                imgWidth = realWidth;
                imgHeight = realHeight;
            }
            $(bigimg).css("width",imgWidth);//以最终的宽度对图片缩放

            var w = (windowW-imgWidth)/2;//计算图片与窗口左边距
            var h = (windowH-imgHeight)/2;//计算图片与窗口上边距
            $(innerdiv).css({"top":h, "left":w});//设置#innerdiv的top和left属性
            $(outerdiv).fadeIn("fast");//淡入显示#outerdiv及.pimg
        });

        $(outerdiv).click(function(){//再次点击淡出消失弹出层
            $(this).fadeOut("fast");
        });
    }
</script>

1$(".pimg") jquery选择class="pimg"
2.attr() jquery属性操作
3.css() jquery css操作
4.fadeIn() jquery使用淡入效果来显示被选元素,假如该元素是隐藏的
5.fadeOut() jquery 使用淡出效果来隐藏被选元素,假如该元素是隐藏的
6position css规定元素的定位类型 position:fixed生成绝对定位的元素,相对于浏览器窗口进行定位。
7display css定义建立布局时元素生成的显示框类型 none:隐藏,border:显示
8border 设置所有的边框属性
9z-index 设置元素的堆叠顺序。拥有更高堆叠顺序的元素总是会处于堆叠顺序较低的元素的前面

拿取保存在数据库中的多张图片

标签:循环   HERE   color   request   认证   asp   view   银行   dna   

原文地址:https://www.cnblogs.com/agegg/p/10141600.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!