PHP Classes

All package blogs

Recommend this page to a friend!

Latest posts of all package blogs

  PHP Classes blog PHP Classes blog   Blog All package blogs  
  889 - 880   ...   649 - 640   639 - 630   629 - 620   619 - 610   609 - 600   599 - 590   589 - 580   579 - 570   569 - 560   559 - 550   549 - 540   539 - 530   ...   9 - 1  

1. How Can PHP Detect CLI or Web Environment on Which It Is Running

Updated on: 2022-07-13

Posted on:

Blog: PHP Web or Cli Detect package blog
Package: PHP Web or Cli Detect

PHP is a flexible language that can run in different environments, for instance, a Web server or a command-line interface shell console.

Developers can create applications that adapt to the different environments in which PHP may run.

This package helps developers who want to adapt to PHP's different environments.

It checks some environment values and returns the information of the specific environment in which it runs.

Using this package, developers only need to adapt their code depending on the environment type that this package returns.


Blog More ...   Post a comment Post a comment   See comments See comments (0)   Trackbacks (0)

1. How to Test a PHP Shopping Site From the Command Line Console

Updated on: 2022-07-08

Posted on:

Blog: PHP Shop Simulator in the Console package blog
Package: PHP Shop Simulator in the Console

Testing is an important step that all application developers should perform to assure the quality of crucial aspects of their software applications.

There are many types of testing. A kind of testing is called human testing.

In human testing, real people test an application and try to achieve a goal, like, for instance, purchasing on a Web site.

This package provides a way to perform human testing of class components that developers can use to implement a shopping site.

It allows users to perform tests in the command line console shell using an application that can take input from users, pick products, and simulate purchases, so they can verify if the shopping application works as expected.

This way, developers can test the shopping application components without using a Web server.


Blog More ...   Post a comment Post a comment   See comments See comments (2)   Trackbacks (0)

1. How to Create PHP Executable Scripts That You Can Run From a Command Line Interface Shell

Updated on: 2022-07-07

Posted on:

Blog: PHP Executable Script Generator package blog
Package: PHP Executable Script Generator

PHP can help run command tools that can perform specific actions.

Many PHP developers are used to managing their projects using commands run from a command-line console shell.

This package can generate a shell script with PJP code that developers can edit to add their custom command tool logic to the hand.

This way, this package simplifies the creation of new console shell script commands written in PHP.


Blog More ...   Post a comment Post a comment   See comments See comments (0)   Trackbacks (0)

1. How to Implement a Simplified PHP Payment System For Companies that Need to Pay Customers, Employees and Suppliers

Updated on: 2022-07-06

Posted on:

Blog: PHP Payment Management System package blog
Package: PHP Payment Management System

Many companies need to perform several operations to manage payments sent and received by different people like customers, employees, etc.

This package implements an application that provides a Web-based interface to allow users to manage the operations related to payments that involve a company.


Blog More ...   Post a comment Post a comment   See comments See comments (0)   Trackbacks (0)

1. Learn How to Improve Your Laravel Applications from a Real Laravel Service Provider Example and a Command Class

Updated on: 2022-07-05

Posted on:

Blog: Laravel Service Provider Helper package blog
Package: Laravel Service Provider Helper

Laravel is a popular PHP framework that helps developers reduce the development time by using design patterns that promote the reuse of components in many ways.

Service and command classes are some design patterns that Laravel promotes to help developers reuse code from one project in other projects.

The package provides an example to help other developers to learn how to use a single helper class to create a Laravel service class and a command class with minimal development effort.


Blog More ...   Post a comment Post a comment   See comments See comments (0)   Trackbacks (0)

1. How to Implement a Better PHP Random Number Generator with Different Seed Values for Each Web Site User

Updated on: 2022-06-29

Posted on:

Blog: PHP Seeder package blog
Package: PHP Seeder

Seed strings are values that often applications use to generate pseudo-random numbers to implement data encryption.

