I'm working on a app that requires IPC (Message queues) between a C prog & php. The problem I'm running into is that the vars sent to the queue via php are represented like so comming into the queue:
From php: Test
In the Q: s:4:"Test"
Is their a way to Just have it send the word Test and not all the php var struct with it? I really don't want to have to build a parser for it.
From php: Test
In the Q: s:4:"Test"
Is their a way to Just have it send the word Test and not all the php var struct with it? I really don't want to have to build a parser for it.