PHP: bu çıkış gibi bir komut dosyası () bitirmek mümkün ama bir php sınıf / nesnenin içinden

0 Cevap php

Bunu yapmak mümkün mü?

$objetc -> runAndFinish();

echo "this should not be echoed";

bunun yerine?

$objetc -> runAndFinish();

exit();

echo "this should not be echoed";

So runAndFinish(); method would somehow end the script processing. Is it possible?

0 Cevap