本文介绍了需要将PHP代码转换为C#的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好
Hi All
<?php
$domainname = $_GET['domain'];
list($resp, $info) = nicir_whois($domainname);
function nicir_whois($domainname) {
$server = 'whois.nic.ir';
$fp = @fsockopen($server, 43, $errno, $errstr, 10);
if ($fp) {
@fputs($fp, $domainname . '
');
@socket_set_timeout($fp, 10);
while (!@feof($fp)) {
$data .= @ fread($fp, 4096);
}
@fclose($fp);
$out = nl2br($data);
}
if( strpos($out, "no entries found") === false ) {
return array( false , $out );
} else {
return array( true , $out );
}
}
?>
这是我需要将此部分转换为c#的PHP代码。有人建议我。有没有可用的在线转换工具或任何等效的c#代码也是非常值得的
This is my PHP code i need to convert this part to c#. Anybody suggest me. Is there any online conversion tool available Or any equivalent c# code is also is much appreciable
推荐答案
这篇关于需要将PHP代码转换为C#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!