dongmei8071 2014-11-04 16:22
浏览 42
已采纳

带参数的PHP vsprintf

I have the following class:

<?php 
    class L {
        const login = 'Login';
        const title_404 = '404';
        const title_dyn = 'Title: %s';
        const page_dyn = 'Page: %s - %s';

        public static function __callStatic($string, $args) {
           vsprintf(constant("self::" . $string), $args);
        }
    }

It won't replace %s by passed arguments:

    L::login; --> Login
    L::title_404; --> 404
    L::title_dyn('test'); --> empty
    L::page_dyn('test', 'more'); --> empty
    L::login(); --> empty

I should get with L::title_dyn('test'); --> "Title: test"

What I'm doing wrong?

  • 写回答

1条回答 默认 最新

  • dsklzerpx64815631 2014-11-05 02:49
    关注

    Presumably your full testcase is something like this:

    <?php 
    class L {
        const login = 'Login';
        const title_404 = '404';
        const title_dyn = 'Title: %s';
        const page_dyn = 'Page: %s - %s';
    
        public static function __callStatic($string, $args) {
           vsprintf(constant("self::" . $string), $args);
        }
    }
    
    echo L::login . "
    ";                    // "Login"
    echo L::title_404 . "
    ";                // "404"
    echo L::title_dyn('test') . "
    ";        // (empty)
    echo L::page_dyn('test', 'more') . "
    "; // (empty)
    echo L::login() . "
    ";                  // (empty)
    

    (next time, write this in the question please)

    The first two work because you're not using function-call syntax, so the constants are echo'd as-is.

    The latter three are empty because, although __callStatic does its work, it then completely discards that work: you never return the result of vsprintf. Recall that vsprintf does not output anything — it returns its result. You also did not write any echo in there. So, there is no value for your calling code to use, and no output from within the function itself. Presto, just as your problem says.

    You almost certainly want to do this:

        public static function __callStatic($string, $args) {
           return vsprintf(constant("self::" . $string), $args);
        }
    

    Live demos: broken, working

    展开全部

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部