This repository has been archived on 2020-06-07. You can view files and clone it, but cannot push or open issues or pull requests.
php-armadillo/src/operator.cc
2019-03-25 15:14:53 +08:00

21 lines
310 B
C++

//
// 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);
}
}