用 C# 评估 php 或 asp 代码,可能吗?

发布于 2024-10-20 01:46:12 字数 350 浏览 1 评论 0原文

你好 我正在编写与 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

百思不得你姐 2024-10-27 01:46:12

一般来说,没有。

然而,大多数语言都有可用的口译员。

例如,您可以使用 Process.Start 运行 PHP.exe

In general, no.

However, most languages have interpreters available.

For example, you can run PHP.exe using Process.Start.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文