Reputation: 77
I’ve been learning some php and SQL, and I’ve hired a freelancer on Upwork to help with a project. He’s been a little sketchy the past few days, and then I get some files like this from him. What kind of php code is this supposed to be? Just seems strange, and nobody I’ve asked seems to know. Thanks!
Upvotes: 0
Views: 67
Reputation: 319
\x is the escape character for a hexadecimal representation, with the two characters following being the hex code.
Take a look at this to see the common escape characters
Upvotes: 1