Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ZeroMQ でソケット送信経由でオブジェクトを送信することは可能ですか?
ドキュメントでは、文字列のみを受け入れると書かれています。
しかし、実際にどのようにオブジェクトを渡しますか? これを回避する方法はありますか?
オブジェクトが多次元配列の場合、json でエンコードされた文字列を作成できます。
objString = json_encode(obj);
文字列を押して、プラーでデコードします。
obj = json_decode(obj);