<?php
namespace popp\ch03\batch01;
use popp\ch03\batch01\ShopProduct;
class Runner
{
public static function run()
{
/* listing 03.02 */
$product1 = new ShopProduct();
$product2 = new ShopProduct();
/* /listing 03.02 */
/* listing 03.03 */
var_dump($product1);
var_dump($product2);
/* /listing 03.03 */
}
}
var_dump(Runner::run());
<?php
use Zend\Diactoros\Response\HtmlResponse;
use Zend\Diactoros\Response\SapiEmitter;
use Zend\Diactoros\ServerRequestFactory;
chdir(dirname(__DIR__));
require 'vendor/autoload.php';
### Initialization
$request = ServerRequestFactory::fromGlobals();
### Action
$path = $request->getUri()->getPath();
if ($path === '/') {
$name = $request->getQueryParams()['name'] ?? 'Guest';
$response = new HtmlResponse('Hello, ' . $name . '!');
} elseif ($path === '/about') {
$response = new HtmlResponse('I am a simple site');
} else {
$response = new HtmlResponse('Undefined page', 404);
}
### Postprocessing
$response = $response->withHeader('X-Developer', 'ElisDN');
### Sending
$emitter = new SapiEmitter();
$emitter->emit($response);
Я понимаю что так будет показываться список доменов с хмл файла.
$settings->resolvedomains С тоски зрения программирования как понять что тут происходит?