Tagged Questions

Notably register_globals and safe_mode are both deprecated. Much code written before PHP 5 (and some during) makes use of both these, and a lot of code needs updating. Many string search related functions have been deprecated too, such as split() and ereg(). See ...

learn more… | top users | synonyms

39
votes
2answers
4k views

NoSQL best practices

What are the best practices for NoSQL Databases, OODBs or whatever other acronyms may exist for them? For example, I've often seen a field "type" being used for deciding how the DB document (in ...
37
votes
9answers
793 views

Strategy for developing namespaced and non-namespaced versions of same PHP code

I'm maintaining library written for PHP 5.2 and I'd like to create PHP 5.3-namespaced version of it. However, I'd also keep non-namespaced version up to date until PHP 5.3 becomes so old, that even ...
20
votes
15answers
5k views

Any PHP MVC framework planning to use 5.3 features?

I would like to get started with PHP, and 5.3 release seems to bring many nice features (namespaces, lambda functions, and many others). I have found some MVC frameworks, and some of them support ...
16
votes
15answers
2k views

When (if ever) is eval NOT evil?

I've heard many places that PHP's eval function is often not the answer. In light of PHP 5.3's LSB and closures we're running out of reasons to depend on eval or create_function. Are there any ...
14
votes
5answers
2k views

Is there any replacement for PHPDocumentor that supports PHP 5.3?

Some of the new PHP 5.3 features, including namespaces and anonymous functions, are not compatible with PHPDocumentor, even with the latest release. For example, it just raises an error when it ...
12
votes
3answers
2k views

Increasing nesting functions calls limit

There is one very bad limit in PHP: if you call some function a1() that calls a2(), that calls a3... so when a99() will call a100() you will see Fatal error: Maximum function nesting level of '100' ...
12
votes
9answers
8k views

Pass by reference problem with PHP 5.3.1

Ok, this is a weird problem, so please bear with me as I explain. We upgraded our dev servers from PHP 5.2.5 to 5.3.1. Loading up our code after the switch, we start getting errors like: Warning: ...
11
votes
1answer
167 views

How to call a closure that is a class variable?

