Is it possible to do this?
$objetc -> runAndFinish();
echo "this should not be echoed";
instead of this?
$objetc -> runAndFinish();
exit();
echo "this should not be echoed";
So runAndFinish(); method would somehow end the script processing. Is it possible?
exit();ordie();statement into therunAndFinish()method. Did you even try this before you asked the question?