¡@

Home 

php Programming Glossary: overkill

Which PHP frameworks are used by corporations?

http://stackoverflow.com/questions/1082059/which-php-frameworks-are-used-by-corporations

Sometimes a framework either won't make sense or will be overkill othertimes you're better off using a pre built product like..

PHP - most lightweight psr-0 compliant autoloader

http://stackoverflow.com/questions/12082507/php-most-lightweight-psr-0-compliant-autoloader

easily use the symfony2 class loader but it seems like overkill. Is there a stable extremely lightweight psr 0 autloader out..

Can I try/catch a warning?

http://stackoverflow.com/questions/1241728/can-i-try-catch-a-warning

I now have 2 options set_error_handler seems like overkill because I have to use it to filter every warning in the page..

Optimizing Kohana-based Websites for Speed and Scalability

http://stackoverflow.com/questions/1260134/optimizing-kohana-based-websites-for-speed-and-scalability

with nginx. Well maybe some of those ideas are a bit overkill in your situation ^^ But still... Why not study them a bit just..

create api using php

http://stackoverflow.com/questions/1906255/create-api-using-php

If it's a simple API SOAP and probably XML RPC will be overkill you don't want to have to create a WSDL file install a SOAP..

data mapper vs active record [closed]

http://stackoverflow.com/questions/2169832/data-mapper-vs-active-record

to inject persistence collaborators disadvantages can be overkill on small projects that will not grow disclaimer I'm strongly..

Object Oriented PHP Best Practices

http://stackoverflow.com/questions/2407807/object-oriented-php-best-practices

it's not really necessary to do so and could be considered overkill for some uses for example when your object is doing very little..

Best practices to test protected methods with PHPUnit [closed]

http://stackoverflow.com/questions/249664/best-practices-to-test-protected-methods-with-phpunit

Method Object as adviced in an answer seems to be overkill for this. Start with public methods and when code coverage is..

How to enable and use HTTP PUT and DELETE with Apache2 and PHP?

http://stackoverflow.com/questions/2934554/how-to-enable-and-use-http-put-and-delete-with-apache2-and-php

People mention using WebDAV but to me that seems like overkill. After all I don't need DAV locking a DAV filesystem etc. All..

How long should my password salt be, and is SHA-256 good enough?

http://stackoverflow.com/questions/3191690/how-long-should-my-password-salt-be-and-is-sha-256-good-enough

hash digest to your database. It may seem like security overkill for a gaming site but it's a good practice to do it. Because..

How should I choose an authentication library for CodeIgniter?

http://stackoverflow.com/questions/346980/how-should-i-choose-an-authentication-library-for-codeigniter

Note those last few points are not super high security overkill that you don't need for your web application. If an authentication..

Are there limits for session variables?

http://stackoverflow.com/questions/4274955/are-there-limits-for-session-variables

them over NFS although it helped in our case this may be overkill for you . Note that for many concurrent users and session storage..

Converting a number with comma as decimal point to float

http://stackoverflow.com/questions/4325363/converting-a-number-with-comma-as-decimal-point-to-float

seem to work with this format and str_replace seems like overkill as I have to do it more that once on each number. Is there are.. question Using str_replace to remove the dots is not overkill. string_number '1.512.523 55' NOTE You don't really have to..

Is time() a good salt

http://stackoverflow.com/questions/4983915/is-time-a-good-salt

secure unpredictable PRNG may be some kind of overkill but at least it provably protects you against all those hazards...

Scaling a chat app - short polling vs. long polling (AJAX, PHP)

http://stackoverflow.com/questions/5313641/scaling-a-chat-app-short-polling-vs-long-polling-ajax-php

this question A few notes Polling every second is overkill. The app will still feel very responsive with a few seconds..

Properly calling the database from Model in an MVC application?

http://stackoverflow.com/questions/5895805/properly-calling-the-database-from-model-in-an-mvc-application

of the Model since a full MVC framework and ORM is overkill for just a few database calls. Class Model Using an empty class..

More efficient hierarchy system

http://stackoverflow.com/questions/8431463/more-efficient-hierarchy-system

destroy session on window close?

http://stackoverflow.com/questions/959655/destroy-session-on-window-close

this solution . An Ajax request for every changed page is overkill and literally doubles the hits on the server without counting..