<?php
// Last id form database
$stringLastid = 'prot000001';
// Split string and number
$numberLastid = substr($stringLastid, 4);
// Convert string number to integer
$insertid = intval($numberLastid);
// Zero-padded integer
$stringInsertid = 'port' . sprintf("%06d", $insertid);
// Show new string insert id
echo $stringInsertid;
?>