left()

La funzione left() prende in input una stringa $str e un numero $len e ritorna i primi $len caratteri della stringa $str.

function left($str,$len){
return substr($str, 0, $len);
}

Be the first to comment on "left()"

Leave a comment