PHP Classes

File: ANYEM_SHARED/anyem.utils/IAnyemConfigReader.php

Recommend this page to a friend!
  Classes of Anis Halayem   Anyem   ANYEM_SHARED/anyem.utils/IAnyemConfigReader.php   Download  
File: ANYEM_SHARED/anyem.utils/IAnyemConfigReader.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Anyem
Exchange variable values between PHP servers
Author: By
Last change:
Date: 8 years ago
Size: 298 bytes
 

Contents

Class file image Download
<?php


/**
 *
 * @author Anis.Halayem
 */
interface IAnyemConfigReader {
    const
CFG_COMMENT = '#';
    const
CFG_DELIMITER = '=';
   
   
/**
     *
     * @param string $param parameter name
     * @return string parameter value
     */
   
public function readConfig($param, $default);
}