<?php
// Trỏ tới thư mục Autoload
require_once '/path/to/Faker/src/autoload.php';

// Tạo đối tượng Faker
$faker = Faker\Factory::create();
// Tạo dữ liệu ảo Tên người dùng
echo $faker->name;
 // Tạo dữ liệu ảo Địa chỉ
echo $faker->address;
  // Tạo dữ liệu ảo Đoạn văn
echo $faker->text;
// Nếu muốn tạo nhiều dữ liệu mẫu cùng lúc thì để trong vòng For nhé
for ($i=0; $i < 10; $i++) {
  echo $faker->name, "\n";
}

Sliding Sidebar

About Me

About Me

Hello, my name is Dũng (Johnny). Welcome to my blog.

As I’m a developer, I write about topics related to the field of programming, mainly from a technical point of view. On this blog you’ll find posts which encourage discussion, information about development trends, case studies, reviews, tutorials, tips on how to improve your effectiveness, and anything else that might be fascinating to people from the IT industry.
I love PHP, NodeJS, Java,... and Fullstack.