摘要:
直接看下面的注释中针对每一个文件的作用说明。 <?php /** * BrowserKit - Make internal requests to your application. * * If you need to make requests to external sites and app 阅读全文
摘要:
Task1: A binary gap within a positive integer N is any maximal sequence of consecutive zeros that is surrounded by ones at both ends in the binary rep 阅读全文
摘要:
早期,一个web程序通过cgi方式提供数据处理,编写cgi程序可以用不同的语言。 这个过程是,我们生成一个服务端可执行程序,处理 web server 传过来的请求,(设置header头)然后返回数据。 PHP1是典型的cgi程序(https://github.com/farwish/php1),m 阅读全文
摘要:
在PHP的OOP中我们有常见两种方法调用,对象调用和静态调用。 下面是一个简单的测试来比较它们的细微差异。 /** * 对象初始化 -> 调用;objectCall.php * * 测试调用50W次. * * @farwish */ class Test { public $a; public fu 阅读全文