Make WordPress Core


Ignore:
Timestamp:
10/18/2020 05:25:10 PM (6 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Replace alias PHP functions with the canonical names.

Using the canonical function name for PHP functions is strongly recommended, as aliases may be deprecated or removed without (much) warning.

This replaces all uses of the following:

  • join() with implode()
  • sizeof() with count()
  • is_writeable() with is_writable()
  • doubleval() with a (float) cast

In part, this is a follow-up to #47746.

Props jrf.
See #50767.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/includes/utils.php

    r49184 r49193  
    2929        }
    3030
    31         return trim( join( "\n", $result ) );
     31        return trim( implode( "\n", $result ) );
    3232}
    3333
     
    276276                $a[] = $k . '="' . $v . '"';
    277277        }
    278         return join( ' ', $a );
     278        return implode( ' ', $a );
    279279}
    280280
     
    333333                }
    334334        }
    335         return join( "\n", $out ) . "\n";
     335        return implode( "\n", $out ) . "\n";
    336336}
    337337
Note: See TracChangeset for help on using the changeset viewer.