Pergunta

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?

Foi útil?

Solução

THis should work:

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

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top