class MyClass { var $lambda; function __construct() { $this->lambda = function() {echo 'hello world';}; // no errors here, so I assume that this is legal } } $myInstance = new ...
11
votes
3answers
627 views

Calling closure assigned to object property directly

I would like to be able to call a closure that I assign to an object's property directly without reassigning the closure to a variable and then calling it. Is this possible? The code below doesn't ...
10
votes
4answers
9k views

<? ?> tags not working in php 5.3.1

I just installed php 5.3.1 in my linux server and now my old work which i used to write with tags is not working at all.. Please help me out.. How can i resolve this??
10
votes
3answers
508 views

Is it possible to overuse late static binding in PHP?

Starting with version 5.3, PHP supports late binding for static methods. While it's an undoubtedly useful feature, there are only several cases where its use is really necessary (e.g. the Active ...
9
votes
2answers
203 views

PHP autoloader class vs. procedural autoloader function?

Up to this point I've used procedural standalone autoloader functions and registered them with spl_autoload_register() to automatically load my (usually) namespaced classes. Lately, though, I've ...
9
votes
4answers
301 views

What is wrong with PHP5.3?

I came across lots of hosting companies are unwilling to upgrade to PHP5.3. Most of them gave me the reason is that there are lots of bugs in PHP5.3, so they prefer to keep it at version 5.2. What is ...
9
votes
5answers
2k views

Naming of interfaces/abstract classes in PHP 5.3 (using namespaces)

Prior to PHP 5.3 I used to name interfaces/abstract classes like this: abstract class Framework_Package_Subpackage_Abstract {} Framework/Package/Subpackage/Abstract.php interface ...
8
votes
5answers
160 views

Using $this in PHP 5.3 anonymous function

The PHP manual states It is not possible to use $this from anonymous function before PHP 5.4.0 on the anonymous functions page. But I have found I can make it work by assigning $this to a ...
8
votes
1answer
357 views

Set PHP version in Netbeans 7 for non-project files

I'm editing a PHP file in Netbeans that is not part of a project. Although I have PHP 5.3 installed, Netbeans complains about my use of a lambda function: "Language feature not compatible with PHP ...
8
votes
5answers
2k views

Zend Framework - Doctrine 2 integration : where to store the EntityManager?

I am integrating Zend Framework and Doctrine 2. The question is, in my controllers and view, in need to access the model. I can do all this through a single instance of the EntityManager. Where do I ...
8
votes
1answer
206 views

Peculiar Behaviour with PHP (5.3), static inheritance and references

I'm writing a library in PHP 5.3, the bulk of which is a class with several static properties that is extended from by subclasses to allow zero-conf for child classes. Anyway, here's a sample to ...
8
votes
3answers
1k views

Get child class namespace from superclass in PHP 5.3

Assuming I have the following classes in different files: <?php namespace MyNS; class superclass { public function getNamespace(){ return __NAMESPACE__; } ...
8
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 ...
7
votes
4answers
693 views

What is the difference between split() and explode()?

The PHP manual for split() says This function has been DEPRECATED as of PHP 5.3.0. Relying on this feature is highly discouraged...Use explode() instead. But I can't find a difference ...
7
votes
10answers
669 views

What is your favorite new feature in php 5.3? [closed]

I'm trying to compile a list of new features found in php 5.3. that I have to check out as time permits. I'd like to do this in the order of usefulness of the features. The question is subjective, ...
7
votes
3answers
879 views

How did PHP 5.3 break your application?

PHP 5.3 has been released some time ago and the developers tried to keep the number of backwards compatibility breaks low. What issues did you find while testing/migrating your code with PHP 5.3?
6
votes
3answers
117 views

Is there a way to know which objects and how many of them do i have in memory?

I have a php script that uses Doctrine2 and Zend to calculate some things from a database and send some emails for 30.000 users. My script is leaking memory and I want to know which are the objects ...
6
votes
7answers
7k views

array_flip():Can only flip STRING and INTEGER values! in DrupalDefaultEntityController->load()

I have recently migrated my module to Drupal7 (on PHP Version 5.3.1) and now I am getting following errors: * Warning: array_flip() [function.array-flip]: Can only flip STRING and INTEGER values! ...
6
votes
1answer
114 views

sql help getting data from all the followers ? ( like twitter if we follow )

example if i have follow table company one ( cid = 1 ) following two ( cid = 2 ) company one ( cid = 1 ) following three( cid = 3 ) feeds table company one ( cid = 1 ) type 'product' description ...
6
votes
4answers
10k views

Apache is “Unable to initialize module” because of module's and PHP's API don't match

php -v gives this PHP Warning: PHP Startup: memcache: Unable to initialize module Module compiled with module API=20060613 PHP compiled with module API=20090626 These options need to match in ...
6
votes
0answers
1k views

PHP 5.3 Documentor? [closed]

Possible Duplicate: Anything better than PHPDoc out there? I was wondering if there is a documentation solution available that supports PHP 5.3. We are having two problems with ...
6
votes
3answers
1k views

OpenID in PHP 5.3

Does anyone have openid working in a PHP 5.3 installation? None of the libraries I've tried seem to be working.
5
votes
1answer
466 views

ZF2: Dependency Injection, MVC, Configurations and Bootstrap

I have a questiom regarding the Zend Framework 2: I have library/System and library/Zend. the system is my custom library, which I want to configure de aplication (routes, modules, etc., and redirect ...
5
votes
2answers
84 views

PHP DateTime Functions

I have the following code fragment: $now = '2011-12-01 22:32:33'; $datetime = '2011-12-01 00:07:27'; $nowObj = new DateTime($now); $datetimeObj = new DateTime($datetime); $diff = ...
5
votes
3answers
116 views

PHP namespaced function best practices

I have a few general use functions that do not really make sense in any class as static methods. I would like to encapsulate them under a namespace so there are no conflicts with functions defined in ...
5
votes
1answer
271 views

Symfony2 explanation of CompilerPass?

Can someone explain what a compilerpass is?
5
votes
4answers
104 views

php super super globals

I was wondering, I have this big array, is it possible to have it only once in memory rather then once per thread? Take the tags here at stackoverflow as example. They barely ever change, why not ...
5
votes
1answer
236 views

LogicException vs. RuntimeException

I was wondering if there was a rule saying when to use which Exception in PHP... When do I have to throw a LogicException and when a RuntimeException? For example when it comes to exceptions like ...
5
votes
3answers
181 views

PHP `DateTime::days` returns trash?

PHP Class DateInterval has a property "days". According to the manual it returns "Total number of days the interval spans. If this is unknown, days will be FALSE." In my case the code: $d = new ...
5
votes
2answers
793 views

What does PHP's gc_enable function do exactly?

Before you tell me to read the manual, check out the php.net documentation for this function: Warning This function is currently not documented; only its argument list is available. That was ...
5
votes
1answer
296 views

Non-deterministic object reference bug in PHP 5.3.X

As of yesterday (perhaps after a recent PHP update?), I'm getting some very strange non-deterministic bugs in php 5.3.3. These appear in our production server in PHP 5.3.2 as well. The errors ...
5
votes
2answers
783 views

PHP RecursiveIterator traversing

I have a structure representing a form and I want to iterate it using RecursiveIterator. The problem is this only returns the top-level questions. What am I doing wrong? Whole form: class Form ...
5
votes
3answers
746 views

Updating to PHP 5.3 with deprecated functions warning disabled

I'm very keen to update a number of our servers to PHP 5.3. This would be in readiness for Zend Framework 2 and also for the apparent performance updates. Unfortunately, i have large amounts of legacy ...
5
votes
2answers
2k views

PHPUnit code coverage generation causing memory exhaustion

I'm currently using Zend Framework in conjunction with PHPUnit to conduct unit testing on an application. When Hudson executes the PHPUnit shell command, the maximum PHP memory limit is reached ...
5
votes
1answer
273 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
1answer
749 views

Inherit static properties in subclass without redeclaration?

I'm having the same problem as this guy with the application I'm writing right now. The problem is that static properties are not being inherited in subclasses, and so if I use the static:: keyword in ...
5
votes
1answer
829 views

SWIG generated code fails to run on PHP 5.3.2 undefined symbol: zend_error_noreturn

I have a library that I have been using successfully with PHP 5.1.6 with the help of some wrapper code generated by SWIG (v1.3.40). I have just upgraded to PHP 5.3.2 and I am seeing the following ...
5
votes
5answers
574 views

Is there a well-established naming convention for PHP namespaces?

So far, I've seen many different naming conventions used for PHP namespaces. Some people use PascalCase\Just\Like\For\Classes, some use underscored\lower_case\names, some even use the Java convention ...
5
votes
4answers
2k views

PHP 5.3.0 - Is it stable enough for production use?

I'm running a couple of sites and are thinking about moving over to using Nginx instead of Apache and as such I need to move to FCGI where the preferred choice right now seem to be PHP-FPM. I'm ...
4
votes
1answer
31 views

Magento collection - filter by several fields

Using Magentos collection models, how should I go about adding a query part/filter such as this: WHERE (main_table.x < 1 OR (main_table.x - main_table.y) >= 5) Update I'm now running this: ...
4
votes
2answers
56 views

Checking if email exists in the database?

I have this function or method in my class, but it doesn't return number of rows when I insert an email into it. I have tested the mysql connection etc, they all are working. Also note that the email ...
4
votes
1answer
58 views

Which PHP 5.3 features and extensions are not compatible with stream wrappers?

I am in the process of migrating a lot of files in a large PHP application from local to remote storage. File operations are being transitioned using PHP stream wrappers as an intermediate solution so ...
4
votes
4answers
44 views

Strange PHP 5.3 issue with date diff calculating difference in days

I am experiencing a rather strange problem using PHP 5.3's date diff function to calculate the difference in days between two dates. Below is my code: $currentDate = new DateTime(); // (today's date ...

1 2 3 4 5 13