English 中文(简体)
Dealing with empty tags in pear xml_serializer
原标题:
  • 时间:2009-11-16 10:36:30
  •  标签:
  • php
  • xml
  • pear

Im using PEAR XML Serializer to generate xml results from array inputs. I found out that empty array elements are encoded like this: <arraykey/>. I d rather prefer it this way <arraykey></arraykey>

Below are my options:

            $options = array
            (
                 indent  =>      ,
                 defaultTagName  => $this->xml_tag_name,
                 addDecl  => true,
                 encoding   =>  UTF-8 ,
                 rootName  => $this->xml_root_name,
                XML_SERIALIZER_OPTION_RETURN_RESULT => true
            );

Are there any other options to add to fix this?

问题回答

In the actual state of the library no, it uses PEAR XML_Util and if you look at the code of XML_Util::createTagFromArray(), it does the following for empty tags:

if (!isset($tag[ content ]) || (string)$tag[ content ] ==   )
{
    $tag = sprintf( <%s%s /> , $tag[ qname ], $attList);
}

You could probably fake empty content with a string that contains a space such as but that would result into something like <arraykey> </arraykey>.

BTW, <arraykey/> is totally legal in XML (it s recommended for empty tags, it s also used in XHTML).

Is there a concrete reason you prefer the <tag></tag> format over <tag />? Noting that (as another poster said) <tag /> is totally valid XML. Personally I prefer self-closing for an empty tag.





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签