dongqun9403 2011-06-20 13:37
浏览 48
已采纳

PHP匿名函数在某些安装上导致语法错误

I have the following code:

    $file_check_method_func = function($n) {
        $n = absint($n);
        if(1 !== $n) { $n = 0; }
        return $n;
    };
    $valid['file_check_method'] = array_map($file_check_method_func, $input['file_check_method']);

This works on my PHP 5.3.5 installation but when I run this code on a PHP 5.2.15 installation I get:

Parse error: syntax error, unexpected T_FUNCTION in /home/xxxx/public_html/xxxx/xxxxxxx/wp-content/plugins/wordpress-file-monitor-plus/classes/wpfmp.settings.class.php on line 220

Line 220 being the first line of the above code.

So my question(s), is there something wrongly written in my code that would give this error? If not is it because of a bug or not supported feature in PHP 5.2.15? If yes then how can I write the above code so not to generate the error?

The above code is in a function in a class.

  • 写回答

3条回答 默认 最新

  • ds42774 2011-06-20 13:37
    关注

    Anonymous functions is a feature added in 5.3

    For earlier versions, create a named function and refer it by name. Eg.:

    function file_check_method_func($n) {
        $n = absint($n);
        if(1 !== $n) { $n = 0; }
        return $n;
    }
    $valid['file_check_method'] = array_map('file_check_method_func', $input['file_check_method']);
    

    or inside a class:

    class Foo {
      protected function file_check_method_func($n) {
        $n = absint($n);
        if(1 !== $n) { $n = 0; }
        return $n;
      }
      function validate($input) {
        $valid = array();
        $valid['file_check_method'] = array_map(array($this, 'file_check_method_func'), $input['file_check_method']);
        return $valid;
      }
    }
    

    I would strongly suggest not to rely on create_function.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 想问一下树莓派接上显示屏后出现如图所示画面,是什么问题导致的
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号