Pregunta

Currently I am doing this

$product = myProductCalss::myproduct($id);
$product = $product->myproduct;

is there another slick way to do this so that I can kinda do it in one liner?

¿Fue útil?

Solución

THis should work:

$product = myProductCalss::myproduct($id)->myproduct;

Your question doesn`t belong here, check https://codereview.stackexchange.com/questions/tagged/php

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top