Voting

: two minus one?
(Example: nine)

The Note You're Voting On

sblyons+php at gmail dot com
12 years ago
Take care if using escapeshellarg() on serialized objects. Serialized objects contain null bytes, and escapeshellarg stops on the first null byte so you will not receive the full argument. (I consider this a bug, though not sure what it should do in this case. Probably serialize shouldn't have used null bytes, but too late for that now).
The workaround I've found to pass serialized objects on the command line is to base64_encode() them first and decode on the other side.

<< Back to user notes page

To Top