mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-07 02:09:59 +00:00
php: added unpack of class object converter
This commit is contained in:
parent
fe26df5355
commit
5debbd2be8
86 changed files with 14795 additions and 1451 deletions
17
php/msgpack_errors.h
Normal file
17
php/msgpack_errors.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue