I have this function in ASP and need to convert to PHP
DATA:
cod = "01A" ou cod = "01B" ou cod = "01C"
titulo = "Novidade"
FUNCTION:
letra = right(cod,1)
str = array("A","B","C")
for i = lBound(str) to ubound(str)
if (instr(1,letra,str(i),vbtextcompare) <> 0) then
titulo = titulo & "-" & i+2
end if
next
RESULT:
se cod="01A" então titulo = "Novidade-1"
se cod="01B" então titulo = "Novidade-2"
se cod="01C" então titulo = "Novidade-3"
Thank you all for the help