473. Notable PHP package: ITE PSR-6 Cache
Updated on: 2016-10-25
Posted on: 2016-10-25
PSR-6 is a PHP Standards Recommendation from the FIG (Framework Interoperability Group) that defines a common interfaces for packages that want to implement data caching functionality.
This package provides an implementation of the PSR-6 interfaces to store and retrieved cache data in several types of containers like files, session variables and memcached.
This way all applications that need a caching package can use interchangeably these or other compatible packages that implement the PSR-6 interfaces.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
This package provides an implementation of the PSR-6 interfaces to store and retrieved cache data in several types of containers like files, session variables and memcached.
This way all applications that need a caching package can use interchangeably these or other compatible packages that implement the PSR-6 interfaces.
Read this article to learn more details about how this notable PHP package works.



472. How to Stream Your PHP Code on Livecoding.tv
Updated on: 2016-10-24
Posted on: 2016-10-24
Livecoding.tv is a live streaming platform that allows people to share code, exchange programming experiences, and socialize, while improving their code.
Read this article to learn how you can expose your PHP programming skills while you program live, as well how you can embed your recording live streaming videos in PHP Classes, so other PHP Classes users can learn how you are doing your work.
More ...
Post a comment
See comments (0) Trackbacks (0)
Read this article to learn how you can expose your PHP programming skills while you program live, as well how you can embed your recording live streaming videos in PHP Classes, so other PHP Classes users can learn how you are doing your work.



471. Notable PHP package: PHP Web Application Firewall
Updated on: 2016-10-20
Posted on: 2016-10-20
Some security attacks are performed by sending requests to Web servers that it is not expected to handle.
One way to minimize the chances of these attacks happening is to use a Web application firewall (WAF).
This package implements a Web Application Firewall in PHP for Web servers that support htaccess configuration.
It alters the .htaccess file so requests are handled by a script of this framework. It keeps track of a white list of request URLs supported by your application, so only approved URL formats are allowed.
URLs with unknown formats are put in moderation, so an administrator can approve the URLs or not for future requests.
This way the application can be protected from types of requests meant to perform security exploits.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
One way to minimize the chances of these attacks happening is to use a Web application firewall (WAF).
This package implements a Web Application Firewall in PHP for Web servers that support htaccess configuration.
It alters the .htaccess file so requests are handled by a script of this framework. It keeps track of a white list of request URLs supported by your application, so only approved URL formats are allowed.
URLs with unknown formats are put in moderation, so an administrator can approve the URLs or not for future requests.
This way the application can be protected from types of requests meant to perform security exploits.
Read this article to learn more details about how this notable PHP package works.



1. How Can PHP Read PDF File Content and Extract Text from PDF using PHP - How Can PHP Extract Image from PDF and Search PDF Content using PHP PDFToText Class
Updated on: 2017-04-23
Posted on: 2016-10-19
Blog: PHP PDF to Text package blog
Package: PHP PDF to Text
Extracting text from individual pages or whole PDF document files in PHP is easy using the PdfToText class.
Read this article that is the first of a series that will teach you about the challenge of processing the PDF file format and how the PdfToText class can be used to extract text and images from it.
More ...
Post a comment
See comments (21) Trackbacks (0)
Read this article that is the first of a series that will teach you about the challenge of processing the PDF file format and how the PdfToText class can be used to extract text and images from it.



470. Notable PHP package: waPluginator
Updated on: 2016-10-18
Posted on: 2016-10-18
Some projects need to create files of different types, for instance to create themes and other types of configuration plugins.
Usually these files can be created from templates but if you need non-technical users to edit those files, they will not be able to do it because it is more complicated than they can handle.
This package provides a better alternative that consists in defining parameters that the users can edit using regular Web forms, thus without having to edit templates or configuration files.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
Usually these files can be created from templates but if you need non-technical users to edit those files, they will not be able to do it because it is more complicated than they can handle.
This package provides a better alternative that consists in defining parameters that the users can edit using regular Web forms, thus without having to edit templates or configuration files.
Read this article to learn more details about how this notable PHP package works.



