I want to use the following method on the server and put it in a PHP script. What does it looks like in PHP?
public string Update(string data)
{
return data.Aggregate("", (c, a) => c + (char)(a - 1));
}
I want to use the following method on the server and put it in a PHP script. What does it looks like in PHP?
public string Update(string data)
{
return data.Aggregate("", (c, a) => c + (char)(a - 1));
}