Directive |
Type |
Modification Scope |
Description |
---|---|---|---|
integer |
PHP_INI_SYSTEM |
The TCP port on which the server is listening |
|
boolean |
PHP_INI_ALL |
Converts PHP integers into java.lang.Long integers, primarily for 64-bit machines |
|
string |
PHP_INI_ALL |
Sets the encoding type that is passed from PHP to Java |
|
boolean |
PHP_INI_ALL |
Uses basic Java objects and does not attempt to convert them to primitives |
Default is 10001. Must be the same as the server's zend.javamw.port
Type: integer
Default Value: 10001
Available since version 4.0
Translates PHP integer values to java.lang.Long integers (64-bit) instead of java.lang.Integer integers (32-bit). The default setting is off
Type: boolean
Default Value: 0
Available since version 4.0
Sets the encoding type that is passed from PHP to Java
Type: string
Default Value: UTF-8
Available since version 4.0
When set to 0, preserves the current implementation (which converts basic Java objects to primitives (e.g., java.long.Short to short). <br> When set to 1 for the Java Bridge, returns Java objects and does not convert them to primitives
Type: boolean
Default Value: 0
Available since version 4.0