PHP
文章平均质量分 80
taft
广交朋友~!
展开
-
Zend变量探索
Zend变量探索 V2.0 taft@wjl.cn 最后更新 2006-1-27 [摘要] 本文介绍了作为PHP语言核心的Zend引擎对处理脚本变量的机制。 写过C、C++或者是java代码肯定清楚,在使用变量的时候必须先定义一个变量,比如整型int、字符型char等等,这样在编译的时候编译器就会自动给变量划分相应的储存空间。先定义(有的还必须初始化)后使用原创 2003-03-31 09:30:00 · 2051 阅读 · 0 评论 -
Q & A with Zend's founders
Andi Gutmans and Zeev Suraski founded the company thats trying to make a business out of PHP -- Zend Technologies Ltd. -- in 1999. In March of this year, their company released the Zend Optimizer, a原创 2005-02-13 13:57:00 · 1437 阅读 · 0 评论 -
Using C++ With PHP
Before We BeginBefore we begin, I should note that the focus of this article will be on the UNIX side of the PHP world. Ill mention a few pointers for Windows development, but since I do most of my原创 2005-02-14 13:02:00 · 5534 阅读 · 0 评论 -
pconnect和connect
永久的数据库连接是指在您的脚本结束运行时不关闭的连接。当收到一个永久连接的请求时。PHP 将检查是否已经存在一个(前面已经开启的)相同的永久连接。如果存在,将直接使用这个连接;如果不存在,则建立一个新的连接。所谓“相同”的连接是指用相同的用户名和密码到相同主机的连接。 对 WEB 服务器的工作和分布负载没有完全理解的读者可能会错误地理解永久连接的作用。特别的,永久连接不会在相同的连接上为您提供原创 2005-02-13 22:42:00 · 1941 阅读 · 0 评论 -
如何编写PHP扩展
如何编写PHP扩展 翻译:taft@wjl.cn Ver 0.1 最后修改日期 2006/1/19 WJL Studio @ wjl.cn 2006 目 录原创 2006-02-10 19:05:00 · 55657 阅读 · 9 评论 -
如何克服php的register_global被关掉
看看以前版本的phpwind代码:unset($_ENV,$HTTP_ENV_VARS,$_REQUEST,$HTTP_POST_VARS,$HTTP_GET_VARS,$HTTP_POST_FILES,$HTTP_COOKIE_VARS);if(!get_magic_quotes_gpc()){ Add_S($_POST); Add_S($_GET); Add_S($原创 2006-10-20 20:50:00 · 3865 阅读 · 0 评论