Unity3d和Yii Web服务

时间:2012-05-11 10:34:36

标签: web-services yii unity3d

我正在为Unity3d构建一个游戏代码服务器,我的服务器是用Yii构建的,但是当我看到有关Yii tutorial的webservice的指南时,我看到它使用soapClient来调用服务器中的函数。但在Unity3d中我只知道WWW和WWWForm请求服务器。那么,有谁知道如何在Unity3d中使用webservice与Yii进行通信?
非常感谢你。

1 个答案:

答案 0 :(得分:1)

您只需通过WWWForm发送数据

http://unity3d.com/support/documentation/ScriptReference/WWWForm.html

var highscore_url = "http://www.my-site.com/?r=MyGame/highscore";

在Yii的Controller中:\ protected \ controller \ MyGameController.php

class MyGame extends Controller
{
   public function actionHighscore()
   {
      // Here you get data from $_REQUEST ($_POST or $_GET) 
      // and use Yii's power for output some data
      // like perl example in link upthere
   }

}