gpt4 book ai didi

php - 在 PHP-CPP 中将 Php::Object 转换回 C++ 对象?

转载 作者:太空宇宙 更新时间:2023-11-04 13:28:15 25 4
gpt4 key购买 nike

我试图制作一个 Bencode PHP-CPP 的 PHP 扩展,所以有几个类:

class BItem : public Php::Base {
public:
virtual std::string getType() const {
return "BItem";
}
};

class BDict : public BItem {
public:
std::unordered_map<std::string, BItem*> BData;

std::string getType() const {
return "BDict";
}

Php::Value getItem(Php::Parameters &params) {
std::string key = params[0];
...
...
return Php::Object(...);
}

// PHP: $a = new BDict(); $b = new BDict(); $a->addItem($b);
void addItem(Php::Parameters &params) {
std::string key = params[0];

/**
* Here's the part confusing me
* Is there something like:
*/
BItem *toInsert = &params[1]; // However, params[1] is actually a Php::Object
BData.insert({key, toInsert});
}
};

class BStr : public BItem {...};
class BList : public BItem {...};
class BInt : public BItem {...};

除了BItem之外的所有类型都可以插入到BDict中。

因此,在创建其中之一的实例之后,如何将它传回 C++ 部分,将其“转换”回 C++ 对象,最后将其插入到 BData 中?

我是 php 扩展的新手,非常感谢任何帮助或提示。

最佳答案

根据 Emiel's answer

void myFunction(Php::Parameters &params)
{
// store the first parameter in a variable
Php::Value object = params[0];

// we want to be 100% sure that the passed in parameter is indeed one of our own objects
if (!object.instanceOf("MySpecialClass")) throw Php::Exception("Wrong parameter passed");

// cast the PHP object back into a C++ class
MySpecialClass *cppobject = (MySpecialClass *)object.implementation();

// @todo add your own code
}

关于php - 在 PHP-CPP 中将 Php::Object 转换回 C++ 对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32550304/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com