Search Results

0
votes

php: output[] w/ join vs $output .=

If you're generating a list (e.g. a shopping cart), you should have some code that generates the HTML from each entry fetched from the database. for ($prod in $cart) { $prod->p …
0
votes

Would performance suffer using autoload in php and searching for the class file?

Hunting for files all over the place will make things slower (many more disk hits). Loading all of your classes in case you might need them will make things take more memory. Specifying which class …
7
votes

What are the benefits of OO programming? Will it help me write better code?

Objects help encapsulate complexity. For most PHP programming, it's impossible to write good, clean code for any reasonably complicated application. Writing OO PHP helps you put that code into its …
6
votes

Best way to cache resized images using PHP and MySQL

I would do it in a different manner. Problems: 1. Having PHP serve the files out is less efficient than it could be. 2. PHP has to check the existence of files every time an image is reques …
6
votes

Closures in PHP… what, precisely, are they and when would you need to use them?

When you will need a function in the future which performs a task that you have decided upon now. For example, if you read a config file and one of the parameters tells you that the h …