---
title: "Breaking: #82893 - Remove global variable PARSETIME_START"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-82893"
source: "Changelog/9.0/Breaking-82893-RemoveGlobalVariablePARSETIME_START.rst"
typo3-version: "9.0"
typo3-major: 9
type: "breaking"
issue: 82893
forge: "https://forge.typo3.org/issues/82893"
tags: ["Frontend", "PHP-API", "FullyScanned"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Breaking: #82893 - Remove global variable PARSETIME_START {#breaking-82893}

See [forge#82893](https://forge.typo3.org/issues/82893)

## Description {#description}

The global variable `$GLOBALS['PARSETIME_START']` can be removed, as it has been superseded by
`$GLOBALS['TYPO3_MISC']['microtime_start']` for a long time already.

## Impact {#impact}

The variable is not available any more. If it is used it must be replaced (see Migration).

## Affected Installations {#affected-installations}

Installations that use the global variable `$GLOBALS['PARSETIME_START']`.

## Migration {#migration}

Use `round($GLOBALS['TYPO3_MISC']['microtime_start'] * 1000)` if you need the same value as
`$GLOBALS['PARSETIME_START']` previously contained.
