Search Results

7
votes
4answers
699 views

Compile regex in PHP

Is there a way in PHP to compile a regular expression, so that it can then be compared to multiple strings without repeating the compilation process? Other major languages can do this -- Java, C#, …
1
vote
3answers
317 views

PHP new operator returning reference

I'm working with some old PHP code that has a lot of the following: $someVar =& new SomeClass(); Did the new operator ever return a value, um, …
1
vote
4answers
153 views

Reference counting in PHP

I'd like to implement database caching functionality in PHP based on reference counts. For example, code to access the record in table foo with an ID of 1 might look like: …
0
votes
2answers
79 views

Create an HttpRequest from environment

Can I get a HttpRequest automatically created from the environment? In other words, right now it seems like you have to... $request = new HttpRequest; $request->setCookies($_COO …
5
votes

PHP Idioms?

Ultimately, you'll get the most out of PHP first by learning generally good programming practices, befure focusing on anything PHP-specific. Having said that... Apply liber …
4
votes

Is it better to use ob_get_contents() or $text .= ‘test’;

Output buffers have all the pitfalls of global variables. You have to be aware of all execution paths from the ob_start() to the ob_get_clean(). Are you sure it will get …
4
votes

How do I write unit tests in PHP?

Unit testing isn't very effective unless you change your coding style to accommodate it. I recommend browsing the Google Testing Blog …
0
votes

Getting the name of a child class in the parent class (static context)

The problem is not a language limitation, it is your design. Never mind that you have classes; the static methods belie a procedural rather than object-oriented design. You're also using global s …
0
votes

How do I create a dispatch table within a class in PHP?

See the callback pseudo-type in the manual. …
0
votes

How can I use array-references inside arrays in PHP?

The function end() doesn't just return a value. It also moves the array's internal pointer. Then we can use key() to get the index, after which we're able to use regular array access for the assi …
0
votes

Best practices for bit flags in PHP

In your model, the object has 8 boolean properties. That implies 8 boolean (TINYINT for MySQL) columns in your d …
1
vote

Best solution for __autoload

We use something much like the last option, except with a file_exists() check before the require. If it doesn't exist, rebuild the cache and try once more. You get the extra stat per file, but it …