Files
doc-fr/reference/xhprof/examples.xml
Pascal MARTIN 21dcbfa1d7 Reviewed FR Translation of reference/xhprof
git-svn-id: https://svn.php.net/repository/phpdoc/fr/trunk@326434 c90b9560-bf6c-de11-be94-00142212c4b1
2012-07-03 18:54:53 +00:00

69 lines
1.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: 991e1abe02858003596f9ee586c2bd1edf58457c Maintainer: yannick Status: ready -->
<!-- Reviewed: yes Maintainer: pmartin -->
<chapter xml:id="xhprof.examples" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
&reftitle.examples;
<example>
<title>Exemple avec Xhprof et la GUI optionnelle</title>
<para>
Cet exemple démarre et stoppe le profilage, puis utilise
l'interface GUI fournie pour sauvegarder et analyser les
résultats. En d'autres termes, le code de l'extension en elle-même
s'arrête après l'appel à la fonction
<function>xhprof_disable</function>.
</para>
<programlisting role="php">
<![CDATA[
<?php
xhprof_enable(XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY);
for ($i = 0; $i <= 1000; $i++) {
$a = $i * $i;
}
$xhprof_data = xhprof_disable();
$XHPROF_ROOT = "/tools/xhprof/";
include_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_lib.php";
include_once $XHPROF_ROOT . "/xhprof_lib/utils/xhprof_runs.php";
$xhprof_runs = new XHProfRuns_Default();
$run_id = $xhprof_runs->save_run($xhprof_data, "xhprof_testing");
echo "http://localhost/xhprof/xhprof_html/index.php?run={$run_id}&source=xhprof_testing\n";
?>
]]>
</programlisting>
&example.outputs.similar;
<screen>
<![CDATA[
http://localhost/xhprof/xhprof_html/index.php?run=t11_4bdf44d21121f&source=xhprof_testing
]]>
</screen>
</example>
</chapter>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->