如何创建最简单的*(更少的代码行,更少的陌生词)PHP Get API *(因此.NET C#中的任何程序都可以调用像http://localhost/api.php?astring=your_utf-8_string&bstring=your_utf-8_string这样的url)并支持UTF-8?

我需要的是具有一个功能的PHP API-合并2个字符串,这样一个简单的.net客户端就可以使用它:

    public string setStream(string astring, string bstring)
    {
string newAstring =Uri.EscapeDataString(astring);
string newBstring = Uri.EscapeDataString(bstring);
        WebClient client = new WebClient();
        var result = client.DownloadString(("http://localhost/api.php?" + string.Format("astring={0}&bstring={1}", newAstring, newBstring)).ToString());
        return result;
    }

最佳答案

Dunno如果我缺少什么,但是:

<?php

function concatinateStrigs($a, $b){
    return $a . $b;
}

echo concatinateStrigs($_GET['astring'], $_GET['bstring']);

?>

10-08 11:17