0

I have a new question. I have short code js:

SenAffet += String.fromCharCode(parseInt(YaRabbim.substr(n, 2), 16));

How to convert it to PHP?

cweiske
  • 30,033
  • 14
  • 133
  • 194
Li Seen
  • 11
  • 1

1 Answers1

1

Answer is: $int = intval(substr($link,$n,2),16); $SenAffet .= chr($int);;

Li Seen
  • 11
  • 1