drci47425 2012-01-19 15:22 采纳率: 100%
浏览 90
已采纳

如何在php中使用printf格式化数组

I know the printf statement in PHP can format strings as follows:

//my variable 
$car = "BMW X6";

printf("I drive a %s",$car); // prints I drive a BMW X6, 

However, when I try to print an array using printf, there does not seem to be a way to format it. Can anyone help?

  • 写回答

5条回答 默认 最新

  • dongwu9647 2012-01-19 15:25
    关注

    Here's an extract from one of the comments on http://php.net/manual/en/function.printf.php:

    [Editor's Note: Or just use vprintf...]

    If you want to do something like:

    // this doesn't work
    printf('There is a difference between %s and %s', array('good', 'evil'));   
    

    Instead of

    printf('There is a difference between %s and %s', 'good', 'evil'); 
    

    You can use this function:

    function printf_array($format, $arr) 
    { 
        return call_user_func_array('printf', array_merge((array)$format, $arr)); 
    }  
    

    Use it the following way:

    $goodevil = array('good', 'evil'); 
    printf_array('There is a difference between %s and %s', $goodevil); 
    

    And it will print:

    There is a difference between good and evil
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥15 救!ENVI5.6深度学习初始化模型报错怎么办?
  • ¥30 eclipse开启服务后,网页无法打开
  • ¥30 雷达辐射源信号参考模型
  • ¥15 html+css+js如何实现这样子的效果?
  • ¥15 STM32单片机自主设计
  • ¥15 如何在node.js中或者java中给wav格式的音频编码成sil格式呢
  • ¥15 不小心不正规的开发公司导致不给我们y码,
  • ¥15 我的代码无法在vc++中运行呀,错误很多
  • ¥50 求一个win系统下运行的可自动抓取arm64架构deb安装包和其依赖包的软件。
  • ¥60 fail to initialize keyboard hotkeys through kernel.0000000000