我知道这听起来很奇怪,但我需要它来解决这个问题。
因此,.php文件的ActionScript链接中的某些链接。由于我无法在AS中编辑此链接,因此我需要一些解决方法。我有xml和.php文件需要输出那个确切的xml代码。 如何才能做到这一点。最后我想创建一个输出xml的.php脚本。我在哪里可以找到有关如何执行此操作的说明? 谢谢!
答案 0 :(得分:3)
如果我理解正确,以下内容应该按照您的要求进行:
<?php
$xmlContent = file_get_contents('/path/to/xml/file');
header('Content-type: text/xml; charset=utf-8');
if ($xmlContent) {
// file available
echo $xmlContent;
exit();
}
// indicate failure, e.g.
echo '<?xml version="1.0" encoding="utf-8?>
<result>
<status success="0">
</result>';
答案 1 :(得分:0)
你的意思是这样的:
header( 'Content-Type: text/xml', true );
readfile( '/path/to/your/xml/file.xml' );
(Cez' answer肯定更能证明错误)
或者你是说你需要先从文件中调整一些xml?在这种情况下,您可能希望查看以下一个(或多个):