douwen9343 2014-09-24 06:00
浏览 19
已采纳

PHP定义可以用于带参数的函数

I am writing a script that generates HTML based on what is currently in a database and I prefer to have the HTML be formatted, particularly with tabs to show nesting. I have a simple function to generate some number of tabs:

function addTab($inNum) {
    $out = "";
    for ($i = 0; $i < $inNum; $i++) $out .= "\t";
    return $out;
}

For convenience of reading the PHP, I made this:

$T = "addTab";

So that I could just use $T(5) to say concatenate 5 \t to the string HTML. Personally I find this kind of syntax of pointing to a function by string to be unintuitive and functions that use it require global $T.

Is it possible to use a define() so that something like T(5) could be used within function scope?

  • 写回答

2条回答 默认 最新

  • dongzhenbi8919 2014-09-24 06:04
    关注

    No, you cannot "define a function" in the way you desire.

    Why not use:

    function T($inNum)
    {
        return addTab($inNum);
    }
    

    Then you can just write T(5), as you mentioned.

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

报告相同问题?

悬赏问题

  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料