Make WordPress Core


Ignore:
Timestamp:
10/08/2020 09:13:57 PM (4 years ago)
Author:
SergeyBiryukov
Message:

General: Replace older-style PHP type conversion functions with type casts.

This improves performance, readability, and consistency throughout core.

  • intval()(int)
  • strval()(string)
  • floatval()(float)

Props ayeshrajans.
Fixes #42918.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-http.php

    r48630 r49108  
    753753
    754754        // Cast the Response Code to an int.
    755         $response['code'] = intval( $response['code'] );
     755        $response['code'] = (int) $response['code'];
    756756
    757757        return array(
Note: See TracChangeset for help on using the changeset viewer.