Как я могу передать возвращаемое значение функции в другую функцию в качестве параметра?

Как передать значение, возвращаемое одним function другому function,

function myFunction(){
$a = "Hello World";
return $a;
}

function anotherFunction(????){
//how can I call the return value of myFunction() as parameter in this function?
}

0

Решение

У вас есть 2 варианта:

  1. сохранить возвращаемое значение в параметре, например

    $value = myFunction();
    anotherFunction ($value);

  2. anotherFunction ( myFunction() );
1

Другие решения

Вот как:

<?php

function myFunction() {
$a = "Hello World";

return $a;
}

function anotherFunction( $yourvariable ) {
//how can I call the return value of myFunction() as parameter in this function?
}

$myFunction = myFunction();

$anotherFunction = anotherFunction( $myFunction );
1

Демонстрация кода PHP

<?php
function myFunction(){
$a = "Hello World";
return $a;
}

function anotherFunction($requiredParameter)
{
echo $requiredParameter; //here you will see your parameter.
}function someOtherFunction()
{
anotherFunction(myFunction());
}
someOtherFunction();
1

Вы можете использовать этот вызов для передачи возврата другому:

anotherFunction(myFunction());

И еще одну функцию, которую вы должны объявить, как показано ниже:

function anotherFunction($val) {
// your code here
}

Это передаст возвращаемое значение myFunction в параметр $ val.

Надеюсь, это поможет вам!

1
По вопросам рекламы [email protected]