2017-05-11 12:03:31 +08:00

28 lines
497 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace OSS\Model;
/**
* Interface XmlConfig
* @package OSS\Model
*/
interface XmlConfig
{
/**
* 接口定义实现此接口的类都需要实现从xml数据解析的函数
*
* @param string $strXml
* @return null
*/
public function parseFromXml($strXml);
/**
* 接口定义实现此接口的类都需要实现把子类序列化成xml字符串的接口
*
* @return string
*/
public function serializeToXml();
}