摘要:
第一种情况:查询所有数据库的总大小,方法如下: mysql> use information_schema; mysql> select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data from TABLES; + + | data 阅读全文
摘要:
# su A //指定用户输入你的密码$ ssh-keygen -t rsa -b 4096这里会有一个选项需要注意,建议输入一个密码,这个密码在最后使用密钥登陆时需要输入。Enter passphrase (empty for no passphrase): 会在~/.ssh文件夹里生产一个私钥和 阅读全文
摘要:
class des{ private $key; private $iv; public function __construct($key, $iv='23456789') { $this->key = $key; $this->iv = $iv; } function fixUrlSafeEncode($s... 阅读全文
摘要:
date_default_timezone_set('PRC'); //默认时区 echo "今天:",date("Y-m-d",time())," "; echo "今天:",date("Y-m-d",strtotime("18 june 2008"))," "; echo "昨天:",date("Y-m-d",strtotime("-1 day"))... 阅读全文
摘要:
function dialog(title, msg, callback) { dialog2 = '\ \ \ \ ' + title + '\ ' + msg + '\ \ 确定\ \ ... 阅读全文
摘要:
canRead($filePath)){ $PHPReader = new PHPExcel_Reader_Excel5(); if(!$PHPReader->canRead($filePath)){ echo 'no Excel'; return ; } } $PHPExcel = $PHPReader->load($filePath)... 阅读全文
摘要:
[php] view plain copy print?在CODE上查看代码片派生到我的代码片 阅读全文
摘要:
mac电脑phpstorm快捷键 Cornerstone无法查看log解决办法 Cornerstone无法查看log解决办法 command + o 按类名查找文件 command + shift + o 按文件名查找文件 command + a 全选 command + c 复制 command 阅读全文
摘要:
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN] @="取消SVN关联" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN\command] @="cmd.exe /c ... 阅读全文
摘要:
如何安装screen命令? 除部分精简的系统或者定制的系统大部分都安装了screen命令,如果没有安装,CentOS系统可以执行:yum install screen ; Debian/Ubuntu系统执行:apt-get install screen 。 三、screen命令使用方法? 1、常用的 阅读全文