I) (bir işlev şey içinde şu var:
if ($cod == 1000)
{
$message = 'Some Message';
return $message;
}
Daha sonra, bu işlevi çağırır:
try
{
$comandoController->someThing();
}
Ben tarayıcıda "Bazı Mesaj" görmeyi bekliyordum. Ama ben istemiyorum.
Not: echo "hello" koşullu içi gibi echo şey, bunu görebilirsiniz. Bu nedenle bu durum böyledir.
Yerine $comandoController->someThing(); should biz aşağıdakileri yapın:
$result = $comandoController->someThing();
echo $result;