`
flex_莫冲
  • 浏览: 1091913 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论
文章列表
来自我的博客:http://www.meedee.cn/2016/07/06/%e5%85%8d%e8%b4%b9%e7%9a%84%e6%b1%87%e7%8e%87api/ 1 https://currencylayer.com/ documents:https://currencylayer.com/documentation 免费功能:1个月1000次的api记录,可以使用live,historical,可以传currencies获取指定的货币汇率。 不能使用convert,source,from,to,amout等参数 php实现代码 配置文件 'CURRENCY_API' ...
来自:http://www.meedee.cn/2016/06/07/javascript%e7%9a%84%e5%8f%98%e9%87%8f%e4%b8%8edelete%e6%93%8d%e4%bd%9c%e7%ac%a6/ 参考原文: http://charlee.li/javascript-variables-and-delete-operator.html http://perfectionkills.com/understanding-delete/ 刚刚看到一篇好文(原文链接), 对Jav ...
来自:http://www.meedee.cn/2016/06/21/%e5%b0%86url%e5%8f%82%e6%95%b0%e8%bd%ac%e6%8d%a2%e4%b8%ba%e5%8f%a6%e4%b8%80%e4%b8%aa%e5%8f%82%e6%95%b0%e5%81%9a301%e8%b7%b3%e8%bd%ac%e7%9a%84%e5%ae%9e%e7%8e%b0/ 将URL的某个参数值的改成另一个参数。 例如 http://xxx/Finance/lists?iid=202&sid=26 要改成 http://xxx/Finance/lists?iid=20 ...
TP若使用了 define('APP_DEBUG',false); 會生成./Runtime/~runtime.php 緩存文件,以後每次調用都會用這個文件來處理 但是若一個項目又使用了CLI,CLI生成的./Runtime/~runtime.php 文件跟website是同一個文件,而且cli生成的./Runtime/~runtime.php文件少 ...
参考 : http://www.cnblogs.com/leealways87/archive/2013/04/14/3020840.html 执行sudo git pull 提示 Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. 做以下操作: git config --global user.name davidh ...
winston 是node.js的日志管理工具,但是它的api是按照文件大小来切割文件,而不是按照日期来切割的。如何做到按日期存储日志呢? 参考资料 http://stackoverflow.com/questions/11403953/winston-how-to-rotate-logs https://github.com/winstonjs/winston/issues/10 https://github.com/winstonjs/winston/pull/120/files https://github.com/winstonjs/winston/pull/205
參考:http://stackoverflow.com/questions/6448242/git-push-error-insufficient-permission-for-adding-an-object-to-repository-datab 執行 git fetch,提示 insufficient permission for adding an object to repository database 解決辦法: cd .git/objects ls -al sudo chown -R yourname:yourgroup *
参考:http://www.oschina.net/question/723831_218382 public function t(){ try { throw new \Exception("haha"); }catch (Exception $e){ dump($e); } } 以上catch无法捕捉到,会出现ERROR的页面。因为catch (Exception $e){捕获的是当前module的Exception类,而 ...
redis-cli KEYS "pattern" | xargs redis-cli DEL Redis keys命令支持模式匹配,但是del命令不支持模式匹配,有时候需要根据一定的模式来模糊删除key,这时只能结合shell命令来完成了。 具体命令是: redis-cli KEYS "pattern" | xargs redis-cli DEL 其中pattern是keys命令支持的模式,这样就可以模糊删除key了。服务器上测试删除150万条数据的效率也是很高的。 所有的Redis命令可以在这里找到:http://redis.io/commands ...
来源:http://materliu.github.io/all/web/nodejs/2014/04/16/nodejs_serve_background_run.html nodejs程序后台一直运行 nohup node server.js & 涨姿势: unix/Linux下一般想让某个程序在后台运行,很多都是使用 & 在程序结尾来让程序自动运行。比如我们 ...
上代码 var nodemailer = require('nodemailer'); // create reusable transporter object using SMTP transport var transporter = nodemailer.createTransport({ service: 'Gmail', auth: { user: 'xxx@xxx', pass: 'xxxx' } }); transporter.sendMail({ from: 'xxx', ...
node使用了express4和body-parser来解析php curl的数据,但是获取的req.body是{},设置了header 前提知识: body-parser不支持解析multi/form-data的功能,如果是传递二进制数据或者文件上传,就不能用它了。 Node.js body parsing middleware. This does not handle multipart bodies, due to their complex and typically large nature. For multipart bodies, you may be interest ...
参考http://blog.csdn.net/qmhball/article/details/7499432 建3个表。merge engine的t表是无法打开的提示1168的mysql错误 关键在于,使用merge的表结构必须和unin的表结构一致。他给出的sql中多了个 not null 属性。 CREATE TABLE `t1` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `log` varchar(45) , PRIMARY KEY (`id`) ) ENGINE=MyISAM; CR ...
yaf支持namespace。在php.ini 中添加 yaf.namespace=1 就可以启动namespace 但是如果开了namespace就不能再使用非namespace的写法了。 <?php define('ROOT_PATH', realpath(dirname(dirname(__FILE__)))); define('APPLICATION_PATH', ROOT_PATH . '/application'); header('content-Type:text/html;charset=utf-8;'); $application = new Yaf ...
首先要讓php在cli下支持yaf wamp下打開D:/wamp/bin/php/php5.5.12/php.ini 在extension=php_xsl.dll下面輸入 extension=php_yaf.dll yaf.environ=dev ;yaf.use_namespace=0 然後重啟apache。 在項目目錄下新建一個test的入口文件,/public/indexTest.php <?php define('ROOT_PATH', realpath(dirname(dirname(__FILE__)))); define('APPLICATION_PATH ...
Global site tag (gtag.js) - Google Analytics