This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, user-scalable=0"> | |
<meta name="description" content="An almost responsive website"> | |
<title>Shop</title> | |
<style> | |
body { | |
background-color: rgb(235,235,235); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class TimeoutClass extends Thread { | |
public function __construct(callable $cb, int $time, $args){ | |
$this->callback = $cb; | |
$this->args = $args; | |
$this->time = $time * 1000; | |
} | |
public function run(){ | |
usleep($this->time); |