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  
  812 - 803   802 - 793   792 - 783   782 - 773   772 - 763   762 - 753   752 - 743   742 - 733   732 - 723   722 - 713   712 - 703   702 - 693   692 - 683   ...   2 - 1  

1. How Can PHP Send Email to Gmail Users that Are in the Contacts of a Given Gmail User with His Permission

Updated on: 2023-04-28

Posted on:

Blog: PHP Google Contacts API package blog
Package: PHP Google Contacts API

Many people that access the Internet have Google accounts to access Google products like, for instance, Gmail.

Gmail users have a contact list to make sending emails to others they have exchanged messages easily. These contacts are accessible using the Google People API.

This package can access the Google People API to perform operations with a user's contacts with a Google account.

This way, this package makes it easier to implement applications that can make good use of the access to a person's contacts with a Google account, for instance, sending invitations to social networks to people in their contact list.


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

1. A Tool That You Can Use to Display a PHP Dependency Graph to Show How PHP Packages in a Project Depend on Each other

Updated on: 2023-04-27

Posted on:

Blog: PHP Graph Tools package blog
Package: PHP Graph Tools

Directed graphs are a set of vertex points and edges that connect the vertexes in a given direction.

These graphs are often used to define state machines that developers can use to model parts of applications that need to represent visually different states of an application, for instance, language parsers and interpreters.

The package provides classes that model graphs and can perform several operations, allowing developers to build and traverse directed graphs in their PHP applications quickly.


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

1. How Can PHP Embed Video or Slide Presentations in a Web Page Making the Page Load Faster Using Lazy Loading

Updated on: 2023-04-26

Posted on:

Blog: PHP Embed Video package blog
Package: PHP Embed Video

Showing videos from YouTube or presentations of SlideShare is something that many sites do to provide better content to their users.

Since Google started to evaluate the user experience of sites, the speed of loading and rendering a page started to be considered as a factor to evaluate the user experience.

Lazy loading is a technique that can make pages load much faster to improve the user experience.

Read this article to learn how to improve the speed of loading pages using HTML generated by the PHP Embed Video package using the example code presented in this article.




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

1. How to Use a PHP HTML Class to Quickly Generate HTML and JavaScript and JQuery Code Using PHP Class Calls

Updated on: 2023-04-25

Posted on:

Blog: PHP HTML Generator Library with jQuery Support package blog
Package: PHP HTML Generator Library with jQuery Support

All sites served using PHP need to output HTML. One way to output that HTML code using PHP is to compose and generate the HTML from parameters that define details of the HTML tags that developers need to develop to manage the page output.

This package provides a class to generate HTML tags and JavaScript code to call the jQuery library.

The class uses the PHP __call handler to allow the addition of any HTML tag or jQuery function library call to the current page output.

This way, the code of these classes is minimal, as they do not need to have many functions to support all HTML tags or jQuery functions.


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

1. How Can PHP Output JSON of Large Arrays or Objects Without Using Too Much Memory to Avoid Exceeding the Configured PHP Memory Limit

Updated on: 2023-04-24

Posted on:

Blog: PHP JSON Encode Large Data package blog
Package: PHP JSON Encode Large Data

JSON is a format for encoding data structures as strings. PHP can encode any variable type using the JSON format.

Suppose you want to encode an array with many elements. In that case, the PHP JSON encoding function can take a lot of memory because it needs to take a variable as a parameter with all the elements and create a string in memory with the result of the JSON encoding process.

This package provides a better solution that takes much less memory. It can encode one array element at a time and outputs it immediately without adding all elements to the array.

This way, the class does not store all array elements, and that will save a lot of memory, keeping the memory usage within limits set in the PHP configuration.


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

1. How to Find More Valuable Opportunities in Software Projects using a PHP Game

Updated on: 2023-04-21

Posted on:

Blog: Find the Weird Duck PHP Game package blog
Package: Find the Weird Duck PHP Game

Games help train people to solve challenging problems.

The Find the Duck game presents a challenging problem: finding something that looks wrong in certain situations.

In the case of this game, what is wrong is what looks different from the average.

Sometimes what is different may not be wrong, but it can be what is more valuable. This is how people spot new opportunities to solve problems in a better way for other people.

This package implements a PHP version of the Find the Duck Game.

This simple game can help managers find people who are good at paying attention to details in projects that may be causing significant problems that need to be solved.


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

1. How to Use PHP Object Keys Using Dot Notation Strings to Quickly Access Nested Objects and Arrays

Updated on: 2023-04-20

Posted on:

Blog: Nested PHP Accessor package blog
Package: Nested PHP Accessor

Dot notation is a convention to define strings that can specify the position of a value that makes part of a nested array or object.

Using the dot notation can simplify the way you can access the array or objects using strings instead of the usual syntax that PHP provides to access element values that may exist in deep locations of the

This package provides classes with functions that can access array or object elements using dot notation strings to specify the elements' path.


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

1. How to Implement a PHP Artificial Intelligence Based Laravel Application using ChatGPT API Services

Updated on: 2023-04-19

Posted on:

Blog: Laravel GPT package blog
Package: Laravel GPT

ChatGPT became a popular application of artificial intelligence due to its capability to automatically process requests from humans and translate them into practical actions that are done in much less time than they would take if they were done in traditional methods.

This package provides a Laravel service PHP class that can perform several types of actions to process text, images, and audio using Chat GPT API.


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

1. How to Implement a PHP XML Converter Tool that Can Transform XML Generated by One Application into XML Used By Another Application

Updated on: 2023-04-17

Posted on:

Blog: PHP XML Converter package blog
Package: PHP XML Converter

XML is a trendy format for saving structured data in a platform-independent way.

Many applications use XML formats to save project data to files. Each application uses different variants of XML.

Therefore, when it is necessary to use project data from one application in another application, the XML format of the original application needs to be converted to the other application's XML format.

This package demonstrates how to convert XML data between different applications.


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

1. How to Use a PHP MySQL Architecture Tool to Quickly View and Navigate over a MySQL Database Structure in Web Page or Terminal Console

Updated on: 2023-04-14

Posted on:

Blog: PHP MySQL Info to MD package blog
Package: PHP MySQL Info to MD

MySQL is a prevalent SQL database server type many PHP developers use.

Sometimes developers want an overview of the MySQL database table structure details. There are several SQL commands that MySQL supports to give that overview.

This package provides an excellent presentation of the MySQL database table structure details in a way that is easier to understand than the output of the SQL query results that return that information.


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


  812 - 803   802 - 793   792 - 783   782 - 773   772 - 763   762 - 753   752 - 743   742 - 733   732 - 723   722 - 713   712 - 703   702 - 693   692 - 683   ...   2 - 1  
  PHP Classes blog PHP Classes blog   Blog All package blogs