blob: 398b07e3f6d8128fbfa767ca24d55c1f0b1f0345 [file] [log] [blame]
Derek Allardd2df9bc2007-04-15 17:41:17 +00001<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
2/**
3 * CodeIgniter
4 *
5 * An open source application development framework for PHP 4.3.2 or newer
6 *
7 * @package CodeIgniter
8 * @author Rick Ellis
9 * @copyright Copyright (c) 2006, EllisLab, Inc.
10 * @license http://www.codeignitor.com/user_guide/license.html
11 * @link http://www.codeigniter.com
12 * @since Version 1.0
13 * @filesource
14 */
15
16// ------------------------------------------------------------------------
17
18/**
19 * CodeIgniter XML Helpers
20 *
21 * @package CodeIgniter
22 * @subpackage Helpers
23 * @category Helpers
24 * @author Rick Ellis
25 * @link http://www.codeigniter.com/user_guide/helpers/xml_helper.html
26 */
27
28// ------------------------------------------------------------------------
29
30/**
31 * Convert Reserved XML characters to Entities
32 *
33 * @access public
34 * @param string
35 * @return string
36 */
37function xml_convert($str)
38{
39 $temp = '__TEMP_AMPERSANDS__';
40
41 // Replace entities to temporary markers so that
42 // ampersands won't get messed up
43 $str = preg_replace("/&#(\d+);/", "$temp\\1;", $str);
44 $str = preg_replace("/&(\w+);/", "$temp\\1;", $str);
45
46 $str = str_replace(array("&","<",">","\"", "'", "-"),
47 array("&amp;", "&lt;", "&gt;", "&quot;", "&#39;", "&#45;"),
48 $str);
49
50 // Decode the temp markers back to entities
51 $str = preg_replace("/$temp(\d+);/","&#\\1;",$str);
52 $str = preg_replace("/$temp(\w+);/","&\\1;", $str);
53
54 return $str;
55}
56
57
adminb0dd10f2006-08-25 17:25:49 +000058?>