1. How to Implement a PHP Queue Jobs System that Will Execute a Tasks by a Specific Order using Job Pipes
Updated on: 2021-01-02
Posted on: 2021-01-02
Blog: PHP Queue Jobs Piping package blog
Package: PHP Queue Jobs Piping
For instance, this can be the case of a newsletter mailing list processing task that can be split in smaller tasks like 1) pull the list of recipients from a database, 2) merge the recipient information in the newsletter message contents, 3) send the newsletter messages to each recipient.
This package allows implementing a queue of tasks to be run by the same script.
Applications just need to define objects of classes that will run the different tasks and pass them to this package, so the task objects are queued.
Later, this package can run all the tasks one after the other by calling the objects that were queued.
This way this package can simplify the division of complex tasks in smaller tasks that execute simpler steps.



1. How Can PHP Recognize Text in Russian Sentences that May Be Misspelled Using Metaphone
Updated on: 2020-12-31
Posted on: 2020-12-31
Blog: Russian PHP Metaphone package blog
Package: Russian PHP Metaphone
This allows to compare two words or two sentences to detect how similar they may be in terms of pronunciation.
This way it is possible to detect if the user has written a given word or sentence with spelling mistakes.
The pronunciation rules are different from language to language. The most common implementations of the algorithm are meant to be used with sentences in the English language.
This package provides an implementation of the Metaphone algorithm that works well in Russian.



1. How to Quickly Implement a PHP JSON Search File Solution Similar to Using XPath for XML
Updated on: 2020-12-29
Posted on: 2020-12-29
Blog: PHP JSON Path package blog
Package: PHP JSON Path
This package implements a way to search in PHP objects or other type of data structures using a language to define search criteria very similar to XPATH.
It helps searching and processing complex data structures using minimal amount of code.



1. How to Implement Your Own CMS Modules Using This PHP CMS Module Builder on Top of XOOPS CMS
Updated on: 2020-12-26
Posted on: 2020-12-26
Blog: XOOPS Modules Builder package blog
Package: XOOPS Modules Builder
This package can be used to develop new modules, thus allowing to extend XOOPS in less time than if you had to manually write all code of a new XOOPS module.



1. How to Use a PHP Debug Class to Find and Fix Code Issues Related with Global Variables
Updated on: 2020-12-22
Posted on: 2020-12-22
Blog: PHP Dump All Variables and Functions package blog
Package: PHP Dump All Variables and Functions
This package makes it easier to inspect and display all types of global variables that are set when a PHP script is executed.
This way, this package may help debugging a case in less time than it would take using more traditional debug methods.



1. How to Automate the Calls to a PHP CRUD API
Updated on: 2020-12-19
Posted on: 2020-12-19
Blog: Mezon PHP CRUD API Service Client package blog
Package: Mezon PHP CRUD API Service Client
These CRUD interfaces may be used by Web page based applications or mobile applications calling an API.
This package simplifies the implementation of CRUD interfaces to be accessible via Web APIs, by providing basic functionality that most CRUD implementations need to provide.
This way you can implement Web page based or mobile applications in less time than if you had to implement a CRUD interface in more traditional ways.



1. How to Implement PHP Money Calculations in Laravel Model Objects
Updated on: 2020-12-17
Posted on: 2020-12-17
Blog: Laravel Money Package package blog
Package: Laravel Money Package
This package implements operations with money amounts that go behind money value formatting as text, like for instance deposit and withdraw funds or calculating sums of amounts stored in objects of model classes implemented with the Laravel framework.
This package can greatly simplify complex operations that you may need to perform with money amounts of applications related finances.



1. Welcome to dFramework - A simple PHP framework for beginners
Updated on: 2020-12-16
Posted on: 2020-12-16
Blog: dFramework package blog
Package: dFramework



1. How to Create a PHP URL Shortner using a MongoDB Database to Store the URLs
Updated on: 2020-12-16
Posted on: 2020-12-16
Blog: Encurtador URL MongoDB package blog
Package: Encurtador URL MongoDB
That may help to encourage users to share URLs just by typing them, as they need to type less characters to share the same URL that often may be very long.
This package provides a URL shortner solution that uses MongoDB, thus making it more feasible to scale a solution that can be used to share many more URLs using less resources from servers running PHP, than it would by using more traditional databases.



1. How to Embed a WordPress Audio Player So Your Site Can Play Audio Samples and Playlists
Updated on: 2020-12-14
Posted on: 2020-12-14
Blog: Dynamic WordPress Audio Player Plugin package blog
Package: Dynamic WordPress Audio Player Plugin
This package can embed an audio player in Web pages generated by WordPress with the possibility to present individual songs or complete play lists of multiple songs or audio samples.
Since it just requires that the publisher that edits the pages insert only a single tag in the WordPress post editor, this solution to embed a audio player is very simple.


