I would like to make a function in PHP that takes a character and returns the next character, according to the ASCII table.
For example: get 'a' and return 'b'. I know how to do this in C, which would be
char funcao(char C) {
return C++;
}
But this way it does not work in PHP. Does anyone know how to do it?