如何将函数的 return 值作为参数传递给另一个函数?
How can I pass a return value of a Function to another Function as Parameter?
如何将一个 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?
}
方法如下:
<?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();
您可以使用此调用将 return 传递给另一个人:
anotherFunction(myFunction());
你需要声明的另一个函数如下:
function anotherFunction($val) {
// your code here
}
这会将 myFunction 的 return 值传递给 $val 参数。
希望对您有所帮助!
您有 2 个选择:
将您的 return 值保存在参数中,例如
$value = myFunction();
anotherFunction ($value);
anotherFunction ( myFunction() );
如何将一个 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?
}
方法如下:
<?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();
您可以使用此调用将 return 传递给另一个人:
anotherFunction(myFunction());
你需要声明的另一个函数如下:
function anotherFunction($val) {
// your code here
}
这会将 myFunction 的 return 值传递给 $val 参数。
希望对您有所帮助!
您有 2 个选择:
将您的 return 值保存在参数中,例如
$value = myFunction(); anotherFunction ($value);
anotherFunction ( myFunction() );