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条)

报告相同问题?