469. PHP 8 Performance to be Boosted with a JIT engine - Lately in PHP podcast episode 76
Updated on: 2016-12-23
Posted on: 2016-10-17
Recently Dmitry Stogov of Zend announced that he is restarting the work on JIT engine that eventually will boost the performance of PHP 8.
These great news was one of the main topics discussed by Manuel Lemos and Johnny Mast on the episode 76 of the Lately in PHP podcast now also being streamed using livecoding.tv.
In this episode they also commented about new proposals for PHP like having both PHP 5 and PHP 7 builds running on the same Web server, single entry PHP apps for reducing the overhead of application bootstrap code, type strict comparisons, built-in request and response objects in PHP, among other topics.
This article also contains the transcript of the podcast summary.
Listen to the podcast, or watch the hangout video to learn more about these interesting PHP topics.
More ...
Post a comment
See comments (0) Trackbacks (0)
These great news was one of the main topics discussed by Manuel Lemos and Johnny Mast on the episode 76 of the Lately in PHP podcast now also being streamed using livecoding.tv.
In this episode they also commented about new proposals for PHP like having both PHP 5 and PHP 7 builds running on the same Web server, single entry PHP apps for reducing the overhead of application bootstrap code, type strict comparisons, built-in request and response objects in PHP, among other topics.
This article also contains the transcript of the podcast summary.
Listen to the podcast, or watch the hangout video to learn more about these interesting PHP topics.



468. Notable PHP package: PHP Safe Image Preview
Updated on: 2016-10-13
Posted on: 2016-10-13
Some sites need to receive images from users that may not be safe for displaying to non-adults.
In this case it may be better to avoid showing those images to children. However, when you don't know if the user is not an adult, it would be better to show an obfuscated version of the image.
This class can use an API to determine if an image is not safe for showing to non-adults. It can also return a blurred version when it is the case, thus avoid showing the image explicitly.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
In this case it may be better to avoid showing those images to children. However, when you don't know if the user is not an adult, it would be better to show an obfuscated version of the image.
This class can use an API to determine if an image is not safe for showing to non-adults. It can also return a blurred version when it is the case, thus avoid showing the image explicitly.
Read this article to learn more details about how this notable PHP package works.



467. You have doing PHP iteration the wrong way!
Updated on: 2016-10-12
Posted on: 2016-10-12
Never loop through a problem that should be solved by iteration.
Read this opinion article to understand why using iterators is a better idea than using loops in PHP.
More ...
Post a comment
See comments (10) Trackbacks (0)
Read this opinion article to understand why using iterators is a better idea than using loops in PHP.



466. Notable PHP package: BurgeATS
Updated on: 2016-10-11
Posted on: 2016-10-11
Many developers work for companies that have many times of needs but all those that have customers that need to provide support, often need a platform to keep track of their customer contacts and support requests.
This package implements an extensive solution to keep track of the customer information as in a CRM, as well the details of their support tickets and their status.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
This package implements an extensive solution to keep track of the customer information as in a CRM, as well the details of their support tickets and their status.
Read this article to learn more details about how this notable PHP package works.



465. PHP Articles Report September 2016 Edition
Updated on: 2016-10-07
Posted on: 2016-10-07
This is the September edition of the podcast hangout recorded by Manuel Lemos and Arturs Sosins to comment on the latest outstanding PHP Articles published recently.
They commented on articles about logging events and show them with nice graphs, getting currency exchange rates for the present or any past date, getting PHP jobs in high growth companies, using error monitoring services, generating SQL to install database schemas, and several articles and videos to help developers create software product businesses.
Listen to the podcast, or watch the hangout video to learn more about these PHP articles.
More ...
Post a comment
See comments (0) Trackbacks (0)
They commented on articles about logging events and show them with nice graphs, getting currency exchange rates for the present or any past date, getting PHP jobs in high growth companies, using error monitoring services, generating SQL to install database schemas, and several articles and videos to help developers create software product businesses.
Listen to the podcast, or watch the hangout video to learn more about these PHP articles.


