PHP Classes

File: include/function/table.php

Recommend this page to a friend!
  Classes of Kakhaber Kashmadze   hiutils   include/function/table.php   Download  
File: include/function/table.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: hiutils
Utility functions to process request data
Author: By
Last change: Update of include/function/table.php
Date: 1 year ago
Size: 303 bytes
 

Contents

Class file image Download
<?php
/*
  Created by Kakhaber Kashmadze
  @version 0.1
  @license MIT
*/

function generateKeys($fields){
   
$i=1;
    foreach(
array_keys($fields) as $k => $v){
        echo
'\''.$v.'\'=>null';
        if(
$i!=count($fields)){
            echo
',';
        }
        echo
'<br>';
       
$i++;
    }
}