890. Notable PHP package: PHP Node.js Communication IPC Client
Updated on: 2019-09-10
Posted on: 2019-09-10
Node.js is a popular JavaScript based package that is commonly used to implement Web based applications like PHP but using JavaScript language.
This package provides a solution to allow a PHP application to communicate with a Node.js based application.
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 a solution to allow a PHP application to communicate with a Node.js based application.
Read this article to learn more details about how this notable PHP package works.
889. Notable PHP package: PHP Blake Chain
Updated on: 2019-09-09
Posted on: 2019-09-09
Block chains have been made popular in the latest years as a means to send payments using virtual currencies such as Bitcoin.
This package implements a similar concept in PHP using blocks of chained data and hashes of the data to allow the verification of the authenticity of the chained block data.
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 a similar concept in PHP using blocks of chained data and hashes of the data to allow the verification of the authenticity of the chained block data.
Read this article to learn more details about how this notable PHP package works.
888. Notable PHP package: Simple Laravel Role Management
Updated on: 2019-09-05
Posted on: 2019-09-05
Laravel is a well known framework for developing PHP applications.
There are many components based on this framework including those that are used to control the access of users with different application roles in an application.
This package is one of those components that uses PHP traits to make it simple to implement role based access control in existing Laravel based components.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
There are many components based on this framework including those that are used to control the access of users with different application roles in an application.
This package is one of those components that uses PHP traits to make it simple to implement role based access control in existing Laravel based components.
Read this article to learn more details about how this notable PHP package works.
887. Notable PHP package: PHPDoc PDF Output Generator
Updated on: 2019-09-04
Posted on: 2019-09-04
PHPDoc is a popular format for embedding information on PHP source code files to help documenting it.
This package can generate documentation of PHP source code in PDF format by extracting PHPDoc information that it may contain.
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 can generate documentation of PHP source code in PDF format by extracting PHPDoc information that it may contain.
Read this article to learn more details about how this notable PHP package works.
886. Notable PHP package: PHP Value Objects
Updated on: 2019-09-03
Posted on: 2019-09-03
Value objects are objects that contain information that is meant to be stored or retrieved from application storage containers like database servers.
This package provides traits that can easily turn any class into a value object class.
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 traits that can easily turn any class into a value object class.
Read this article to learn more details about how this notable PHP package works.
885. Notable PHP package: PHP Unique Number Repository
Updated on: 2019-09-02
Posted on: 2019-09-02
Many applications need to use numbers to identify records of information that is stored in their databases. Those identifiers cannot have repeated values. Therefore the numbers must be unique.
It is also useful that the unique numbers are also random, so they cannot be easily predicted in a way that people with bad intentions can exploit the fact that they can anticipate future unique numbers generated by an application.
To make sure that a unique number is also randomly generated, it is necessary to verify if the number was already generated by the application, it is necessary to keep track of all numbers generated in the past.
This package provides an API for a service of repositories that keeps track of all unique numbers generated so far, thus making it easier to check available unique numbers from different parts of an application.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
It is also useful that the unique numbers are also random, so they cannot be easily predicted in a way that people with bad intentions can exploit the fact that they can anticipate future unique numbers generated by an application.
To make sure that a unique number is also randomly generated, it is necessary to verify if the number was already generated by the application, it is necessary to keep track of all numbers generated in the past.
This package provides an API for a service of repositories that keeps track of all unique numbers generated so far, thus making it easier to check available unique numbers from different parts of an application.
Read this article to learn more details about how this notable PHP package works.
884. Notable PHP package: PHP JSON Pretty Print
Updated on: 2019-08-30
Posted on: 2019-08-30
Many developers need to check values used in their applications variables. One easy way of seeing those values is to display them on a Web page.
Nowadays, many developers prefer to use the JSON format to display application variable values. PHP supports the JSON format but sometimes the output of the JSON encoding functions is not very readable.
This class provides a solution to display application variable values using the JSON format in a way that can be more readable for all developers.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
Nowadays, many developers prefer to use the JSON format to display application variable values. PHP supports the JSON format but sometimes the output of the JSON encoding functions is not very readable.
This class provides a solution to display application variable values using the JSON format in a way that can be more readable for all developers.
Read this article to learn more details about how this notable PHP package works.
883. Notable PHP package: Fake PHP Admin Panel HoneyPot
Updated on: 2019-08-28
Posted on: 2019-08-28
Many sites are under attack from people that want to find security holes to be able to abuse from the server resources for some evil purpose.
This package implements a fake administration panel that can be used to make attackers believe they have found security holes on a Web site.
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 a fake administration panel that can be used to make attackers believe they have found security holes on a Web site.
Read this article to learn more details about how this notable PHP package works.
1. How to Find the Distance Between Two Points with Given Latitude and Longitude in PHP?
Updated on: 2019-08-26
Posted on: 2019-08-26
Blog: Geodesy PHP package blog
Package: Geodesy PHP
Many applications require to find the distance between places on Earth.
This is a common problem that only requires knowing the geographic coordinates of those points to be solved.
Read this short article to learn how to solve this problem with a small effort using the Geodesy PHP package.
Geodesy-PHP is a PHP port of some known geodesic functions for getting distance from a known point A to a known point B, given their latitude and longitude (good for working out distances between latitude/longitude data provided by Google Maps or any Restful APIs).
More ...
Post a comment
See comments (1) Trackbacks (0)
This is a common problem that only requires knowing the geographic coordinates of those points to be solved.
Read this short article to learn how to solve this problem with a small effort using the Geodesy PHP package.
Geodesy-PHP is a PHP port of some known geodesic functions for getting distance from a known point A to a known point B, given their latitude and longitude (good for working out distances between latitude/longitude data provided by Google Maps or any Restful APIs).
882. Notable PHP package: PHP CodeIgniter Database Wrapper
Updated on: 2019-08-22
Posted on: 2019-08-22
CodeIgniter is a very popular framework used by many applications written in PHP.
Like many other frameworks it comes with a database abstraction library that allows accessing many different types of SQL based databases with the same function calls.
This package allows developers to use a database abstraction library without having to use the CodeIgniter framework as a whole.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
Like many other frameworks it comes with a database abstraction library that allows accessing many different types of SQL based databases with the same function calls.
This package allows developers to use a database abstraction library without having to use the CodeIgniter framework as a whole.
Read this article to learn more details about how this notable PHP package works.
