用 C# 评估 php 或 asp 代码,可能吗?
你好 我正在编写与 mysql 数据库交互的 ac# 命令行应用程序。我在数据库上读到一些文本,可能是 php 代码或 asp 代码。有什么方法可以在 C# 中评估或解释此代码吗?前任:
static void Main(string[] args)
{
String phpcode="$test='THIS IS A TEST';return $test";
String res=EVAL(phpcode);//or aspcode or some other not compiled language
Console.WriteLine(res);
//res="THIS IS A TEST";
}
hello
I am writing a c# comand line application which interacts with mysql db. I read some text on the db that may be php code or asp code. Is there any way to eval or interpretate this code inside c#? Ex:
static void Main(string[] args)
{
String phpcode="$test='THIS IS A TEST';return $test";
String res=EVAL(phpcode);//or aspcode or some other not compiled language
Console.WriteLine(res);
//res="THIS IS A TEST";
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般来说,没有。
然而,大多数语言都有可用的口译员。
例如,您可以使用
Process.Start
运行PHP.exe
。In general, no.
However, most languages have interpreters available.
For example, you can run
PHP.exe
usingProcess.Start
.