一、PHP中this,self,parent的区别之一this篇 面向对象编程(OOP,Object OrientedProgramming)现已经成为编程人员的一项基本技能。利用OOP的思想进行PHP的高级编程,对于提高PHP编程能力和规划web开发构架都是很有意义的。 PHP5经过……
阅读全文
himawari.js - 从Himawari-8卫星下载地球的实时图片 项目地址: https://github.com/jakiestfu/himawari.js……
阅读全文
CI CodeIgniter框架library内部怎么加载其他类? 在A类里调用B类,则在A类class上面加上如下代码即可。 $CI =& get_instance(); $CI->load->library('B');……
阅读全文
基于《让 typecho 支持 JSON 输出》这篇文章把首页,文章页,独立页面做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)); } ?>……
阅读全文
当前网站证书不可信且证书链长度为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程序的伪静态规则不同于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]……
阅读全文
LNMP LNMP一键安装包是一个用Linux Shell编写的可以为CentOS/RadHat/Fedora、Debian/Ubuntu/Raspbian/Deepin VPS或独立主机安装LNMP(Nginx/MySQL/PHP)、LNMPA(Nginx/MySQL/PHP/Apache……
阅读全文
怎么设置http跳转到https?在为网站部署SSL证书后,可以实现https加密访问,但是网站的用户往往习惯了http访问,这个时候我们就需要设置访问http时自动跳转到https。下面收集了几种常见的服务器环境下设置http跳转到https方法,供大家参考: 1、Apache设……
阅读全文