2023-02-16 12:47:43 +09:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
require "../vendor/autoload.php";
|
|
|
|
|
|
2023-02-16 13:02:27 +09:00
|
|
|
print "Bytes: " . CoreLibs\Convert\Byte::humanReadableByteFormat(123414) . "<br>";
|
|
|
|
|
|
2024-11-06 18:56:17 +09:00
|
|
|
$curl = new CoreLibs\UrlRequests\Curl();
|
|
|
|
|
print "Config: " . print_r($curl->getConfig(), true) . "<br>";
|
|
|
|
|
|
2023-02-16 12:47:43 +09:00
|
|
|
// __END__
|