示例#1
0
 public function testMd5()
 {
     $str = 'abcd';
     $url = new URL();
     $newStr = $url->strMd5($str);
     $this->assertTrue($newStr != null);
     $this->assertEquals($newStr, 'bbcd');
 }