PHP 7.2 函数 create_function() 已弃用

问题描述 投票:0回答:6

我在下面的应用程序中使用了

create_function()

$callbacks[$delimiter] = create_function('$matches', "return '$delimiter' . strtolower(\$matches[1]);");

但是对于 PHP 7.2.0,

create_function()
已弃用。

如何为 PHP 7.2.0 重写上面的代码?

php closures anonymous-function
6个回答
112
投票

您应该能够使用 Anonymous Function(又名闭包)调用父作用域

$delimiter
变量,如下所示:

$callbacks[$delimiter] = function($matches) use ($delimiter) {
    return $delimiter . strtolower($matches[1]);
};

98
投票

我想贡献一个我在 Wordpress 主题中发现的非常简单的案例,并且似乎可以正常工作:

具有以下add_filter声明:

add_filter( 'option_page_capability_' . ot_options_id(), create_function( '$caps', "return '$caps';" ), 999 );

替换为:

add_filter( 'option_page_capability_' . ot_options_id(), function($caps) {return $caps;},999);

我们可以看到 function() 的用法,非常典型的函数创建而不是一个已弃用的 create_function() 来创建函数。


8
投票

自动升级

如果有人需要将代码中的数十个

create_function()
案例升级为匿名函数,我会使用一个名为 Rector 的工具。

它遍历代码并将

create_function
替换为匿名函数1:1。它在 30 个不同的案例上进行了测试.

安装

composer require rector/rector --dev

设置

假设您想升级

/src
目录中的代码。

# rector.php
<?php

use Rector\Core\Configuration\Option;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use Rector\Php72\Rector\FuncCall\CreateFunctionToAnonymousFunctionRector;

return static function (ContainerConfigurator $containerConfigurator) {
    $parameters = $containerConfigurator->parameters();
    $parameters->set(Option::PATHS, [
        __DIR__ . '/src',
    ]);

    $services = $containerConfigurator->services();
    $services->set(CreateFunctionToAnonymousFunctionRector::class);
};

运行你的代码

# this is set run, it only report what it would change
vendor/bin/rector process --config rector.php --dry-run

# this actually changes the code
vendor/bin/rector process --config rector.php

# the "rector.php" config is loaded by default, so we can drop it
vendor/bin/rector process

编辑: 2020-10-31 更新为 PHP Rector 0.8.x 语法


2
投票

自 PHP 7.4 起,您可以使用 Arrow 函数

$callbacks[$delimiter] = fn($matches) => $delimiter . strtolower($matches[1]);

箭头函数比匿名函数更短,并且使用父作用域——所以你可以引用 $delimiter 而不传入它。


0
投票

这个匿名函数数组对我有用,请参见下面的代码:

// This will be a dynamic name that could 
// be used as a function like "namespace".
$dynamic_name = 'my_dynamic_name';

// Here's some variables that you could use in the scope of
// your dynamic anonymous functions. 
$outerVariable = 'If I need this varible, I can use it';
$outerVariableTwo = 'If I need this varible, I can use it too!';

// Create an array that we can later use and turn into 
// and associative array with our new dynamic anonymous functions.
$dynamicAnonFunctions = [];

// Create the first dynamic function.
$dynamicAnonFunctions[($dynamic_name."_func_one")] = function () use ($outerVariable, $dynamic_name) { 
    echo 'Running: function <b>'.$dynamic_name .'_func_one()</b>';
    echo '<br><br>';
    echo $outerVariable;
    echo '<br><br>';
    echo 'This works :)'; 
    echo '<br><br>';
};

// Create the second dynamic function 
$dynamicAnonFunctions[($dynamic_name."_func_two")] = function () use ($outerVariableTwo, $dynamic_name) { 
    echo '- - - - - - - - - - - - - - - - - - - ';
    echo '<br><br>';
    echo 'Running: function <b>'.$dynamic_name .'_func_two()</b>';
    echo '<br><br>';
    echo $outerVariableTwo;
    echo '<br><br>';
    echo 'This also works :)!'; 
    echo '<br><br>';
};

// Call the functions.
$dynamicAnonFunctions[($dynamic_name."_func_one")]();
$dynamicAnonFunctions[($dynamic_name."_func_two")]();

// Halt execution.
exit();

只需将其复制到您的脚本文件中,您将看到

echo
语句的输出,然后只需将函数重新映射到您自己的意愿即可!

快乐编码=)


-1
投票

匿名函数解决方案有效,但如果要返回的表达式在字符串中,我认为应该使用

eval

$callbacks[$delimiter] = eval('return function($matches){return '.$delimiter.' . strtolower($matches[1]);};');
© www.soinside.com 2019 - 2024. All rights reserved.