migration startendtags


Start/end tagsPHP ManualPrevAppendix A. Migrating from PHP/FI 2.0 to PHP 3.0NextStart/end tags The first thing you probably will notice is that PHP's start and end tags have changed. The old <? > form has been replaced by three new possible forms: Example A-1. Migration: old start/end tags 1  2 <? echo "This is PHP/FI 2.0 code.\n"; > 3  As of version 2.0, PHP/FI also supports this variation: Example A-2. Migration: first new start/end tags 1  2 <? echo "This is PHP 3.0 code!\n"; ?> 3  Notice that the end tag now consists of a question mark and a greater-than character instead of just greater-than. However, if you plan on using XML on your server, you will get problems with the first new variant, because PHP may try to execute the XML markup in XML documents as PHP code. Because of this, the following variation was introduced: Example A-3. Migration: second new start/end tags 1  2 <?php echo "This is PHP 3.0 code!\n"; ?> 3  Some people have had problems with editors that don't understand the processing instruction tags at all. Microsoft FrontPage is one such editor, and as a workaround for these, the following variation was introduced as well: Example A-4. Migration: third new start/end tags 1  2 <script language="php"> 3  4  echo "This is PHP 3.0 code!\n"; 5  6 </script> 7 PrevHomeNextMigrating from PHP/FI 2.0 to PHP 3.0Upif..endif syntax

Wyszukiwarka

Podobne podstrony:
migration startendtags
migration startendtags
ine starter?tivity16
migration4 parser
ine starter?tivity18
migration booleval
migration if endif
1 Getting Started Getting You
starter cultures

więcej podobnych podstron