Using VBA programming languag. (continue reading…)
Author Archive
PHP PowerPoint 2007
Project providing a set of classes for the PHP programming language, which allow you to write to and read from different file formats, like PowerPoint 2007, … This project is built around Microsoft’s OpenXML standard and PHP.
Checkout the Features this class set provides, such as setting presentation meta data (author, title, description, …), adding slides, adding images to your presentation and much, much more!
Want to bookmark this page? Please use http://www.phppowerpoint.net as the URL.
Initial version developed by Maarten Balliauw, RealDolmen.
http://phppowerpoint.codeplex.com
Python模块zipfile
Python ZipFile模块用来做zip格式编码的压缩和解压缩的,由于是很常见的zip格式,所以这个模块使用频率也是比较高的,在这里对ZipFile的使用方法做一些记录。即方便自己也方便别人。
ZipFile里有两个非常重要的class, 分别是ZipFile和ZipInfo, 在绝大多数的情况下,我们只需要使用这两个class就可以了。ZipFile是主要的类,用来创建和读取zip文件而ZipInfo是存储的zip文件的每个文件的信息的。 (continue reading…)
开启Nginx的目录文件列表功能
打开nginx.conf文件,在location server 或 http段中加入
autoindex on; (continue reading…)
nginx支持.htaccess
在需要添加伪静态的虚拟主机的server{}中引入.htaccess文件,如图所示:

include /var/www/html/168pc/bbs/.htaccess;(把这个改成你.htaccess文件的具体位置) (continue reading…)
TYPO3 Services
With a services extension you can extend the functionality of TYPO3 (or an extension which uses services), without any changes to the original code of TYPO3 or the extension.
Services are PHP classes inside of an extension similar to FE-plugins. Usually when you use a class, you address it directly by creating an instance: (continue reading…)
网站压力测试工具webbench
webbench最多可以模拟3万个并发连接去测试网站的负载能力,个人感觉要比Apache自带的ab压力测试工具好,安装使用也特别方便。 (continue reading…)