function xmlrpc_test_echo_struct_test in xmlrpc 8
Test function accepting an array and returning it.
Parameters
array $array: A source array.
Return value
array The same array.
1 call to xmlrpc_test_echo_struct_test()
- XmlRpcValidatorTest::testValidator in src/
Tests/ XmlRpcValidatorTest.php - Run validator1 tests.
1 string reference to 'xmlrpc_test_echo_struct_test'
- xmlrpc_test_xmlrpc in tests/
modules/ xmlrpc_test/ xmlrpc_test.module - Implements hook_xmlrpc().
File
- tests/
modules/ xmlrpc_test/ xmlrpc_test.module, line 68 - Test module to support XmlRpcMessagesTest and XmlRpcValidatorTest.
Code
function xmlrpc_test_echo_struct_test(array $array) {
return $array;
}