Call .net function from PHP page.
Posted
by stacker
on Stack Overflow
See other posts from Stack Overflow
or by stacker
Published on 2010-05-26T03:29:49Z
Indexed on
2010/05/26
3:31 UTC
Read the original article
Hit count: 270
I have this function in .net code:
public class StringGenerator
{
public static string GenerateString(string hash)
{
return hash.GetHashCode();
}
}
I want to be able to call this from PHP page. Any idea how?
© Stack Overflow or respective owner