PHP Classes

File: examples/handlers/log.php

Recommend this page to a friend!
  Classes of Rafa Rodriguez   Div PHP Matrix Library   examples/handlers/log.php   Download  
File: examples/handlers/log.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Div PHP Matrix Library
Define matrices with dynamic cell calculations
Author: By
Last change:
Date: 5 months ago
Size: 220 bytes
 

Contents

Class file image Download
<?php

return function ()
{
   
$url = $_SERVER['REQUEST_URI'] ?? "";
   
$moment = date("Y-m-d H:i:s");
   
   
// show in console log
   
echo "<script>console.log('{$moment} - {$url}');</script>";
    return
true;
};