Swoft 框架运行分析(一)

Swoft 是一款基于 Swoole 扩展实现的 PHP 微服务协程框架。 以前一直都是用的原生swoole框架,最近有时间研究了下衍生的Swoft框架。 刚开始看的时候,感觉自己像个原始人,完全看不懂。 ...

2019-08-29 · 2 min · 966 words · Liudon

BCMath 与 科学计数

代码如下 <?php echo 9.99997600 + 2.4E-5; echo "\n===\n"; echo bcadd(9.99997600, 2.4E-5, 8); 结果为 10 === 9.99997600 问了朋友,查了各种资料,终于在PHP手册里发现了这段话。 Caution Passing values of type float to a BCMath function which expects a string as operand may not have the desired effect due to the way PHP converts float values to string, namely that the string may be in exponential notation (which is not supported by BCMath), and that the decimal separator is locale dependent (while BCMath always expects a decimal point). ...

2019-08-16 · 1 min · 168 words · Liudon

Flink Could Not Resolve Resourcemanager Address

什么是Flink。 Apache Flink® - Stateful Computations over Data Streams Flink安装参考(官方文档)[https://ci.apache.org/projects/flink/flink-docs-release-1.7/tutorials/local_setup.html]。 ...

2019-03-28 · 2 min · 517 words · Liudon

解决Sublime Text安装包时"There Are No Packages Available for Installation"的报错

今天安装hugofy的包时,一直遇到"There Are No Packages Available for Installation"的错误。 按网上的教程,配置host,配置代理都不起作用。 ...

2019-01-11 · 1 min · 336 words · Liudon

2019,新开始

从2011年开始写博客,博客程序从WordPress换成Typecho。 早就有想法换成静态博客,一直没时间搞。 2019年了,新年新气象,用hugo + github pages搞了个新博客。 ...

2019-01-09 · 1 min · 250 words · Liudon