php Programming Glossary: libraries
Efficient JPEG Image Resizing in PHP http://stackoverflow.com/questions/12661/efficient-jpeg-image-resizing-in-php that ImageMagick is much faster. At best just compare both libraries and measure that. Prepare 1000 typical images. Write two scripts..
Why shouldn't I use mysql_* functions in PHP? http://stackoverflow.com/questions/12859942/why-shouldnt-i-use-mysql-functions-in-php There always have been and will be lots of excellent libraries for such tasks. If you want to simplify your database interaction..
Working with large numbers in PHP http://stackoverflow.com/questions/211345/working-with-large-numbers-in-php this question For some reason there are two standard libraries in PHP handling the arbitrary length precision numbers BC Math..
Robust and Mature HTML Parser for PHP [duplicate] http://stackoverflow.com/questions/292926/robust-and-mature-html-parser-for-php is rather slow and memory hungry. Any of the libxml based libraries should outperform this easily. Ganon A universal tokenizer and.. expressions is a waste of time when the aforementioned libraries already exist and do a much better job on this. Also see Parsing..
How should I choose an authentication library for CodeIgniter? http://stackoverflow.com/questions/346980/how-should-i-choose-an-authentication-library-for-codeigniter I did a detailed roundup of all the authentication libraries for CodeIgniter when I was testing them out just after New Year's.. get me wrong I don't mean to disrespect any of the above libraries I am very impressed with what their developers have accomplished.. No autoloading required. Just in time loading of libraries for performance Language file support no hard coded strings..
How do you parse and process HTML/XML in PHP? http://stackoverflow.com/questions/3577641/how-do-you-parse-and-process-html-xml-in-php is rather slow and memory hungry. Any of the libxml based libraries should outperform this easily. Ganon A universal tokenizer and.. expressions is a waste of time when the aforementioned libraries already exist and do a much better job on this. Also see Parsing..
How to parse HTML with PHP? [duplicate] http://stackoverflow.com/questions/3650125/how-to-parse-html-with-php is rather slow and memory hungry. Any of the libxml based libraries should outperform this easily. Ganon A universal tokenizer and.. expressions is a waste of time when the aforementioned libraries already exist and do a much better job on this. Also see Parsing..
Is there a static code analyzer [like Lint] for PHP files? [closed] http://stackoverflow.com/questions/378959/is-there-a-static-code-analyzer-like-lint-for-php-files building on Xdebug's function traces. The documentation libraries phpdoc and doxygen perform a kind of code analysis. Doxygen..
Why would one omit the close tag? http://stackoverflow.com/questions/4410704/why-would-one-omit-the-close-tag one related to these 2 characters Even some well known libraries may contain excess line endings after . An example is Smarty..
How do I convert a PDF document to a preview image in PHP? http://stackoverflow.com/questions/467793/how-do-i-convert-a-pdf-document-to-a-preview-image-in-php I convert a PDF document to a preview image in PHP What libraries extensions etc. would be required to render a portion of a PDF.. a portion of a PDF document to an image file Most PHP PDF libraries that I have found center around creating PDF documents but is..
How should a model be structured in MVC? http://stackoverflow.com/questions/5863870/how-should-a-model-be-structured-in-mvc templating engine. There also might be some third party libraries which are able to fully replace View instances. What about the..
How to include a PHP variable inside a MySQL insert statement http://stackoverflow.com/questions/7537377/how-to-include-a-php-variable-inside-a-mysql-insert-statement
JavaScript equivalent of PHP's in_array() http://stackoverflow.com/questions/784012/javascript-equivalent-of-phps-in-array No it doesn't have one. For this reason most popular libraries come with one in their utility packages. Check out jQuery's..
Upload Progress Bar in PHP http://stackoverflow.com/questions/849237/upload-progress-bar-in-php uploader It doesn't require APC or any other external PHP libraries I can get file progress feedback on a shared host and it claims..
How to become an OpenCart guru? http://stackoverflow.com/questions/13478995/how-to-become-an-opencart-guru views which is noted in the relevant section Understanding Libraries All of the library functionality is accessible through Controller..
Commitment to Zend Framework - any arguments against? http://stackoverflow.com/questions/2427981/commitment-to-zend-framework-any-arguments-against at a number of frameworks or more exactly component Libraries as I do not intend to change the basic structure of the CMS..
Robust and Mature HTML Parser for PHP [duplicate] http://stackoverflow.com/questions/292926/robust-and-mature-html-parser-for-php lots of additional examples in the PHP Manual . 3rd Party Libraries libxml based If you prefer to use a 3rd party lib I'd suggest..
export to epub format in php http://stackoverflow.com/questions/3321568/export-to-epub-format-in-php for download or returns it as a string. More Resources Libraries OPL's EPUB library on the fly epub creation share improve..
How do you parse and process HTML/XML in PHP? http://stackoverflow.com/questions/3577641/how-do-you-parse-and-process-html-xml-in-php lots of additional examples in the PHP Manual . 3rd Party Libraries libxml based If you prefer to use a 3rd party lib I'd suggest..
How to parse HTML with PHP? [duplicate] http://stackoverflow.com/questions/3650125/how-to-parse-html-with-php lots of additional examples in the PHP Manual . 3rd Party Libraries libxml based If you prefer to use a 3rd party lib I'd suggest..
What is the best practice for restricting specific pages to logged in users only in Codeigniter? http://stackoverflow.com/questions/3819275/what-is-the-best-practice-for-restricting-specific-pages-to-logged-in-users-only the MY_Controllers inside Application CORE rather than Libraries. My Application Core Looks a little like Admin_Controller.php..
How do you enable customers use their openid on your website, just like stackoverflow? http://stackoverflow.com/questions/477144/how-do-you-enable-customers-use-their-openid-on-your-website-just-like-stackove
what is the difference between a class and a library? http://stackoverflow.com/questions/4952974/what-is-the-difference-between-a-class-and-a-library tried to stay away from the word class in that definition. Libraries can be procedural functional or OOP. That doesn't detract from..
|