标签: c# php named-pipes
对于我使用的php,
php
<?php $pipe = popen("water-Pipe",'r+'); $read = fread($pipe,10); echo $read; pclose($pipe); ?>
它没有连接。在c#中,NamedPipeServerStream中使用了相同的文件描述符。有什么帮助吗?
NamedPipeServerStream
答案 0 :(得分:1)
您听说过WCF吗?
Here是关于如何使用PHP
Windows Communication Foundation是一个非常方便的程序和服务之间的通信工具,甚至用不同的程序语言编写。 您不需要进行复杂的连接。这将是为您做的。