stripQuotes() public static method

Strip quotes.
public static stripQuotes ( string $value ) : string
$value string
return string
Esempio n. 1
0
 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\''));
 }