Make WordPress Core


Ignore:
Timestamp:
06/26/2023 10:15:04 AM (22 months ago)
Author:
SergeyBiryukov
Message:

Code Modernization: Use str_contains() in a few more places.

str_contains() was introduced in PHP 8.0 to perform a case-sensitive check indicating if the string to search in (haystack) contains the given substring (needle).

WordPress core includes a polyfill for str_contains() on PHP < 8.0 as of WordPress 5.9.

This commit replaces false !== strpos( ... ) with str_contains() in core files, making the code more readable and consistent, as well as better aligned with modern development practices.

Follow-up to [55988], [56021].

See #58206.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/media.php

    r55990 r56031  
    832832            $rel = '';
    833833
    834             if ( strpos( $attachment['url'], 'attachment_id' ) || get_attachment_link( $send_id ) == $attachment['url'] ) {
     834            if ( str_contains( $attachment['url'], 'attachment_id' ) || get_attachment_link( $send_id ) === $attachment['url'] ) {
    835835                $rel = " rel='attachment wp-att-" . esc_attr( $send_id ) . "'";
    836836            }
     
    13601360        $size  = ! empty( $attachment['image-size'] ) ? $attachment['image-size'] : 'medium';
    13611361        $alt   = ! empty( $attachment['image_alt'] ) ? $attachment['image_alt'] : '';
    1362         $rel   = ( strpos( $url, 'attachment_id' ) || get_attachment_link( $attachment_id ) === $url );
     1362        $rel   = ( str_contains( $url, 'attachment_id' ) || get_attachment_link( $attachment_id ) === $url );
    13631363
    13641364        return get_image_send_to_editor( $attachment_id, $attachment['post_excerpt'], $attachment['post_title'], $align, $url, $rel, $size, $alt );
Note: See TracChangeset for help on using the changeset viewer.