You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| max_stack_exceeded | integer | 9999 | Execute more than the specified number of times be stopped the operation. | JavaClass |
278
+
| strict | boolean | true | If strict mode is `true` then execute method, variables and so on with strict. But if strict mode is `false` then execute ambiguously method, variable and etc in PHPJava. | Both |
279
+
| validation.method.arguments_count_only | boolean | false | If this mode `true` then ClassResolver validate arguments size only. | JavaClass |
280
+
281
+
- For example:
282
+
```php
283
+
<?php
284
+
use PHPJava\Core\JavaClass;
285
+
use PHPJava\Core\JavaClassFileReader;
286
+
287
+
$javaClass = new JavaClass(
288
+
new JavaClassFileReader('Test'),
289
+
[
290
+
'max_stack_exceeded' => 12345,
291
+
'validation' => [
292
+
'method' => [
293
+
'arguments_count_only' => true,
294
+
],
295
+
],
296
+
]
297
+
);
298
+
```
299
+
226
300
### Output PHPJava operations
227
301
228
302
- Output debug trace as follows if you want to show operation log:
0 commit comments