1

我使用 Google Chrome 的高级 REST 客户端扩展测试我的网络服务,当我在描述输入框中发送值时(例如“这是我的测试”),并且在网络服务中它被保存在数据库中。但它将字符串保存为“this+is+my+test”。网络服务在 php & joomla 中。

我在 Web 服务中获取 post 值的代码。

$getData = JRequest::get('post');
$description = $getData['description'];

// $description  contains "this+is+my+test"

我想要字符串原样。谁能告诉我是什么问题?

4

1 回答 1

3

$description = urldecode($getData['description']);

这会奏效。

于 2013-08-02T09:56:24.197 回答