glob also supports limited alternation with {n1, n2, etc..}. You have to specify GLOB_BRACE as the 2nd argument for glob in order for it to work. So for example, if you executed glob("{a,b,c}.php", GLOB_BRACE) on the following list of files:
a.php
b.php
c.php
GLOB_BRACE - Раскрывает {a,b,c} для совпадения с 'a', 'b' или 'c'.
[...] - Соответствует одному символу из группы. Если первый символ !, то соответствует любому символу, не входящему в группу
$ xgamma -gamma .7
$ sudo lshw -c display |grep driver
конфигурация: driver=nvidia latency=0
$ lspci | grep -E "VGA|3D"
06:00.0 VGA compatible controller: NVIDIA Corporation TU106 [GeForce RTX 2060 Rev. A] (rev a1)
HTTP/1.1 200 OK
Server: nginx/1.14.2
Content-Type: text/plain
x_tt_logid: 20200520184526010189053133405E8ED3
tt_stable: 1
x-tt-logid: 20200520184526010189053133405E8ED3
server-timing: inner; dur=12
x-tt-trace-host: 0179924be86c341a746031f363eeed44f0cf9e97435731f3a9ea7f01ecfdbe1f55b4ff0b592e46fd3506d5ab60509f9bcb7db5afe35d6464a2fe79937620063dec7ec0856537f039ce080a4262296a5f6b0dfffffe19949c85e652c2c5c7f8eead
x-tt-trace-tag: id=00;cdn-cache=miss
X-Origin-Response-Time: 21,23.38.170.157
Date: Wed, 20 May 2020 18:45:26 GMT
Content-Length: 0
Connection: keep-alive
Server-Timing: cdn-cache; desc=MISS
Server-Timing: edge; dur=118
Server-Timing: origin; dur=21
X-Parent-Response-Time: 138,2.16.154.29
$app = new App();
$app->db();
$app->render();
$app->router();
$app->validate();
$app = new App();
$app['db']->select();
$app['render']->render();
$app['router']->post();
$app['validator']->validate();