变量php中的自调用函数

发布于 2024-12-12 08:32:45 字数 386 浏览 0 评论 0原文

我试图将自调用函数的值返回到我稍后将使用的变量中,但出现以下错误 解析错误:语法错误,意外的 T_FUNCTION,期待 ')'

知道我做错了什么吗?这是这样做的方法吗?这是代码:

$clientText = call_user_func(function(){
    if($lang == 'en'){
    return <<<END
    <p>hello world</p>  
END;
    } else {
             ...
        }
});

谢谢。

更新

刚刚发现我的php版本是5.2。还可以做这样的事情吗?

I am trying to return the value of self calling function into variable that I will use later but get the following error Parse error: syntax error, unexpected T_FUNCTION, expecting ')'

any idea what am i doing wrong? Is it the way to do that? Here is the code:

$clientText = call_user_func(function(){
    if($lang == 'en'){
    return <<<END
    <p>hello world</p>  
END;
    } else {
             ...
        }
});

thank you.

update

Just found that my php version is 5.2. Is it still possible to do something like that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

巨坚强 2024-12-19 08:32:45

在 php 5.2 下:

没有什么可以阻止您定义函数然后调用它。

    function getClientText($lang){
        if($lang == 'en'){
        return <<<END
        <p>hello world</p>  
    END;
        } else {
                 ...
            }
    }
   $clientText = getClientText($lang);

或者只是这样做:

  $clientText =   $lang == 'en' ?  '<p>hello world</p>' : $something_else

Under php 5.2:

Nothing can stop you define the function and then call it.

    function getClientText($lang){
        if($lang == 'en'){
        return <<<END
        <p>hello world</p>  
    END;
        } else {
                 ...
            }
    }
   $clientText = getClientText($lang);

Or just do it:

  $clientText =   $lang == 'en' ?  '<p>hello world</p>' : $something_else
妄司 2024-12-19 08:32:45

在我的 php 上,这是有效的(使用 5.4 alpha 2 进行测试):

$clientText = call_user_func(function($lang)
{

if($lang == 'en')
{
    return <<<END
    <p>hello world</p>  
END;
} else {}

}, 'en');

echo $clientText;

您可能没有 php 5.3,但有 php 5.2

on my php this works (tested with 5.4 alpha 2):

$clientText = call_user_func(function($lang)
{

if($lang == 'en')
{
    return <<<END
    <p>hello world</p>  
END;
} else {}

}, 'en');

echo $clientText;

you probably don't have php 5.3, but php 5.2

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文