php: added unpack of class object converter

This commit is contained in:
advect
2011-01-16 17:35:10 +09:00
parent fe26df5355
commit 5debbd2be8
86 changed files with 14795 additions and 1451 deletions

17
php/msgpack_errors.h Normal file
View File

@@ -0,0 +1,17 @@
#ifndef MSGPACK_ERRORS_H
#define MSGPACK_ERRORS_H
#define MSGPACK_NOTICE(...) \
if (MSGPACK_G(error_display)) { \
zend_error(E_NOTICE, __VA_ARGS__); \
}
#define MSGPACK_WARNING(...) \
if (MSGPACK_G(error_display)) { \
zend_error(E_WARNING, __VA_ARGS__); \
}
#define MSGPACK_ERROR(...) zend_error(E_ERROR, __VA_ARGS__)
#endif