[PHP] pobierz, plaintext <?phpfunction cutCharacter($string, $pos) { $size = strlen($string); if ($pos >= $size) { return $string; } return substr($string, 0, $pos) . substr($string, $pos+1, $size - $pos+1); }?>[PHP] pobierz, plaintext
[PHP] pobierz, plaintext <?php$a ='abc';$a = substr($a,0,-1);echo $a;?>[PHP] pobierz, plaintext