想象一下像这样的函数
function mytrim($str,$where)
{
if ($where=="left") return ltrim($str)
if ($where=="right") return rtrim($str)
}
对我来说非常重要的是展示这个功能(右或左)的位置选项
答案 0 :(得分:0)
我发现这样做的最好方法是
/**
* @param string $str
* @param left|right $where
* @return mixed|string
*/
将显示"其中:\ left | \ right"
有更好的方法吗?