<?php require_once 'Lab2.php'; $lab = new Lab2([require_once "data.php"], "population"); ?> <!doctype html> <html> <head> <meta charset="UTF-8"> <title>Lab1</title> <link rel="stylesheet" href="style.css"/> <script src="js/common.js"></script> <script src="js/Chart.js"></script> </head> <body> <div class="content"> <h1>Лабораторна робота №2</h1> <h2>Виконав: Пятін Віталій</h2> <h3>Варіант №16</h3> <table> <thead> <tr> <td>Назва держав і територій</td> <td>Площа,тис. кв. км.</td> <td>Населення, тис. чол.</td> <td>Столиця</td> <td>Населення столиці, тис. чол.</td> </tr> </thead>
$horario = new DateTime(); $horario->setTimezone($timezone_brasil); $retorno['horario_brasil'] = $horario->format('d/m/Y H:i:s'); # Criando objeto com o fuso escolhi no formulario $timezone_escolhido = new DateTimeZone($fuso); $retorno['fuso_escolhido'] = $fuso; # Alterando timezone do horário $horario->setTimezone($timezone_escolhido); $retorno['horario'] = $horario->format('d/m/Y H:i:s'); // Retorno do array return $retorno; } } // Verifica se formulario foi postado if ($_POST) { $obj_Lab2 = new Lab2(); $resultado = $obj_Lab2->converterHorario($_POST['fuso']); } ?> <html lang="en"> <head> <meta charset="utf-8"> <title>Capítulo 1 - Laboratório 2</title> </head> <body> <form action="" method="post" > <table cellpadding="5" border="1"> <tr><th>Fuso :</th> <td><select name="fuso" > <option value="America/Argentina/Buenos_Aires">Buenos Aires (Argentina)</option> <option value="America/New_York">Nova York (EUA)</option>