freeValidate(); $this->validate->addColumn('phone')->regex('/^1\d{10}$/'); $bool = $this->validate->validate(['phone' => '18959261286']); $this->assertTrue($bool); } /* * 默认错误信息 */ public function testDefaultErrorMsgCase() { $this->freeValidate(); $this->validate->addColumn('phone')->regex('/^1\d{10}$/'); $bool = $this->validate->validate(['phone' => '1895926128s']); $this->assertFalse($bool); $this->assertEquals('phone不符合指定规则', $this->validate->getError()->__toString()); } /* * 自定义错误信息 */ public function testCustomErrorMsgCase() { $this->freeValidate(); $this->validate->addColumn('phone')->regex('/^1\d{10}$/', '手机号码格式不对'); $bool = $this->validate->validate(['phone' => '1895926128s']); $this->assertFalse($bool); $this->assertEquals('手机号码格式不对', $this->validate->getError()->__toString()); } }