var test = String.fromCharCode(112, 108, 97, 105, 110);
document.write(test);
// Output: plain
Is there any PHP Code to work as String.fromCharCode()
of javascript?
var test = String.fromCharCode(112, 108, 97, 105, 110);
document.write(test);
// Output: plain
Is there any PHP Code to work as String.fromCharCode()
of javascript?
Try the chr()
function:
Returns a one-character string containing the character specified by ascii.