我们正在尝试将简单的JSON发送到在XAMP上运行的本地php并将数据保存到MySql,我们尝试了许多不同的代码,我们认为Unity C#代码是真的但我们不确定,我们测试了许多不同的PHP代码,但是半代码显示没有一半显示一些错误,我发布了最后使用的代码,任何建议欢迎。
C#Unity:
using UnityEngine;
using System.Collections;
using System.Text;
public class JSON : MonoBehaviour
{
IEnumerator Start()
{
Debug.Log ("Posting JSON...");
string URL = "http://localhost/php/page.php";
WWWForm form = new WWWForm ();
form.AddField ("username", "testuser");
form.AddField ("password", "testpass");
var headers = form.headers;
headers["content-type"] = "application/json";
WWW www = new WWW(URL, form.data, headers);
yield return www;
Debug.Log (www.uploadProgress);
if (www.error == null)
{
Debug.Log("WWW Ok!: " + www.text);
} else {
Debug.Log("WWW Error: "+ www.error);
}
}
}
PHP XAMP:
<?php
$connect = mysqli_connect("localhost","root","", "localdb");
$filename = file_get_contents('php://input');
$data = file_get_contents($filename);
$array = json_decode($data, true);
foreach ($array as $row)
{
$sql = "INSERT INTO localtable (username, password) VALUES('".$row[username]."','".$row[password]."')";
mysqli_query($connect, $sql);
}
echo $data;
?>
Unity日志:
WWW Ok!:警告: file_get_contents(username = testuser&amp; password = testpass):失败了 open stream:没有这样的文件或目录 在 8 行 C:\ xampp \ htdocs \ php \ page.php 警告:为foreach()提供的参数无效 C:\ xampp \ htdocs \ php \ page.php 在行 12 上的JSON数据 添加。 UnityEngine.Debug:Log(Object)c__Iterator3:MoveNext() (在Assets / Scripts / JSON.cs:31) UnityEngine.SetupCoroutine:InvokeMoveNext(IEnumerator,IntPtr)
PHP错误:
警告:file_get_contents():文件名不能为空 第8行的C:\ xampp \ htdocs \ php \ page.php
警告:为foreach()提供的参数无效 第12行添加了JSON数据的C:\ xampp \ htdocs \ php \ page.php。
编辑1:没有错误,没有数据。
<?php
$data = json_decode(file_get_contents('php://input'), true);
print_r($data);
echo $data["username"];
echo $data["password"];
?>
编辑2:
<?php
$data = file_get_contents('php://input');// $data == "username=testuser&password=testpass"
parse_str($data, $result);
echo $result["username"]; // "testuser"
echo " ";
echo $result["password"]; // "testpass"
echo " ";
?>
Unity显示数据:testuser testpass
PHP秀:
注意:未定义的变量:C:\ xampp \ htdocs \ php \ page.php中的用户名 在第5行
注意:未定义的变量:C:\ xampp \ htdocs \ php \ page.php中的密码 第7行
编辑3:最终的PHP代码不向Mysql添加任何记录
<?php
$data = file_get_contents('php://input');// $data == "username=testuser&password=testpass"
parse_str($data, $result);
echo $result["username"]; // "testuser"
echo " ";
echo $result["password"]; // "testpass"
echo " ";
$connect = mysqli_connect("localhost","admin","123456", "localdb");
$array = json_decode($data, true);
$sql = "INSERT INTO localtable (username, password) VALUES('".$result["password"]."','".$result["password"]."')";
mysqli_query($connect, $sql);
echo " ";
echo $queryResult = mysqli_query($connect, $sql);//Return 1
?>
答案 0 :(得分:0)
$filename = file_get_contents('php://input');
$data = file_get_contents($filename);
$filename
是您从Unity3D客户端获取的表单数据。这不是文件路径,也不是JSON字符串。那只是一个字符串。你不发送json。
查看日志,它是
username=testuser&password=testpass
使用parse_str
获取用户名和密码。
<?php
$connect = mysqli_connect("localhost","root","", "localdb");
$data = file_get_contents('php://input');// $data == "username=testuser&password=testpass"
$result = null;
parse_str($data, $result);
echo $result["username"]; // "testuser"
echo $result["password"]; // "testpass"
if ($stmt = $mysqli_prepare("INSERT INTO localtable (username, password) VALUES(?,?)")) {
/* bind parameters for markers */
mysqli_stmt_bind_param($stmt, "username", $result["username"]);
mysqli_stmt_bind_param($stmt, "password", $result["password"]);
/* execute query */
mysqli_stmt_execute($stmt);
/* close statement */
mysqli_stmt_close($stmt);
}
?>