gpt4 book ai didi

php - 是好是坏?为 PHP 带来 "Function Chaining"功能

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:58:47 27 4
gpt4 key购买 nike

<分区>

因此,我在想一种可以将方法链接引入具有内置全局函数的 PHP 的方法是从 F#“借用”|>(管道)运算符。它会将左侧的结果通过管道传递给右侧函数的第一个参数。当然,PHP 将不得不重新审视其某些函数的参数顺序。

这将允许你写:

function StrManip($val) {  
return str_repeat(strtolower(trim($val)),2);
}

像这样:

function StrManip($val) {  
return $val |> trim() |> strtolower() |> str_repeat(2);
}

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com