Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
0.10.0
-
None
-
None
-
CentOS 6.5
Description
The function in thrift file:
set<string> set_test(1:set<string> test_set)
My test is like this:
$s = new Bd_Wrpc_Client("arch.soa_test");
$res9 = $s->set_test(
array("ww","qq")
);
and My server supposed to return whatever I passed.
But I got the wring answer:
array(2)
{ [0]=> bool(true) [1]=> bool(true) }Is there a bug in Thrift php lib?