PatchBot/modules/PHP.php
2019-07-15 22:27:48 +02:00

14 lines
311 B
PHP

<?php
class PHP extends PatchBase {
function __construct() {
parent::__construct('PHP Group', 'PHP', 'https://www.php.net/');
}
function check() : bool {
if ($this->fetch('https://www.php.net/downloads.php'))
return $this->parse('_Current Stable</span>[\s]*PHP ([\d\.]+)_');
return false;
}
}
?>