22 lines
152 B
PHP
22 lines
152 B
PHP
<?php
|
|
|
|
namespace davina\helpers\call;
|
|
|
|
|
|
/**
|
|
*/
|
|
function convey(
|
|
$x,
|
|
$fs
|
|
)
|
|
{
|
|
$y = $x;
|
|
foreach ($fs as $f)
|
|
{
|
|
$y = ($f)($y);
|
|
}
|
|
return $y;
|
|
}
|
|
|
|
?>
|