摘要:
快捷键:ctrl+shift+f 或者 编辑->查找->在路径中查找 在按快捷键:ctrl+shift+r 阅读全文
摘要:
坑 大坑 字符串多的时候 需要分割去加减密 网上基本上帖子都是 117 128 然后就提示标题报错了 解决方法 $key_len = openssl_pkey_get_details($pri_key)['bits']; $part_len = $key_len / 8; 计算出实际分割的长度 原文 阅读全文
摘要:
var setting = { check: { enable: true, chkboxType:{"Y" : "s", "N" : "s" } }, data: { simpleData: { enable: true } }, callback: { beforeClick: beforeCl 阅读全文
摘要:
<?php class Csv_export { function render($filename,$title,$data=[]){ ob_end_clean(); header("Content-Type: application/force-download"); header("Conte 阅读全文
摘要:
use PhpOffice\PhpSpreadsheet\Spreadsheet; use PhpOffice\PhpSpreadsheet\Cell\DataType; static function export($filename,$title,$data){ $spreadsheet = n 阅读全文
摘要:
WPS能正常打开 office word 打开失败 代码中修改导出文件后缀为【.doc】就能正常打开 阅读全文
摘要:
如果每个colspan > 1 的时候 应该是没问题 如果colspan=1的时候会导致错位 检查表头代码发现colspan=1 在去检查表格内容代码发现会把 合并的头 td也显示出来 解决方案: 在lay-data里面合并的数据里面增加一个 [,colGroup:true]参数,版本测试2.5.6 阅读全文
摘要:
<?php $content = "测试: 测试 测试。 测试 测试 测试"; $content = json_encode($content); ?> <script> var content = '<?=$content?>'; content = JSON.parse(content); co 阅读全文
摘要:
<?php /** * 上传文件类 * Class UploadFile * 使用方法 * $this->load->library('uploadfile',['path','jpg,png,pdf','2','file']); * $this->uploadfile->upload(); * 数 阅读全文
摘要:
通过PHP抓取页面在显示出来 <?php$url = 'http://www.baidu.com'; $content = file_get_contents($url); $content = str_replace('/static/',$url .'/static/',$content); $ 阅读全文