返回值
(從 about_return 轉述 )
以下方法在管道上具有相同的值
function foo {
$a = "Hello"
return $a
}
function bar {
$a = "Hello"
$a
return
}
function quux {
$a = "Hello"
$a
}
(從 about_return 轉述 )
以下方法在管道上具有相同的值
function foo {
$a = "Hello"
return $a
}
function bar {
$a = "Hello"
$a
return
}
function quux {
$a = "Hello"
$a
}