35 lines
732 B
PHP
35 lines
732 B
PHP
<?php
|
|
|
|
namespace utiliy;
|
|
|
|
/**
|
|
* This is an Interface for the serialpation from sql-result to formatted string
|
|
* @author stubbfel
|
|
* @since 01.07.2013
|
|
*/
|
|
interface SerialManager {
|
|
|
|
/**
|
|
* Convert an array from the SPS to a formatted string
|
|
* @param array [num] [assoc] $result
|
|
* @return string
|
|
*/
|
|
public function arrayToSps($result);
|
|
|
|
/**
|
|
* Convert an array from the PIS to a formatted string
|
|
* @param array [num] [assoc] $result
|
|
* @return string
|
|
*/
|
|
public function arrayToPis($result);
|
|
|
|
/**
|
|
* Convert an array from the PSS to a formatted string
|
|
* @param array [num] [assoc] $result
|
|
* @return string
|
|
*/
|
|
public function arrayToPss($result);
|
|
}
|
|
|
|
?>
|