Deprecation: #95293 - StringUtility::beginsWith() and StringUtility::endsWith()¶
See forge#95293
Description¶
The helper methods String
and
String
have been marked as deprecated, as the newly
available PHP-built in functions str_
and
str_
can be used instead, which support proper typing and
is faster on PHP 8.0.
For PHP 7.4 installations, the dependency symfony/
adds the
PHP functions in lower PHP environments, which TYPO3 Core ships as dependency
since TYPO3 v10 LTS.
Impact¶
Calling String
or String
will trigger a PHP E_
error.
Affected Installations¶
TYPO3 installations using these TYPO3 API functions - either via extensions or in their own site-specific code. An analysis via TYPO3's extension scanner will show any matches.
Migration¶
Replace all calls of String
with
str_
and String
with str_
to avoid deprecation warnings and to keep your
code up-to-date.
See php.net: str-starts-with and php.net: str-ends-with for further syntax.