duandaoji3992 2014-07-23 16:15
浏览 27
已采纳

如何在其他不同的函数中使用相同的变量但具有不同的值?

I need to use the same variables from a given function, in other different functions but with different variable values for each function in part.

In the following example I want to use some image parameters like "width", "height" and "alt" so that each image used in different functions have different parameters. Here's what I mean (pseudo codes):

function my_image_with_parameters() {

    if first_function() { // pseudo if statement
        $width  = '350';
        $height = '165';
        $alt    = 'Some alt';

    } elseif second_function() { // pseudo elseif statement
        $width  = '600';
        $height = '400';
        $alt    = 'Another alt';
    }

    return '<img src="http://someurl.com/image.png" width="' .$width . '" height="' .$height . '" alt="' .$alt . '" />';

}

function first_function() {

    echo my_image_with_parameters();

}

function second_function() {

    echo my_image_with_parameters();

}
  • 写回答

3条回答 默认 最新

  • dtio35880438 2014-07-23 16:25
    关注

    You want:

    function my_image_with_parameters($width, $height, $alt)
    {
        return '<img src="http://someurl.com/image.png" width="' .$width . '" height="' .$height . '" alt="' .$alt . '" />';
    }
    
    my_image_with_parameters(350, 165, 'alt');
    my_image_with_parameters(600, 400, 'other alt');
    

    Functions can take arguments. You pass the arguments when you call the function. The arguments can vary with each function call.

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

报告相同问题?

悬赏问题

  • ¥15 目详情-五一模拟赛详情页
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line