修改TP 中转页面

{__NOLAYOUT__}<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=0.5, maximum-scale=2.0, user-scalable=yes" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>跳转提示</title>
    <?php if(request()->isMobile()==true){?>
    <style type="text/css">
    body, h1, h2, p,dl,dd,dt{margin: 0;padding: 0;font: 15px/1.5 微软雅黑,tahoma,arial;}
    body{background:#efefef;}
    h1, h2, h3, h4, h5, h6 {font-size: 100%;cursor:default;}
    ul, ol {list-style: none outside none;}
    a {text-decoration: none;color:#447BC4}
    a:hover {text-decoration: underline;}
    .ip-attack{width:100%; margin:200px auto 0;}
    .ip-attack dl{ background:#fff; padding:30px; border-radius:10px;border: 1px solid #CDCDCD;-webkit-box-shadow: 0 0 8px #CDCDCD;-moz-box-shadow: 0 0 8px #cdcdcd;box-shadow: 0 0 8px #CDCDCD;}
        .ip-attack dt{text-align:center;}
        .ip-attack dd{font-size:16px; color:#333; text-align:center;}
        .tips{text-align:center; font-size:14px; line-height:50px; color:#999;}
    </style>
    <?php }else{ ?>
    <style type="text/css">
        body, h1, h2, p,dl,dd,dt{margin: 0;padding: 0;font: 15px/1.5 微软雅黑,tahoma,arial;}
        body{background:#efefef;}
        h1, h2, h3, h4, h5, h6 {font-size: 100%;cursor:default;}
        ul, ol {list-style: none outside none;}
        a {text-decoration: none;color:#447BC4}
        a:hover {text-decoration: underline;}
        .ip-attack{width:600px; margin:200px auto 0;}
        .ip-attack dl{ background:#fff; padding:30px; border-radius:10px;border: 1px solid #CDCDCD;-webkit-box-shadow: 0 0 8px #CDCDCD;-moz-box-shadow: 0 0 8px #cdcdcd;box-shadow: 0 0 8px #CDCDCD;}
        .ip-attack dt{text-align:center;}
        .ip-attack dd{font-size:16px; color:#333; text-align:center;}
        .tips{text-align:center; font-size:14px; line-height:50px; color:#999;}
    </style>
    <?php }?>

</head>
<body>
<div class="ip-attack"><dl>
        <?php switch ($code) {?>
        <?php case 1:?>
        <dt style="color: green"><?php echo(strip_tags($msg));?></dt>
        <?php break;?>
        <?php case 0:?>
        <dt style="color: red"><?php echo(strip_tags($msg));?></dt>
        <?php break;?>
        <?php } ?>
        <br>
        <dt>
            页面自动 <a id="href" href="<?php echo($url);?>">跳转</a> 等待时间: <b id="wait"><?php echo($wait);?></b>
        </dt></dl>
</div>
<script type="text/javascript">
    (function(){
        var wait = document.getElementById('wait'),
            href = document.getElementById('href').href;
        var interval = setInterval(function(){
            var time = --wait.innerHTML;
            if(time <= 0) {
                location.href = href;
                clearInterval(interval);
            };
        }, 1000);
    })();
</script>
</body>
</html>

文件路径:/thinkphp/tpl/dispathch_jump.html,

页面效果:

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要在TP5中读取并修改Excel文件,你需要使用PHPExcel库。首先,你需要将PHPExcel库添加到你的项目中。你可以将PHPExcel库下载到你的项目中,或者使用composer将其添加到你的项目中。 安装后,在你的控制器中使用以下代码,可以读取Excel文件: ```php use PHPExcel_IOFactory; public function readExcel() { $fileName = 'example.xlsx'; // 文件名 $filePath = '/path/to/your/file/' . $fileName; // 文件路径 $objPHPExcel = PHPExcel_IOFactory::load($filePath); // 加载Excel文件 $sheet = $objPHPExcel->getSheet(0); // 获取第一个工作表 $highestRow = $sheet->getHighestRow(); // 获取最高行数 $highestColumn = $sheet->getHighestColumn(); // 获取最高列数 for ($row = 1; $row <= $highestRow; $row++) { $rowData = $sheet->rangeToArray('A' . $row . ':' . $highestColumn . $row, NULL, TRUE, FALSE); // 读取一行数据 // 对读取的数据进行处理 } } ``` 如果要修改Excel文件,可以使用以下代码: ```php public function writeExcel() { $fileName = 'example.xlsx'; // 文件名 $filePath = '/path/to/your/file/' . $fileName; // 文件路径 $objPHPExcel = PHPExcel_IOFactory::load($filePath); // 加载Excel文件 $sheet = $objPHPExcel->getSheet(0); // 获取第一个工作表 $sheet->setCellValue('A1', 'Hello, world!'); // 修改A1单元格的值 $writer = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); // 创建Excel写入器 $writer->save($filePath); // 保存Excel文件 } ``` 以上代码只是一个简单的例子,你需要根据你的实际情况进行修改。同时,你需要注意Excel文件的格式和编码,以免出现读取或写入错误。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值