stripQuotes() 공개 정적인 메소드

Strip quotes.
public static stripQuotes ( string $value ) : string
$value string
리턴 string
예제 #1
0
파일: FilterTest.php 프로젝트: jbzoo/utils
 public function tstStripQuotes()
 {
     isSame('qwerty', Filter::stripQuotes('qwerty'));
     isSame('qwerty"', Filter::stripQuotes('qwerty"'));
     isSame('"qwerty', Filter::stripQuotes('"qwerty'));
     isSame('"qwerty"', Filter::stripQuotes('"qwerty"'));
     isSame("qwerty", Filter::stripQuotes('qwerty'));
     isSame("qwerty'", Filter::stripQuotes('qwerty\''));
     isSame("'qwerty", Filter::stripQuotes('\'qwerty'));
     isSame("'qwerty'", Filter::stripQuotes('\'qwerty\''));
     isSame("'qwerty\"", Filter::stripQuotes('\'qwerty"'));
     isSame("\"qwerty'", Filter::stripQuotes('"qwerty\''));
 }