擴充你的 PHP 之入門篇

來源:互聯網
上載者:User

擴充你的php

  1. 擴充你的php
  2. 擴充的3種方式
  3. extension dll方式的擴充
  4. 小結

  首先注意,以下所有的一切皆在 win 下進行,使用的工具的 VC++6.0。

擴充你的PHP
  PHP以方便快速的風格迅速在web系統開發中佔有了重要地位. PHP本身提供了豐富的大量的函數及功能. 長話短說. 我們看看我們如何進行擴充.

擴充的3種方式

  • External Modules
  • Built-in Modules
  • The Zend Engine

3 種方式的優缺點可參見 PHP 手冊:http://www.php.net/manual/en/zend.possibilities.php

extension dll

1、首先我們去下個 php 的 source. 可以看到有以下幾個重要的目錄。ext,main,TSRM,Zend,另外我們可能還需要 bindlib_w32(需要你從 cvs 上下),及 PHP 目錄下的 php4ts.lib。

2、開啟 VC,建立一個 Win32 Dynamic-Link Library,如:

3、點 ok,選擇“An Empty Dll Project”,點擊完成。

4、設定 Build 的 Active Configuration,選 Release:)

5、Project->settings

預定義標識. 整個如下:

ZEND_DEBUG=0, COMPILE_DL_BINZY, ZTS=1, ZEND_WIN32, PHP_WIN32, HAVE_BINZY=1

這個是包含路徑,上面所提及的幾個路徑都可以加入。

選擇 Multithreaded DLL。

取名時隨便的,要 link php4ts.lib~~
o,忘了,別忘了加上 /Tc 的參數:

6、寫代碼.

  建個頭,建個身體。
Binzy.h

// Binzy Wu
// 2004-4-9
// PHP Extension

#if HAVE_BINZY
extern zend_module_entry binzy_module_entry;
#define binzy_module_ptr &binzy_module_entry

PHP_FUNCTION(hellobinzy); //
PHP_MINFO_FUNCTION(binzy); //
#endif

Binzy.c

// Binzy Wu
// 2004-4-9
// PHP Extension

#include "php.h"
#include "Binzy.h"

#if HAVE_BINZY

#if COMPILE_DL_BINZY
ZEND_GET_MODULE(binzy)
#endif

function_entry binzy_functions[] = {
PHP_FE(hellobinzy, NULL)
{NULL, NULL, NULL}
};

zend_module_entry binzy_module_entry = {
STANDARD_MODULE_HEADER,
"binzy", binzy_functions, NULL, NULL, NULL, NULL, PHP_MINFO(binzy), NO_VERSION_YET, STANDARD_MODULE_PROPERTIES
};

PHP_MINFO_FUNCTION(binzy)
{
php_info_print_table_start();
php_info_print_table_row(2, "Binzy Extension", "Enable");
php_info_print_table_end();
}

PHP_FUNCTION(hellobinzy)
{
zend_printf("Hello Binzy");
}

#endif

7、編譯,修改 php.ini,restart apache,寫個 php

<?php
hellobinzy();
?>

hoho~~~

phpinfo();

小結
  這算入門篇, 以後再一步步來~~. 慢慢深入, 有些我也不瞭解的。 偶是初學者。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.