Files
crm.clientright.ru/paid3.php

14 lines
391 B
PHP
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
echo 'OK';
$logstring = date("Y-m-d H:i:s").' А теперь мы будем отдавать ответ наружу';
file_put_contents('logs/paid.log', $logstring.PHP_EOL, FILE_APPEND);
// http_response_code(200);
// echo "OK";
$logstring = date("Y-m-d H:i:s").' И вот мы его 100% отдали';
file_put_contents('logs/paid.log', $logstring.PHP_EOL, FILE_APPEND);
?>