Translation of "possible" to English language:
Dictionary Japanese-English
Examples (External sources, not reviewed)
Use any means possible to induce head pain | Let's have a game. |
What possible reason could there be to be here? | I'll start actually taking pieces out of it. |
And with no need for it, no possible real world application... | But the idea had been spoken... and the words wouldn't go back after they had been uttered aloud. |
Change your nickname on the given connection to the one given in nick if possible. | Change your nickname on the given connection to the one given in nick, if possible. |
A type specifier that says what type the argument data should be treated as. Possible types | o the argument is treated as an integer, and presented as an octal number. |
Returns the type of the node. All possible types are listed in the table in the introduction. | All possible types are listed in the table in the introduction. |
Since PHP 4.3.0 it is possible to identify at runtime which iconv implementation is adopted by this extension. | Since PHP 4.3.0 it is possible to identify at runtime which iconv implementation is adopted by this extension. |
Read in session data without locking the session data. Changing session data is not possible, but frameset performance will be improved. | Changing session data is not possible, but frameset performance will be improved. |
注意 This function will attempt to copy the data in the most efficient manner, using memory mapped files when possible. | Prev |
The integration with Apache and possible other servers is already described in the Hyperwave module which has been the first extension to connect a Hyperwave Server. | Certain attributes are always set by the Hyperwave server, other may be modified by the user. |
平坦化 This option adjusts the brightness of colors across the active image so that the histogram for the value channel is as nearly as possible flat, that is, so that each possible brightness value appears at about the same number of pixels as each other value. Sometimes Equalize works wonderfully at enhancing the contrasts in an image. Other times it gives garbage. It is a very powerful operation, which can either work miracles on an image or destroy it. | Equalize This option adjusts the brightness of colors across the active image so that the histogram for the value channel is as nearly as possible flat, that is, so that each possible brightness value appears at about the same number of pixels as each other value. Sometimes Equalize works wonderfully at enhancing the contrasts in an image. Other times it gives garbage. It is a very powerful operation, which can either work miracles on an image or destroy it. |
注意 This function will not work under Windows, which does not implement unix domain sockets. A possible exception to this rule is if your PHP binary was built using cygwin. You are encouraged to consider this aspect of the portability of your extension before it's release. | You are encouraged to consider this aspect of the portability of your extension before it 's release. |
When a script tries to open a file with, for example, fopen or gzopen, the location of the file is checked. When the file is outside the specified directory tree, PHP will refuse to open it. All symbolic links are resolved, so it's not possible to avoid this restriction with a symlink. | All symbolic links are resolved, so it 's not possible to avoid this restriction with a symlink. |
注意 Due a limitation in the current Zend Engine it is not possible to pass a constant modifier like NULL directly as a parameter to a function which expects this parameter to be passed by reference. Instead use a temporary variable or an expression with the leftmost member being a temporary variable | Instead use a temporary variable or an expression with the leftmost member being a temporary variable |
Counts the number of words inside string. If the optional format is not specified, then the return value will be an integer representing the number of words found. In the event the format is specified, the return value will be an array, content of which is dependent on the format. The possible value for the format and the resultant outputs are listed below. | In the event the format is specified, the return value will be an array, content of which is dependent on the format. |
PHP doesn't make use of any formal function declarations this is why call syntax is always completely dynamic and never checked for errors. Checking for correct call syntax is left to the user code. For example, it's possible to call a function using only one argument at one time and four arguments the next time both invocations are syntactically absolutely correct. | Since PHP doesn 't have formal function definitions with support for call syntax checking, and since PHP features variable arguments, sometimes you need to find out with how many arguments your function has been called. |
To access arguments, it's necessary for each argument to have a clearly defined type. Again, PHP's extremely dynamic nature introduces some quirks. Because PHP never does any kind of type checking, it's possible for a caller to pass any kind of data to your functions, whether you want it or not. If you expect an integer, for example, the caller might pass an array, and vice versa PHP simply won't notice. | If you expect an integer, for example, the caller might pass an array, and vice versa PHP simply won 't notice. |