PHP DOCS - 如何显示选项

时间:2014-10-18 12:02:34

标签: php function select options phpdoc

想象一下像这样的函数

function mytrim($str,$where)
{
     if ($where=="left")  return ltrim($str)
     if ($where=="right") return rtrim($str)

}

对我来说非常重要的是展示这个功能(右或左)的位置选项

1 个答案:

答案 0 :(得分:0)

我发现这样做的最好方法是

/**
 * @param string $str
 * @param left|right $where
 * @return mixed|string
 */
  

将显示"其中:\ left | \ right"

有更好的方法吗?