PHP Classes

File: src/Helpers/Functions.php

Recommend this page to a friend!
  Classes of Roman Kozin   PHP Random User Generator   src/Helpers/Functions.php   Download  
File: src/Helpers/Functions.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Random User Generator
Generate random data for users from randomuser.me
Author: By
Last change:
Date: 5 years ago
Size: 163 bytes
 

Contents

Class file image Download
<?php

if (!function_exists('dd')) {
    function
dd()
    {
        foreach (
func_get_args() as $arg) {
           
dump($arg);
        }

        die();
    }
}