PHP code example of galancev / yasdoh
1. Go to this page and download the library: Download galancev/yasdoh library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
galancev / yasdoh example snippets
// Инициализация сторожевой функции
$sdoh = new YaSdoh();
$sdoh->setCallback(function() {
echo "Logging incorrect exit!";
}));
... здесь варится вся логика скрипта
// В конце говорим, что всё отработало как надо и тогда сторожевик не сработает
$sdoh->setStatusDone();