MinIO Commands
## Alias to Minio Server
mc alias set myminio http://localhost:9000 <access-key> <secret-key>
## List Directories (Root Buckets + Directories)
mc ls myminio
mc ls myminio bucket/folder
```php | |
header('Content-Description: File Transfer'); | |
header('Content-Type: application/octet-stream'); | |
header('Content-Disposition: attachment; filename=' . $zip['name']); | |
header('Content-Transfer-Encoding: binary'); | |
header('Connection: Keep-Alive'); | |
header('Expires: 0'); | |
header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); | |
header('Pragma: public'); | |
//header('Content-Length: ' . $size); |
Regulat Expression Patter: ^(?:\\+?\\+880|880|0)?1\d{9}$ | |
Input: | |
============ | |
01711091770 | |
00711091770 | |
1711091770 | |
8801711091770 | |
881711091770 |
## Alias to Minio Server
mc alias set myminio http://localhost:9000 <access-key> <secret-key>
## List Directories (Root Buckets + Directories)
mc ls myminio
mc ls myminio bucket/folder
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>HTML to PDF</title> | |
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"> | |
</head> | |
<body> | |
<main> |
<?php | |
/** | |
* This function will check the text and find the domain name from test. | |
* If any domain found then it will validate domain name. If domain valid | |
* then return true otherwise return false. | |
* | |
* @param $textString | |
* @return bool | |
*/ |
<?php | |
namespace app\Components; | |
use Vision\Annotation\SafeSearchAnnotation; | |
use Vision\Request\Image\Base64Image; | |
use Vision\Vision; | |
/** |
<?php | |
/** | |
* Class XMLRPCClient | |
*/ | |
class XMLRPCClient | |
{ | |
/** | |
* @var | |
*/ |
<!doctype html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<title>MDN Example</title> | |
<script type="text/javascript"> | |
function closePrint () { | |
document.body.removeChild(this.__container__); | |
} |
<?xml version="1.0" encoding="UTF-8"?> | |
<phpunit | |
colors="true" | |
processIsolation="false" | |
stopOnFailure="false" | |
syntaxCheck="false" | |
bootstrap="./tests/bootstrap.php" | |
backupGlobals="true" | |
> |