Table of Contents
回复讨论(解决方案)
Home Backend Development PHP Tutorial PHP如何调用C#编写的程序

PHP如何调用C#编写的程序

Jun 23, 2016 pm 01:34 PM

实际场景是:已经具有的是一个用 C# 编写的比较复杂的程序(非 Web 程序,实现了一些算法),现在有个 PHP 网站,我需要将这个 C# 应用程序嵌入到 PHP 网页中使用。搜了很多结果,都说编译成 dll 后供 PHP 调用,但是 web 应用需要兼容Linux 和 Windows 系统,如果用 dll,linux下好像不可以吧。求问大神们还有什么更好的方法吗,跪谢~


回复讨论(解决方案)

能被 php 调用的外部程序是一定没有用户交互的(用户不可能跑到你的服务器上去点一下鼠标或按几个键)
所以说编译成 DLL 是没有错的

至于能否在 Linux 中运行 C# 程序,据说是可以的,但要安装一个什么软件

不过 C# 需在 .net 环境中运行,效率要比 C++ 低的多。既然你能用 C# 写,为何不改用 C++ 呢?反正没有界面,C#的优势也不在了

能被 php 调用的外部程序是一定没有用户交互的(用户不可能跑到你的服务器上去点一下鼠标或按几个键)
所以说编译成 DLL 是没有错的

至于能否在 Linux 中运行 C# 程序,据说是可以的,但要安装一个什么软件

不过 C# 需在 .net 环境中运行,效率要比 C++ 低的多。既然你能用 C# 写,为何不改用 C++ 呢?反正没有界面,C#的优势也不在了


谢谢一楼的解答。是这样的,我只是对现有的PHP系统进行二次开发,而且要求将别人研究出来的(C#编写的)算法嵌入到里面应用。算法比较复杂庞大,改写不太切合实际,而且要求以后有新的研究可以更换算法模块。
PHP肯定要与C#写的算法之间进行传参,并且取回得到的结果,我之前也看到说是Linux下要安装某个软件就可以使用,但是很不稳定,缺陷很多。

作为一个二手的程序猿,我只能说,我会在C#中加入一个web接口,将算法花一点时间改成http协议的api,返回json,然后用php的curl去调用,简单粗暴

那你就不要去照顾 Linux 了,老老实实的在 windows 中工作

估计无法实现,C#那玩意不想跨平台啊。

c#提供接口啊
以 http + json 和php做交互

C#在linux比较麻烦的。换个思路吧。
用C#写个web,然后使用http访问调用。

那你就不要去照顾 Linux 了,老老实实的在 windows 中工作


谢谢版主,搜了好多资料,最终也只能这样了,像你说的只考虑windows系统吧。现在只能把其他的模块做成兼容的,这个模块就只针对windows了,按时完成毕设才比较重要,谢谢啦

作为一个二手的程序猿,我只能说,我会在C#中加入一个web接口,将算法花一点时间改成http协议的api,返回json,然后用php的curl去调用,简单粗暴


恩,谢谢,思路很详细,非常感谢
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Build a React App With a Laravel Back End: Part 2, React Build a React App With a Laravel Back End: Part 2, React Mar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Notifications in Laravel Notifications in Laravel Mar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

See all articles