source: trunk/w/StartProfiler.sample @ 1484

Revision 1484, 648 bytes checked in by Xiping.Wang, 2 years ago (diff)

[trunk]add mediaiwki 1.16.0beta2 , other directories and files

Line 
1<?php
2
3require_once( dirname(__FILE__).'/includes/ProfilerStub.php' );
4
5/**
6 * To use a profiler, copy this file to StartProfiler.php,
7 * delete the PHP line above, and add something like this:
8 *
9 *   require_once(  dirname(__FILE__).'/includes/Profiler.php' );
10 *   $wgProfiler = new Profiler;
11 *
12 * Or for a sampling profiler:
13 *   if ( !mt_rand( 0, 100 ) ) {
14 *       require_once(  dirname(__FILE__).'/includes/Profiler.php' );
15 *       $wgProfiler = new Profiler;
16 *   } else {
17 *       require_once(  dirname(__FILE__).'/includes/ProfilerStub.php' );
18 *   }
19 *
20 * Configuration of the profiler output can be done in LocalSettings.php
21 */
22
23
Note: See TracBrowser for help on using the repository browser.