Skip to content
Snippets Groups Projects
Commit efca6e7c authored by Benni Mack's avatar Benni Mack Committed by Christian Kuhn
Browse files

[TASK] Use native str_starts_with() PHP method

One of our main utility methods "GeneralUtility::isFirstPartOfStr"
can now replaced by PHP's native "str_starts_with()" function
(see https://www.php.net/manual/en/function.str-starts-with.php)
which is also available for PHP 7.4 thanks to Symfony's polyfill
package.

This way, we can
a) slim down our own code base in favor of native PHP calls
b) add a bit of performance due to native PHP calls
c) move towards type-safety to ensure that we hand over strings
to these methods, as our own method was a bit more "lax" on things

Resolves: #95257
Releases: master
Change-Id: I70617ab4419849353a72a10dfed31a2d96f58072
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/70444


Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent 2602225d
No related merge requests found
Showing
with 154 additions and 106 deletions
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment