我想通过正则表达式和使用以下语法在 extbase 中使用模型属性的验证:
/**
*
*@var string $telephone
*@validate RegularExpression('/^[0-9]+$/')
*/
$protected $telephone;
但我不断收到验证错误,无论 $telephone 变量的值如何。我做错了什么?
我想通过正则表达式和使用以下语法在 extbase 中使用模型属性的验证:
/**
*
*@var string $telephone
*@validate RegularExpression('/^[0-9]+$/')
*/
$protected $telephone;
但我不断收到验证错误,无论 $telephone 变量的值如何。我做错了什么?