PHP code example of bvdputte / kirby-fingerprint

1. Go to this page and download the library: Download bvdputte/kirby-fingerprint 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/ */

    

bvdputte / kirby-fingerprint example snippets


css("assets/css/styles.css");
// Output: <link href="//localhost:3000/assets/css/styles.db5796ea5bf253bb7be3526eb083e068.css" rel="stylesheet">
js("assets/js/scripts.js");
// Output: <script src="//localhost:3000/assets/js/scripts.1e9dd0c95e7b12ce96729501c7585deb.js"></script>

// config.php
return [
    'bvdputte.fingerprint.disabled' => true
];

// config.php
return [
    'bvdputte.fingerprint.parameter' => true
];