PHP5.5整合了zend opcache,但是5.4以下的需要自己安装。介绍一下开启opcache方法,环境为wamp(php5.4.16)下载dll文件把php_opcache.dll放进php/ext目录配置php.inizend_extension = "c:/wamp/bin/php/ph...
分类:
Web程序 时间:
2014-12-12 14:48:40
阅读次数:
454
开闭原则的描述是:Software entities (classes, modules, functions, etc.) should be open for extension but closed for modification.软件实体(类,模块,方法等等)应当对扩展开放,对修改关闭,即...
分类:
其他好文 时间:
2014-12-12 11:30:18
阅读次数:
235
tags: iOS 8,Swift,App Groups随着 iOS 8 的发布,苹果为广大开发者很多新的 API,其中最突出显著的就非 App Extension 莫属了。这为开发者们又带来了很多机会。而我们在开发 App Extension 的时候,基本大多数人都会遇到这样一个问题。就是由于 A...
分类:
移动开发 时间:
2014-12-11 22:20:35
阅读次数:
327
http://hotfixv4.microsoft.com/Windows%207/Windows%20Server2008%20R2%20SP1/sp2/Fix373886/7600/free/435093_intl_x64_zip.exe 在处理下面问题时,会起到一定作用。
#import "UIBarButtonItem+Extension.h"@implementation UIBarButtonItem (Extension)+(UIBarButtonItem *)itemWithImageName:(NSString *)ImageName highImageN...
分类:
其他好文 时间:
2014-12-11 01:30:20
阅读次数:
261
打开 Tools\Extension Manager(工具\扩展管理器)。点联机库。搜索“visual studio color theme editor”,就能看到一个名为“visual studio color theme editor”的扩展,下载安装好这个扩展,重新启动 Visual Stu...
分类:
其他好文 时间:
2014-12-10 16:04:39
阅读次数:
148
在之前的三篇文章中,我们还算简明扼要的学习了asp.net的整个生命周期,我们知道了一个Request进来以后先去ISAPI Filter,发现是asp.net程序后又ASPNET_ISAPI.dll这个ISAPI Extension来进行处理。在ASPNT_ISAPI创建了Worder Proce...
分类:
Web程序 时间:
2014-12-10 10:29:18
阅读次数:
386
1.开启soap支持,在php.ini中去除extension=php_soap.dll之前的‘;’2.掉用页面<?phpheader(‘Content-Type:text/html;charset=UTF-8‘);$client=newSoapClient(‘http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx?WSDL‘);$parm=array(‘mobileCode‘=>‘13782..
分类:
Web程序 时间:
2014-12-09 19:51:28
阅读次数:
161
原文:php利用SoapClient调用webservices1.开启soap支持,在php.ini中去除extension=php_soap.dll之前的‘;’2.掉用页面'13782149159','userID'=>'');$result=$client->getMobileCodeInfo(...
分类:
Web程序 时间:
2014-12-09 19:25:20
阅读次数:
253
第一部分:主要是php.ini的配置
1.
; On windows:
extension_dir = "D:/wamp/php/ext"
表示指定PHP扩展包的具体目录,以便调用相应的DLL文件。
2.
由于默认PHP并不支持自动连接Mysql,需开启相应的扩展库功能,比如php_mysql.dll等,即将
...
分类:
Web程序 时间:
2014-12-09 15:44:54
阅读次数:
188