PHP Classes

PHP Classes blog

Recommend this page to a friend!

Latest PHP Classes blog posts

  All package blogs All package blogs   Blog PHP Classes blog   Post article Post article  
  1947 - 1938   ...   1607 - 1598   1597 - 1588   1587 - 1578   1577 - 1568   1567 - 1558   1557 - 1548   1547 - 1538   1537 - 1528   1527 - 1518   1517 - 1508   1507 - 1498   1497 - 1488   ...   7 - 1  

1101. 5 Best PHP Books for Beginners & Advanced Programmers

Updated on: 2022-07-01

Posted on:

Books are one of the most popular means of learning about any topic.

Suppose you are a developer willing to become better at any topic about PHP and related technologies. In that case, you certainly are interested to know about good books that others recommend to learn.

Read this short article to learn about some books recommended for beginner and advanced PHP programmers by Anastasiia Lastovetska, a technology writer at MLSDev.


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

1100. How to Verify If a PHP Version Upgrade Really Succeeded - 2 minutes - Lately in PHP Podcast Episode 92 Part 8

Updated on: 2022-07-05

Posted on:

Having tests to verify if a PHP version upgrade succeeded is excellent, but unfortunately, that is not enough because there are always aspects of the consequences of the version upgrade that we are not fully aware of initially.

So it is expected that some fixes may be necessary after a PHP version upgrade. Still, you may not even be aware of all the fixes you may need to do after the upgrade.

This situation is where other human beings can help you complete the quality control of the PHP version upgrade process.

Read this article, watch a 2-minute video, or listen to part 8 of episode 92 of the Lately in PHP podcast to learn how you can use the help of other human beings to assure the control of the quality of your applications after a PHP version upgrade.


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)

1099. The Right Order to Execute the Steps to Upgrade to a New PHP Version - 2 minutes - Lately in PHP Podcast Episode 92 Part 7

Updated on: 2022-06-24

Posted on:

One of the reasons why certain version upgrades went wrong is that you do the version upgrade process steps in the incorrect order.

You can determine the correct order by the more critical steps you need to do first because you can only do the following steps when you complete the crucial steps.

Read this article, watch a 2-minute video, or listen to part 7 of episode 92 of the Lately in PHP podcast to learn the correct order of the steps to perform a PHP version upgrade.


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)

1098. How to Get Easy to Understand PHP Performance Metrics to Quickly Improve Your PHP Application Performance

Updated on: 2022-06-21

Posted on:

Measuring the performance of an application is a complex subject. You need to learn many aspects so you can determine how to measure the performance values, so you can make good decisions on what you can do to change your application code, to make your code run faster in a way that is noticeable by the application users.

Visual tools can help you as an application developer to view and interpret the current performance values, so you can compare those values before and after you make code changes, so you can confirm that your application will really run faster after you make those code changes.

Read this short article to learn more about how to visualize the performance values of your Laravel or Symfony applications any time you want using the Scout APM tool for free.


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

1. How to Use a PHP Validation Library that Extracts Validation Rules Automatically from PHP Validation Source Code Files

Updated on: 2022-06-20

Posted on:

Blog: VM PHP Validator Package package blog
Package: VM PHP Validator Package

Validation of data retrieved from external sources like the user input is mandatory in any robust PHP application.

There are many approaches to validating external data.

This package provides an alternative that simplifies the validation process of data passed to classes of objects or returned by those objects.

It uses PHP reflection to minimize the amount of PHP code necessary to validate data passed to classes of objects.

This way, developers reduce the effort to implement robust validation in their PHP applications.


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

  1947 - 1938   ...   1607 - 1598   1597 - 1588   1587 - 1578   1577 - 1568   1567 - 1558   1557 - 1548   1547 - 1538   1537 - 1528   1527 - 1518   1517 - 1508   1507 - 1498   1497 - 1488   ...   7 - 1  
  All package blogs All package blogs   Blog PHP Classes blog   Post article Post article