PHP Classes

File: config.dist.php

Recommend this page to a friend!
  Classes of Omar Andrés Barbosa Ortiz   Papyrus   config.dist.php   Download  
File: config.dist.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Papyrus
Store and retrieve database data in files
Author: By
Last change:
Date: 7 years ago
Size: 642 bytes
 

Contents

Class file image Download
<?php

/**
 * Papyrus
 * Config file
 *
 * Permissions: chmod 706 fileName.ext
 */

return [

   
/**
     *
     * Set the extension to database files
     * Example:
     * 'extension' => '.some'
     *
     */

   
'extension' => '',
   
   
/**
     * Set the primary key each file
     * Primary Key: Auto increment integer(int++),
     * unique integer (int#),
     * unique string (str#)
     * Example: [
     * 'fileName' => ['name(str#)', 'lastName', 'email'],
     * 'otherFileName' => ['id(int++)', 'description'],
     * 'otherFileName' => ['dni(int#)', 'name', 'lastname']
     * ]
     *
     */

   
'files' => [
                   
                ]
    ];