Tagged Questions

7
votes
1answer
182 views

PHP6 and its future: How to best handle Unicode in a future proof way?

A week ago there was an interesting post on the PHP-Internals list: http://marc.info/?l=php-internals&m=125842046913842&w=2 I've been thinking for a while what we should do about PHP6 …
0
votes
0answers
12 views

Using APC in PHP Version 6.0.0-dev

PHP 6 has APC included in the core distribution, but its off by default. I have compiled from source and tried '--enable-apc' but no luck. I also tried to download and compile the APC module but it …
0
votes
1answer
281 views

ereg_replace for PHP 5.3 + ?

I've seen a solution for not having to rework usage of the ereg function for PHP 6: http://stackoverflow.com/questions/737198/good-alternative-to-eregi-in-php It uses if(!function_exists.... Is …
1
vote
3answers
60 views

Few questions about PHP6

I looked at one of the post on SO about what will break when PHP6 is released. I have a few questions below about some of the stuff... 1) {} for string offsets no longer available. what does this …
8
votes
5answers
336 views

The PHP6 Namespace operator… what’s the big deal?

Can someone explain to me what exactly is so bad about using the backslash as the namespace operator for PHP6? It's impossible to read any discussion about PHP6 these days without someone making some …
0
votes
1answer
405 views

Php 5.3 or 6 windows install

How do I install latest versions of PHP as Apache 2 module? PHPIniDir directive throws error. And what's more important, there's no php5apache2.dll file or similar in latest distributions of PHP! …
0
votes
1answer
42 views

mb_ereg_* in PHP6

So ereg won't be present in PHP6. And I don't really care, because I'm using PCRE functions. But for multibyte strings, I'm using mb_ereg_* functions. The question is: they'll be present in PHP6 in …
3
votes
6answers
304 views

why is php 6 a major release?

This are some list of changes. http://blog.tuvinh.com/one-minute-with-php6/ http://davidwalsh.name/php6 http://www.php.net/~derick/meeting-notes.html Why are these changes will be labeled as v6 …
12
votes
9answers
661 views

What will break once PHP6 is released?

PHP6 haven't been released yet. But because of the majority of websites that uses PHP, once PHP6 is released, programmers would support that version. PHP6 can break code that works on PHP4 and PHP5. …
2
votes
4answers
235 views

Why not to use highest error reporting level in PHP?

I want you to give reasons why someone should not use the highest possible error reporting level in PHP? Ways to set highest level: PHP 5: error_reporting(E_ALL | E_STRICT); PHP 6: …
0
votes
2answers
301 views

How to be safe when PHP6 is released and ereg regex is turned into an extension instead of core.

For those of you who don't know what's gonna happen in PHP6, here's a nice short read: http://jero.net/articles/php6 Now, if you have functions that depend on ereg and you don't have control over the …
4
votes
4answers
696 views

What is coming in PHP 6?

What is upcoming in the new release of PHP, and why should I care? What problems will these improvements help to solve? Cheers, Edit: After posting the question I have found these links that also …
4
votes
5answers
261 views

Closures as class members?

I have taken a liking to jQuery/Javascript's way of extending functionality via closures. Is it possible to do something similar in PHP 5.3? class Foo { public $bar; } $foo = new Foo; …