Changes between Initial Version and Version 3 of Ticket #58206
- Timestamp:
- 04/27/2023 12:44:29 PM (18 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #58206
-
Property
Milestone
changed from
Awaiting Review
to6.3
-
Property
Milestone
changed from
-
Ticket #58206 – Description
initial v3 1 Replace usage of false === strpos or false !== strpos with str_starts_with. It makes the code more readable and use a PHP native function ( which may have a performance benefit ).1 Replace usage of `false === strpos` or `false !== strpos` with `str_contains`. It makes the code more readable and use a PHP native function ( which may have a performance benefit ). 2 2 3 Follow on from #58012 3 Follow on from #58012.