标签: php pecl
当我开发某些函数的PECL扩展时,我可以编写如下的func.def:
string return_hello() string return_name()
string return_hello()
string return_name()
然后,我运行如下命令:
./ext_skel --extname=newextension --proto=func.def
但是当我想为php开发一些扩展类时,我不知道如何编写上面的文件func.def。我没有找到关于此的整本手册。
答案 0 :(得分:0)
看看extSkel,基本用法是:
php extSkel --proto="path/to/file" --extension=extname
定义一个类原型文件,您需要定义一个具有$protoType = 'class';
$protoType = 'class';
examples目录中还有另一个完整示例