Syntax
newrelic_get_browser_timing_header([bool $include_tags])Returns a snippet to inject in the head of your HTML output.
Description
Returns a JavaScript string to inject in the <head> of your HTML output. Use this call with newrelic_get_browser_timing_footer to manually add browser monitoring to a webpage. If possible, New Relic recommends instead enabling browser monitoring via the New Relic UI or copy/pasting the JavaScript snippet. For instructions on using these options, see browser monitoring and PHP.
ヒント
Compare newrelic_disable_autorum, which disables the browser script on a page.
Parameters
| Parameter | Description | 
|---|---|
| 
 bool | Optional. Defaults to  If  | 
Return values
Returns the browser agent's JavaScript header string.
Examples
Instrument a webpage
function example(){    if (extension_loaded('newrelic')) { // Ensure PHP agent is available        $newrelic_header = newrelic_get_browser_timing_header();    }        // Output to page    if (extension_loaded('newrelic')) { // Ensure PHP agent is available        $newrelic_footer = newrelic_get_browser_timing_footer();    }}