| 1081 | } |
| 1082 | |
| 1083 | void php_engine_init() |
| 1084 | { |
| 1085 | g_global_scope = make_scope_table(); |
| 1086 | |
| 1087 | g_current_scope = g_global_scope; |
| 1088 | |
| 1089 | g_scope_stack = new PHP_SCOPE_STACK_TYPE; |
| 1090 | |
| 1091 | // here built-in functions/objects/vars are loaded |
| 1092 | php_init_core_lib(); |
| 1093 | php_init_amule_lib(); |
| 1094 | } |
| 1095 | |
| 1096 | void php_exp_tree_free(PHP_EXP_NODE *tree) |
| 1097 | { |
no test coverage detected