Question:Which is correct for displaying the total execution time for your application?
A <?php echo $this->benchmark->elapsed_time(); ?>
B <?php echo $this->benchmark->elapsed_time() ?>
C <?php echo $this->benchmark->elapsedTime(); ?>
D <?php echo $this->load->elapsed_time(); ?>
+ AnswerA
+ Report