PO::trim_quotes( string $s ): string
Contents
Parameters
-
$s
string Required -
Return
string
Source
File: wp-includes/pomo/po.php
.
View all references
public static function trim_quotes( $s ) {
if ( '"' === substr( $s, 0, 1 ) ) {
$s = substr( $s, 1 );
}
if ( '"' === substr( $s, -1, 1 ) ) {
$s = substr( $s, 0, -1 );
}
return $s;
}