|
Posted by Janwillem Borleffs on 09/28/43 11:58
d43m0n AT shaw DOT ca wrote:
> What I need is someone with Windows to execute the code below, and
> report the results, wether or not it is truely possible for win32
> environments to process such loop.
>
Seems to work
> if (version_compare(phpversion(), '5.0.0', '<')) {
>
Using the following is faster:
if (PHP_VERSION < 5) {
> define('STDIN', fopen('php://stdin', 'r'));
>
PHP only supports scalar values for constants, see:
http://nl3.php.net/manual/en/language.constants.php
JW
Navigation:
[Reply to this message]
|