Tagged Questions

PHP6 is the working name for the current version of PHP under development.

learn more… | top users | synonyms

14
votes
4answers
939 views

What is the holdup on PHP 6?

I've read in multiple places, including highly recommended PHP books published several years ago, that PHP 6 was just over the horizon, and would fix several of the BIG outstanding issues with PHP ...
13
votes
9answers
1k 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. ...
12
votes
2answers
2k views

PHP6: Is short_open_tag removed or deprecated or neither?

For instance magic_quotes_gpc has been deprecated as of PHP 5.3 but will not be removed until PHP6. In PHP6 is short_open_tag set to be removed or deprecated or neither? Whether it's appropriate to ...
11
votes
2answers
653 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 ...
9
votes
6answers
994 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 ...
9
votes
4answers
3k 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 ...
6
votes
3answers
166 views

What are the benefits of PHP6 Unicode Identifiers

I was reading a nice slide titled Unicode & PHP6 and i found every new feature very good. Except unicode identifers: Am i missing something? Isn't this is evil for PHP script understanding ...
6
votes
7answers
533 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 ...
5
votes
1answer
268 views

Has PHP 6 been changed to PHP 5.3?

I can't find any info on PHP 6, did they change their minds about the numbering and just fold it all in to PHP 5.3? What is the state of PHP 6?
5
votes
3answers
410 views

Which are the deprecated things for PHP5 in PHP6

Which are the deprecated things for PHP5 in PHP6?
5
votes
5answers
508 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; ...
4
votes
1answer
281 views

Where exactly is PHP6 anyway? [closed]

Possible Duplicate: What is the holdup on PHP 6? Sorry I might be ill informed, but I can't find any place to download or get PHP6 on the web, has it been released or its still under dev? ...
4
votes
2answers
339 views

PHP 6 and strlen()

I know PHP 6 will have unicode support for all build-in functions like strlen(). If this is the case, then counting the number of bytes in a variable can't be done with strlen() anymore. So, this will ...
3
votes
4answers
920 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: ...
2
votes
10answers
284 views

What is the feature you want the most in PHP6 [closed]

PHP5 has made a real progress, but there's still some lacks, and before all a big mess, in PHP5. What is the feature you want the most in PHP6? Some ideas : method overloading in classes variables ...
1
vote
1answer
28 views

Reading unique data from mysql table

let's say I have a table which can contains data like this: id name class -- ---- ------ 1 Joshua math 2 Mary history 3 Mary chemistry 4 Matt ...
1
vote
2answers
207 views

Is there really a PHP version 6? [closed]

Possible Duplicate: Has PHP 6 been changed to PHP 5.3? please post your ideas here, I am getting confused with all the information available at the web, some sites says that there is PHP 6 ...
1
vote
4answers
307 views

Accidentally ordered a PHP6 book for learning PHP

I want to learn PHP so I ordered a book about it called "PHP 6 and MySQL 5 for Dynamic Web Sites: Visual QuickPro Guide" I stumbled upon the php.net website and found out the latest thing released ...
1
vote
3answers
258 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 ...
1
vote
1answer
106 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 ...
1
vote
2answers
694 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 ...
0
votes
1answer
66 views

Are there any alternatives to safe_mode in PHP6?

As we know safe_mode,magic_quotes .... etc , will be canceled in PHP6 Are there any alternatives to them ? to enhance the security level ...
0
votes
1answer
317 views

Problem while Installing Magento on Appserv 2.6

I am new to Magento and trying it for the first time. There is an installation problem and I need your help. Here is my Dev Environment details. OS : Windows XP Server: AppServ 2.6 PHP Version : ...
0
votes
6answers
1k views

HTML / PHP form

I am trying to code an all in one HTML/PHP contact from with error checking. When I load this file in my browser there is not HTML. I am a newb php programmer so most likely forgot something pretty ...
0
votes
1answer
94 views

Will you need to declare a pages encoding in PHP 6?

I recently saw this as the very first line of some PHP scripts in some framework, it said that it is added in because PHP 6 will support it. I am curious if anyone knows anything about this? If it ...
0
votes
3answers
375 views

PHP: Alternative to variables passed by reference?

In the minutes php6 developer meeting, i came across a point where it said that call-time-pass-by-reference is no longer there in PHP6. For example, following both are incorrect for PHP6: <?php ...
0
votes
1answer
299 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
2answers
6k 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 ...
0
votes
2answers
1k 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! ...
-1
votes
9answers
588 views

Should i learn php 5 or php 6?

I'm not sure how popular php 6 is and if many webhost even support it, so basically learn php 5 first or just straight to php 6? Thanks in advance.
-2
votes
1answer
1k views

php short tags REALLY being deprecated in php6? [closed]

Possible Duplicate: PHP6: Is short_open_tag removed or deprecated or neither? I've searched here, php.net, the interwebs, et al. I can find reports from reliable sources — straight from ...
-4
votes
2answers
117 views

Why PHP Functions arent True Methods? [closed]

Why all PHP Functions for (Array , String , Database etc. handling) arent True OOP Methods. We can just call them like 'static' methods anywhere. PHP5 and PHP6 advertise themselves as True OOP ...