The connection remains active for the lifetime of that PDO object. To close the connection, you need to destroy the object by ensuring that all remaining references to it are deleted--you do this by assigning NULL to the variable that holds the object. If you don't do this explicitly, PHP will automatically close the connection when your script ends.
$reversed = array_reverse($array);
for($i=4; $i<6; $i++){
echo $reversed[$i];
}
ну допустим. пользователь резервирует товар. через 30 минут нужно проверить факт подтверждения заказа в базе
var_dump($_SESSION);
// Получить идентификатор процесса (например, для проверки на уникальность)
$pid = getmypid();
// Проверить список всех процессов с pid из php
exec('ps aux', $m);
var_dump($m);
// Можете установить своё имя стартуемому скрипту (но работает только из крон и консоли)
$title = "my_php_id";
if (!cli_set_process_title($title)) {
echo "Unable to set process title for PID $pid...\n";
exit(1);
} else {
echo "The process title '$title' for PID $pid has been set for your process!\n";
}