Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×

Comment Works fine here (Score 1) 499

Works fine in Belgium, where there's hundreds of cameras and we see a steady decrease in the number of casualties at those lights. But maybe that's because there are so many, people actually start slowing down well in advance and don't hit the brakes as soon as they see a camera...

Comment Re:It's the open tag (Score 1) 209

Actually it will already work on PHP 5.2/5.3 if it was compiled with --enable-zend-multibyte but that will depend on the hosting provider or the distribution being used.

So checking whether the host has this enabled (phpinfo() will tell you) is your best bet.
For 5.4 you still need to have it compiled with --enable-zend-multibyte but now you can disable it in php.ini

The fact that 5.4 doesn't introduce any backward incompatibilities should also increase the adoption rate significantly.

Comment Re:PHP 6 crashed (Score 1) 209

The problem here might not be the open tag, but closing tag. If you use include(_once) or require(_once) and you used a closing tag in the file you're trying to include or require, you hve to be careful nothing follows that closing tag (like a newline...).
The best option is :
- Never to use a closing tag, since it's optional anyway
- To use a standard PHP IDE to write your code

Comment Re:hello, anybody out there? (Score 1) 209

Keep in mind that it doesn't guarantee full compatibility with PHP 5.4, but it does all the automated checks it can do, so that's a huge timesaver.
Including it it Debian or any other distribution is certainly a good idea. But I recommend waiting a week or two... I just released it today, so there may be some minor bugs in there...

Comment Great memories ! (Score 2) 208

Great memories with this computer. And it was so far ahead of all competitors : even the predecessor of the Acorn BBC B (the Electron) already had 2Mhz and 32KB RAM and was networkable using a thing called Econet.
The BBC B+ could be expanded up to 128KByte and had a second processor (we're talking 1986 !!!!), teletext-reader, lightpen that allowed you to draw by using a pen on your screen (think tablet !) and so on.
And then Archimedes with its 32-bit RISC CPU came in 1987 (!), doing 4 MIPS and offering a Windowed operating system that booted from EEPROM instantly (switch it on and it's there).

Any mobile device with an ARM chip (think Android, tablets, Blackberry, etc.) is based on the architecture that was spawned in the 80s by Acorn (ARM = Acorn Risc Machine).
I'm glad and privileged to have worked with those great devices !

Slashdot Top Deals

And it should be the law: If you use the word `paradigm' without knowing what the dictionary says it means, you go to jail. No exceptions. -- David Jones

Working...