摘要:
curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash # 添加到 .bash_profile vim ~/.bash_profile # 添加内容 if [ -f ~/.git-completion.ba... 阅读全文
摘要:
下载 redis redis-3.1.2.tgz sudo tar -xzf redis-3.1.2.tgz cd redis-3.1.2 sudo phpize find / -name php-config sudo ./configure --with-php-config=/usr/bin/ 阅读全文
摘要:
维护了 一个老项目, 没有日志功能, 就给加了这个log4php, 主要是集成进去很简单,使用起来也够用了。 1、下载log4php 2、创建配置文件 3、LOG类 4、使用 阅读全文
摘要:
/** * 数组 转 对象 * * @param array $arr 数组 * @return object */ function array_to_object($arr) { if (gettype($arr) != 'array') { return; } foreach ($arr as $k => $v) { if ... 阅读全文
摘要:
用print_r 将数组打印到txt文件中。 1、function save_log($content='', $file='app') { $logDir = './logs'; $now = date('Y'); $nowDir = $logDir.'/'.$now; if(!is_dir($n 阅读全文
摘要:
结果 使用ajax 获取的数据 console.log()出来 阅读全文
摘要:
$pj = Pj::find()->where($map)->asArray()->one(); if(!empty($pj)) { foreach ($pj as $k=>$v) { $f = iconv('GBK', 'UTF-8', $k... 阅读全文
摘要:
第一步: https://www.microsoft.com/en-us/download/details.aspx?id=20098 下载 如下图 php7 版本 放到 xampp\php\ext 目录下 修改php.ini 加入 extension=php_sqlsrv_7_ts_x86.dll 阅读全文