Как передать значение, возвращаемое одним 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?
}
У вас есть 2 варианта:
сохранить возвращаемое значение в параметре, например
$value = myFunction();
anotherFunction ($value);
anotherFunction ( myFunction() );
Вот как:
<?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 );
<?php
function myFunction(){
$a = "Hello World";
return $a;
}
function anotherFunction($requiredParameter)
{
echo $requiredParameter; //here you will see your parameter.
}function someOtherFunction()
{
anotherFunction(myFunction());
}
someOtherFunction();
Вы можете использовать этот вызов для передачи возврата другому:
anotherFunction(myFunction());
И еще одну функцию, которую вы должны объявить, как показано ниже:
function anotherFunction($val) {
// your code here
}
Это передаст возвращаемое значение myFunction в параметр $ val.
Надеюсь, это поможет вам!