Short Tags and XML

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jason G.

    Short Tags and XML

    I have heard that you cannot use short tags and XML because of the opening
    line of an xml document...

    <?xml version="1.0"?>

    Consider this:

    <<?= '?'; ?>xml version="1.0"<? = '?'; ?>>

    Problem Solved.

    Best Regards,
    Jason Garber
    IonZoft, Inc.


  • Philippe Saladin

    #2
    Re: Short Tags and XML


    "Jason G." <jason_NOSPAM@N OSPAM_ionzoft.c om> a écrit dans le message news:
    vhs5ak1vduaref@ corp.supernews. com...[color=blue]
    > I have heard that you cannot use short tags and XML because of the opening
    > line of an xml document...
    >
    > <?xml version="1.0"?>
    >
    > Consider this:
    >
    > <<?= '?'; ?>xml version="1.0"<? = '?'; ?>>
    >
    > Problem Solved.[/color]

    and if your php.ini has short_open_tags =off, and you can't modify it ? (for
    example, an administrator very strict who doesn't allow you to modify
    anything on the server...). The best way, IMHO, to resolve this problem is
    to never use short open tag. Thus, it will always work.

    Best regards,
    Philippe


    Comment

    Working...