<?php $string = "Cadena a recortar"; $string = substr ($string, 0, - 1); echo $string; // esto muestra "Cadena a recorta" ?>