我试图在parse.com PHP中存储指向自定义类的指针。 我爬过互联网并找到了类似的东西:
$storeObj = new ParseObject("_Store");
$storeObj->specials = $store->dataType('pointer',array('_Specials', "$spec_id"));
所有课程都已设置: “_Store”有一列类型指针,名为“specials”。我有一个“_Specials”类,其中“特殊”应该指向。
那我在这里做错了什么? 有没有人有另一种方法可以将指针存储到类中?
干杯,Tomte