PatchBot/modules/PHP.php

14 lines
319 B
PHP

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