NuSphere Forums Forum Index
NuSphere Forums
Reply to topic
PHP 5.5 support


Joined: 16 Aug 2008
Posts: 29
Reply with quote
Hello,
PHP 5.5 is out for some time already, any chance for supporting it? Speciffically the new 'yield' keyword is reported as syntax error which causes debugging tools to sometimes go haywire.
View user's profileFind all posts by odinuvSend private message
Site Admin

Joined: 13 Jul 2003
Posts: 8344
Reply with quote
Debugger works perfectly well with php-5.5 under all supported platforms.
For example you can try generator sample available from php.net:
Code:
<?php
function gen_one_to_three() {
    for ($i = 1; $i <= 3; $i++) {
        // Note that $i is preserved between yields.
        yield $i;
    }
}

$generator = gen_one_to_three();
foreach ($generator as $value) {
    echo "$value\n";
}
?>


As of sytax validator and list of keywords, changes are expected to come out with v11

_________________
The PHP IDE team
View user's profileFind all posts by dmitriSend private messageVisit poster's website
PHP 5.5 support
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT - 5 Hours  
Page 1 of 1  

  
  
 Reply to topic