PHP code example of quanghuybest2k2 / abc

1. Go to this page and download the library: Download quanghuybest2k2/abc library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

quanghuybest2k2 / abc example snippets




uanghuybest2k2\abc\say\Bye;
use quanghuybest2k2\abc\say\Hello;

$ten = "Đoàn Quang Huy";

$hello = Hello::sayHello($ten);
$bye = Bye::sayBye($ten);

echo $hello . "<br/>" . $bye;

/* output:
Xin chào bạn Đoàn Quang Huy
Tạm biệt bạn Đoàn Quang Huy*/