Avoid function calls on each iteration of a for
loop.
See #30799. git-svn-id: https://develop.svn.wordpress.org/trunk@31678 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
5b0e3180b4
commit
edf982fcd5
@ -1759,7 +1759,7 @@ function rawurlencode_deep( $value ) {
|
|||||||
*/
|
*/
|
||||||
function antispambot( $email_address, $hex_encoding = 0 ) {
|
function antispambot( $email_address, $hex_encoding = 0 ) {
|
||||||
$email_no_spam_address = '';
|
$email_no_spam_address = '';
|
||||||
for ( $i = 0; $i < strlen( $email_address ); $i++ ) {
|
for ( $i = 0, $len = strlen( $email_address ); $i < $len; $i++ ) {
|
||||||
$j = rand( 0, 1 + $hex_encoding );
|
$j = rand( 0, 1 + $hex_encoding );
|
||||||
if ( $j == 0 ) {
|
if ( $j == 0 ) {
|
||||||
$email_no_spam_address .= '&#' . ord( $email_address[$i] ) . ';';
|
$email_no_spam_address .= '&#' . ord( $email_address[$i] ) . ';';
|
||||||
|
@ -479,7 +479,7 @@ function do_action($tag, $arg = '') {
|
|||||||
$args[] =& $arg[0];
|
$args[] =& $arg[0];
|
||||||
else
|
else
|
||||||
$args[] = $arg;
|
$args[] = $arg;
|
||||||
for ( $a = 2; $a < func_num_args(); $a++ )
|
for ( $a = 2, $num = func_num_args(); $a < $num; $a++ )
|
||||||
$args[] = func_get_arg($a);
|
$args[] = func_get_arg($a);
|
||||||
|
|
||||||
// Sort
|
// Sort
|
||||||
|
Loading…
x
Reference in New Issue
Block a user