PHP Classes

File: phon/SecurePHONClass.php

Recommend this page to a friend!
  Classes of Martin Alterisio   PHON   phon/SecurePHONClass.php   Download  
File: phon/SecurePHONClass.php
Role: Class source
Content type: text/plain
Description: The file for SecurePHONClass interface
Class: PHON
Unserialize values exported with var_export
Author: By
Last change:
Date: 16 years ago
Size: 476 bytes
 

Contents

Class file image Download
<?php
/**
 * The file for SecurePHONClass interface
 * @package PHON
 */

/**
 * Interface implemented by those classes that can be safely created
 * from PHON data evaluation.
 * @package PHON
 */
interface SecurePHONClass {
   
/**
     * Function used by PHON format to recreate object instances.
     * @param array $state The object state to recreate.
     * @return An instance of the object with the requested state.
     */
   
static function __set_state($state);
}