芝麻web文件管理V1.00
编辑当前文件:/home/strato/chroot/opt/RZphp80/includes/XML/SVG/Document.php
* @package XML_SVG * @license http://www.fsf.org/copyleft/lgpl.html */ require_once 'XML/SVG/Fragment.php'; /** * XML_SVG_Document * * This extends the XML_SVG_Fragment class. It wraps the XML_SVG_Frament output * with a content header, xml definition and doctype. * * @package XML_SVG */ class XML_SVG_Document extends XML_SVG_Fragment { var $_encoding = 'iso-8859-1'; function printElement() { header('Content-Type: image/svg+xml'); print('_encoding . "\"?>\n"); print('' . "\n"); parent::printElement(); } }