mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
4 lines
84 B
PHP
4 lines
84 B
PHP
|
function remove_char(string $s): string {
|
||
|
return substr($s, 1, strlen($s) - 2);
|
||
|
}
|