芝麻web文件管理V1.00
编辑当前文件:/home/strato/chroot/opt/RZphp5/includes/XML/Transformer/Tests/TestNamespace.php
and | // | Kristian Khntopp
. | // +---------------------------------------------------------------------------+ // | This source file is subject to version 3.00 of the PHP License, | // | that is available at http://www.php.net/license/3_0.txt. | // | If you did not receive a copy of the PHP license and are unable to | // | obtain it through the world-wide-web, please send a note to | // | license@php.net so we can mail you a copy immediately. | // +---------------------------------------------------------------------------+ // // $Id: TestNamespace.php,v 1.2 2004/12/22 08:06:13 sebastian Exp $ // require_once 'XML/Transformer/Namespace.php'; class TestNamespace extends XML_Transformer_Namespace { function start_body($attributes) { return 'text'; } function end_body($cdata) { return $cdata . ''; } function start_bold($attributes) { return '
'; } function end_bold($cdata) { return $cdata . '
'; } function start_boldbold($attributes) { return '
'; } function end_boldbold($cdata) { return $cdata . '
'; } } /* * vim600: et sw=2 ts=2 fdm=marker * vim<600: et sw=2 ts=2 */ ?>