Best of PHPDecember 2021

  1. 1
    Article
    Avatar of phProduct Hunt·4y

    Leaf 3 - Simple and elegant PHP

    Leaf is a slim and lightweight PHP framework for quickly bootstrapping clean, simple but powerful web apps and APIs quickly and easily. Leaf 3 brings more to the table with a theme centring on developer experience and usability. Leaf is available as a free download on GitHub.

  2. 2
    Article
    Avatar of tuts_plusTuts+·4y

    PHP Magic Methods Cheatsheet

    PHP magic methods allow you to perform various operations with objects. The best example of a magic method is the __construct() function, which is called automatically when the object is instantiated. The aim of this article is to go through all the magic methods in PHP and explain each one briefly.

  3. 3
    Article
    Avatar of dzDZone·4y

    Top 7 Web Development Languages To Use In 2022

    Today, web development is seemingly a promising job. If you are a newcomer in this field, the nuisance here is where to start or which web development languages you should learn. This article from Designveloper will well equip you with fundamental knowledge so that you can choose the right language for future jobs.

  4. 4
    Article
    Avatar of gcgitconnected·4y

    Top 10 PHP 8.1 Features You Should Start Using Now

    Learn the most amazing features offered by PHP 8.1 update. The most exciting one is the new JIT compiler. New ‘full_path’ Key in ‘$_FILES’ for Directory Uploads. ‘fsync()’ and ‘fdatasync’ Functions Array Unpacking Support for String-Keyed Arrays

  5. 5
    Article
    Avatar of lnLaravel News·4y

    Our top 10 Laravel Tutorials of 2021

    Laravel is fast out-of-the-box, but you can make it faster if you optimize your configurations and application code. Find N+1 problems instantly by disabling lazy loading in development. Laravel provides many excellent helper functions that are convenient for working with arrays, file paths, strings, and routes.

  6. 6
    Article
    Avatar of tuts_plusTuts+·4y

    How to Use Yield and Generators in PHP

    The word yield means produce or generate which is basically what the keyword does in PHP. It generates a value for use outside your function without entirely stopping its execution and returning. It gives you the ability to pause the execution while you do something else with the returned value. The advantage of using generators is low memory usage.