When an application needs to use different seed data to encrypt data with a foreign key or hash value for each user, it is ideal to use unique seed values.

This package generates seed strings from the current HTTP request values to increase the probability of generating unique seed values for all applications.


Blog More ...   Post a comment Post a comment   See comments See comments (0)   Trackbacks (0)

1. How Can PHP Search MySQL Table Fields with Large Text Fields Using the MySQL FIND_IN_SET Function

Updated on: 2022-06-28

Posted on:

Blog: Advanced PHP MySQL Search Controller package blog
Package: Advanced PHP MySQL Search Controller

Many PHP developers use MySQL as a database to store application information dynamically.

PHP developers often need to perform search queries to filter the database table records with field values matching given criteria. Sometimes there is the need to filter records that match multiple criteria.

SQL allows composing complex search queries to combine multiple search criteria.

MySQL has a particular function named FIND_IN_SET that allows defining a condition that can check if string values have a given number of occurrences of another string value.

This class allows composing complex MySQL search queries that combine multiple search conditions. Some conditions can use the FIND_IN_SET function to find database table records with particular values in larger text fields.

This possibility allows PHP developers to perform complex searches to find given text values inside database table field values that have text values the PHP application users want to see.


Blog More ...   Post a comment Post a comment   See comments See comments (0)   Trackbacks (0)

1. How to Implement a PHP Inventory Management Dashboard Using a Laravel Integration with Rackbeat

Updated on: 2022-06-27

Posted on:

Blog: Laravel Rackbeat Integration Dashboard package blog
Package: Laravel Rackbeat Integration Dashboard

Rackbeat is a Web-based service that customers can use to help them manage the inventory in their warehouse places.

It can manage inventory jobs that are going on in a customer warehouse.

This package can help site owners who are Rackbeat customers quickly see the ongoing jobs in their Rackbeat account in one place on their site.

The package implements a Rackbeat jobs dashboard that developers can add to a site built with Laravel.


Blog More ...   Post a comment Post a comment   See comments See comments (0)   Trackbacks (0)

1. How to Implement a Laravel OAuth2 Server API that Can Refresh Expired OAuth Tokens Automatically

Updated on: 2022-06-23

Posted on:

Blog: Laravel Passport Auth Proxy package blog
Package: Laravel Passport Auth Proxy

Laravel Passport is a package intended to provide user authentication for APIs using the OAuth 2 protocol.

An OAuth 2-based API server can generate tokens for the API clients to access the API on behalf of a real human user who authorizes the access to the API services from API client programs.

An OAuth 2 server can generate access tokens that it returns to the API client program. In the subsequent request that the client program sends to the API server, the client only needs to pass a token value to authenticate on behalf of the same user.

API servers should renew the access tokens after some time to improve the security of the API access.

This package provides a service that can perform the renewal of access tokens using refresh tokens by following the procedure determined by the OAuth 2 protocol specification.

This package can make the OAuth 2-based APIs based on the Laravel Passport more secure.


Blog More ...   Post a comment Post a comment   See comments See comments (0)   Trackbacks (0)

1. How to Use a Laravel Livewire Select Input That Can be Updated Interactively Communicating with the Web Server Using AJAX Requests

Updated on: 2022-06-22

Posted on:

Blog: Laravel Livewire Select2 Alternative package blog
Package: Laravel Livewire Select2 Alternative

Laravel Livewire is a framework built on top of the Laravel framework that makes it easier to develop Web applications that provide Web interfaces that can change dynamically.

It supports components that can change the Web interface after interacting with the Web server using AJAX requests.

This component can interact with a Web server after the user picks options in a form select input.


Blog More ...   Post a comment Post a comment   See comments See comments (0)   Trackbacks (0)


  889 - 880   ...   649 - 640   639 - 630   629 - 620   619 - 610   609 - 600   599 - 590   589 - 580   579 - 570   569 - 560   559 - 550   549 - 540   539 - 530   ...   9 - 1  
  PHP Classes blog PHP Classes blog   Blog All package blogs