PHP3 Manual | ||
---|---|---|
Prev | Appendix A. Migrating from PHP/FI 2.0 to PHP 3.0 | Next |
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 <? echo "This is PHP/FI 2.0 code.\n"; > |
Example A-2. Migration: first new start/end tags <? echo "This is PHP 3.0 code!\n"; ?> |
Example A-3. Migration: second new start/end tags <?php echo "This is PHP 3.0 code!\n"; ?> |
Example A-4. Migration: third new start/end tags <script language="php"> echo "This is PHP 3.0 code!\n"; </script> |
Prev | Home | Next |
Migrating from PHP/FI 2.0 to PHP 3.0 | Up | if..endif syntax |