我使用Google Chrome的高级REST客户端扩展测试我的网络服务, 当我在描述输入框中发送值时(例如“这是我的测试”), 在Web服务中,它保存在数据库中。但它将字符串保存为“this + is + my + test”。 网络服务在php&的Joomla。
我在网络服务中获取帖子值的代码。
$getData = JRequest::get('post');
$description = $getData['description'];
// $description contains "this+is+my+test"
我想要字符串。 谁能告诉我这是什么问题?
答案 0 :(得分:3)
$description = urldecode($getData['description']);
这样可行。