分类 成长之路 中的文章

让 typecho 支持 JSON 输出

让 typecho 支持 JSON 输出,做小程序API接口 <?php if (stripos($this->request->getRequestUri(), 'json')) { $arr = array(); while ($this->next()) { $this->categories = $this->categories[0]; $content = htmlspecialchars_decode($this->content); $content = preg_replace( "@<script(.*?)</script>@is", "", $content ); $content = preg_replace( "@<iframe(.*?)</iframe>@is", "", $content ); $content = preg_replace( "@<style(.*?)</style>@is", "", $content ); $this->content = preg_replace( "@<(.*?)>@is", "", $content ); $a = array('title' => $this->title, 'date' => $this->date->format('F j, Y'), 'content' => $this->content, 'url' => $this->permalink, 'categories' => $this->categories, 'tags' => $this->tags); $arr[] = $a; } $num = count($arr); $this->response->throwJson(array("status" => 1,"num" => $num, "data" => $arr)); } ?>……

阅读全文

Let's Encrypt SSL HTTPS 证书链问题

当前网站证书不可信且证书链长度为1问题 如下在最下面增加SSLCertificateChainFile /www/ssl/yours_ca_bundle.crt SSLEngine On SSLCertificateFile /www/ssl/fullchain.pem SSLCertificateKeyFile /www/ssl/privkey.pem SSLCertificateChainFile /www/ssl/ca_bundle.crt……

阅读全文

Typecho程序伪静态规则大全(包括Linux/Windows)

Typecho程序的伪静态规则不同于wp直接默认可用,需要我们手工加载到空间中才可以生效。下面整理了这款程序在不同的主机环境中的伪静态规则,希望对大家有所帮助。 1、Linux Apache环境(.htaccess): <IfModule mod_rewrite.c> RewriteEngine On # 下面是在根目录,文件夹要修改路径 RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /index.php/$1 [L]……

阅读全文

Apache, IIS,Tomcat,Nginx设置http跳转到https方法

怎么设置http跳转到https?在为网站部署SSL证书后,可以实现https加密访问,但是网站的用户往往习惯了http访问,这个时候我们就需要设置访问http时自动跳转到https。下面收集了几种常见的服务器环境下设置http跳转到https方法,供大家参考: 1、Apache设……

阅读全文

微信小程序UI组件、开发框架、实用库...

UI组件 weui-wxss ★852 - 同微信原生视觉体验一致的基础样式库 Wa-UI ★122 - 针对微信小程序整合的一套UI库 wx-charts ★105 - 微信小程序图表工具 wemark ★85 - 微信小程序Markdown渲染库 WeZRender ★36 - 微信小程序Canvas增强组件 wetoast ★21&n……

阅读全文

PhpStorm支持CI3框架的自动补全!

下载CI框架对应的3个文件到一个文件夹比如AutoHelper,将DB_active_rec.php重命名为DB_query_builder.php https://github.com/topdown/phpStorm-CC-Helpers 在你项目的External Libraries上右键->Configure PHP Include Path 将刚才的AutoHelper文件夹添加到里面并……

阅读全文

最近文章

分类

标签

友情链接

其它