我需要在 PHP 文档块中使用 splat 运算符,但无法弄清楚如何转义该字符



我正在使用codeception并运行多组示例数据。 我正在发送多个接受标头,其中一个是"*/*"

所以示例代码是:

/**
* My description of the test
*
* GET a/path/i/am/testing
*
* @example ["*/*", 200]
* @example ["application/json", 200]
* @example ["text/html", 200]
*
*/

我尝试过双引号中的单引号,我尝试过单引号中的双引号,我尝试过连接每个部分,我尝试过反斜杠,我尝试过 Unicode。 PHP 认为 splat 正在与文档块对话。我错过了什么?提前感谢!

尝试 {@*} 而不是 */

* @example ["{@*}*", 200]
should be interpreted as
* @example ["*/*", 200]

相关内容

  • 没有找到相关文章

最新更新