// // php-armadillo/operator.cc // // @Author CismonX // #include "php_arma.hh" namespace php_arma { int assign_handler(zend_execute_data *ex) { return ZEND_USER_OPCODE_DISPATCH; } void operator_init() { zend_set_user_opcode_handler(ZEND_ASSIGN, assign_handler); } }