<?phpfunction print5(String $data) { if (strlen($data) > 5) { $data = substr($data, 0, 5); } echo $data;}print5("1234567");//printed "12345"