php 源代码中的三个大括号放在一起
2022-08-30 17:48:35
我刚刚从 php.net 下载了PHP的完整源代码(PHP 5.4.0 [tar.bz2])。他们通常使用三个大括号,如下所示(以下代码片段从 ext/ctype/ctype.c 中提取。
/* {{{ proto bool ctype_digit(mixed c)
Checks for numeric character(s) */
static PHP_FUNCTION(ctype_digit)
{
CTYPE(isdigit);
}
/* }}} */
有没有人知道他们为什么要同时使用这三个大括号?