basexml.php
上传用户:ah_jiwei
上传日期:2022-07-24
资源大小:54044k
文件大小:2k
源码类别:

数据库编程

开发平台:

Visual C++

  1. <?php
  2. /*
  3.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  4.  * Copyright (C) 2003-2007 Frederico Caldeira Knabben
  5.  *
  6.  * == BEGIN LICENSE ==
  7.  *
  8.  * Licensed under the terms of any of the following licenses at your
  9.  * choice:
  10.  *
  11.  *  - GNU General Public License Version 2 or later (the "GPL")
  12.  *    http://www.gnu.org/licenses/gpl.html
  13.  *
  14.  *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  15.  *    http://www.gnu.org/licenses/lgpl.html
  16.  *
  17.  *  - Mozilla Public License Version 1.1 or later (the "MPL")
  18.  *    http://www.mozilla.org/MPL/MPL-1.1.html
  19.  *
  20.  * == END LICENSE ==
  21.  *
  22.  * These functions define the base of the XML response sent by the PHP
  23.  * connector.
  24.  */
  25. function SetXmlHeaders()
  26. {
  27. ob_end_clean() ;
  28. // Prevent the browser from caching the result.
  29. // Date in the past
  30. header('Expires: Mon, 26 Jul 1997 05:00:00 GMT') ;
  31. // always modified
  32. header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT') ;
  33. // HTTP/1.1
  34. header('Cache-Control: no-store, no-cache, must-revalidate') ;
  35. header('Cache-Control: post-check=0, pre-check=0', false) ;
  36. // HTTP/1.0
  37. header('Pragma: no-cache') ;
  38. // Set the response format.
  39. header( 'Content-Type: text/xml; charset=utf-8' ) ;
  40. }
  41. function CreateXmlHeader( $command, $resourceType, $currentFolder )
  42. {
  43. SetXmlHeaders() ;
  44. // Create the XML document header.
  45. echo '<?xml version="1.0" encoding="utf-8" ?>' ;
  46. // Create the main "Connector" node.
  47. echo '<Connector command="' . $command . '" resourceType="' . $resourceType . '">' ;
  48. // Add the current folder node.
  49. echo '<CurrentFolder path="' . ConvertToXmlAttribute( $currentFolder ) . '" url="' . ConvertToXmlAttribute( GetUrlFromPath( $resourceType, $currentFolder, $command ) ) . '" />' ;
  50. $GLOBALS['HeaderSent'] = true ;
  51. }
  52. function CreateXmlFooter()
  53. {
  54. echo '</Connector>' ;
  55. }
  56. function SendError( $number, $text )
  57. {
  58. if ( isset( $GLOBALS['HeaderSent'] ) && $GLOBALS['HeaderSent'] )
  59. SendErrorNode( $number, $text ) ;
  60. CreateXmlFooter() ;
  61. }
  62. else
  63. {
  64. SetXmlHeaders() ;
  65. // Create the XML document header
  66. echo '<?xml version="1.0" encoding="utf-8" ?>' ;
  67. echo '<Connector>' ;
  68. SendErrorNode( $number, $text ) ;
  69. echo '</Connector>' ;
  70. }
  71. exit ;
  72. }
  73. function SendErrorNode(  $number, $text )
  74. {
  75. echo '<Error number="' . $number . '" text="' . htmlspecialchars( $text ) . '" />' ;
  76. }
  77. ?>