摘要:
<?php /** * 单例模式 */ class Site { public $siteName; //静态实例 protected static $instance=null; //禁用构造器 private function __construct($siteName) { $this->si 阅读全文
摘要:
sublime是大多程序员开发所用到的编辑器,很流行。 sublime text3的安装和常用插件的安装 1、百度sublime text3 下载电脑系统相当的版本,然后安装 https://www.sublimetext.com/3 2、再安装 package control 百度package 阅读全文
摘要:
1、确定类型才能进行操作 var message='' message==false (返回true) undefined==null (返回true) 2、其它类型如何转为数据型 Number('') =>0 Number('123')=>123 Number('123php')=>NaN par 阅读全文
摘要:
Sublime Text 3 快捷键精华版 Ctrl+Shift+P:打开命令面板Ctrl+P:搜索项目中的文件Ctrl+G:跳转到第几行Ctrl+W:关闭当前打开文件Ctrl+Shift+W:关闭所有打开文件Ctrl+Shift+V:粘贴并格式化Ctrl+D:选择单词,重复可增加选择下一个相同的单 阅读全文
摘要:
<?php// php phpqrcode 生成二维码 // 下载地址:http://sourceforge.net/projects/phpqrcode/files/latest/download // 只需要包含 phpqrcode.php 文件就可以。 // 一:直接输出 include "p 阅读全文
摘要:
PSR 是 PHP Standard Recommendation 的简写,即PHP推荐标准。 目前通过的规范有 PSR-0(Autoloading Standard)、PSR-1(Basic Coding Standard)、PSR-2(Coding Style Guide)、PSR-3(Logg 阅读全文