This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/includes/kohana/modules/userguide/guide/fr-fr/debugging.profiling.md

22 lines
509 B
Markdown
Raw Normal View History

2010-08-21 04:43:03 +00:00
# Profiling
Kohana fournit de façon très facile les statistiques de vos applications:
1. Appels de méthodes [Kohana] communes
2. Requêtes URI
3. Requêtes de [base de données](tutorials.databases)
4. Temps moyen d'execution de votre application
## Affichage/Récupération des statistiques
Vous pouvez afficher ou récupérer les statistiques courantes à tout moment en faisant:
~~~
<div id="kohana-profiler">
<?php echo View::factory('profiler/stats') ?>
</div>
~~~
## Exemple
{{profiler/stats}}