您好我正在建立一个来自symfony和doctrine的项目
我正在尝试访问已获取对象中的数据。作为示例,我想要检索$products
对象
$products = $repository->findByPrice($price);
我已尝试$prodcuts[0]
,$prodcuts['pName']
似乎没什么用。一点建议会非常有帮助
答案 0 :(得分:0)
确保命名空间和use语句指向正确的文件,然后:
$product = $this->getDoctrine()->getRepository('bundleName:tableEntity')
->findByPrice($price);
然后你可以进一步使用
echo $product->getPrice();
然后,您可以根据需要处理实例化的对象..