[go: up one dir, main page]
More Web Proxy on the site http://driver.im/

タグ

関連タグで絞り込む (2)

タグの絞り込みを解除

c++に関するfernetのブックマーク (1)

  • PHP Extension - PukiWiki

    C++PHP Extension を書く方法 † config.m4 に CC, CXX 変数を設定。 CC=/usr/bin/gcc CXX=/usr/bin/g++ source file の拡張子を .c から .cc もしくは .cpp にする。 source file の include を extern "C" 指定する。 extern "C" { #include "php.h" #include "php_ini.h" #include "ext/standard/info.h" #include "php_helloworld.h" } ↑ ひな型を作成 † 適当な作業ディレクトリに移動して、 PHP Extension を作成するためのひな型を作る。 試しに helloworld を作ってみる。 ~/src/php-5.2.1/ext/ext_skel --ext

  • 1