summaryrefslogtreecommitdiff
path: root/README.PHP4-TO-PHP5-THIN-CHANGES
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2004-02-08 22:49:47 +0000
committerAndi Gutmans <andi@php.net>2004-02-08 22:49:47 +0000
commit3bf293ff897ebc1a9a734a160d71f7f5e59f61e8 (patch)
tree2636a2e9a50155324f884624b5f1a6a6fe14764f /README.PHP4-TO-PHP5-THIN-CHANGES
parent2a9e1294bc6b93dfa7543b37dfebfa4c2830080f (diff)
downloadphp-git-3bf293ff897ebc1a9a734a160d71f7f5e59f61e8.tar.gz
- Change from PHP5 -> PHP 5
Diffstat (limited to 'README.PHP4-TO-PHP5-THIN-CHANGES')
-rw-r--r--README.PHP4-TO-PHP5-THIN-CHANGES4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.PHP4-TO-PHP5-THIN-CHANGES b/README.PHP4-TO-PHP5-THIN-CHANGES
index 9d2f635fb7..909e3bf6a8 100644
--- a/README.PHP4-TO-PHP5-THIN-CHANGES
+++ b/README.PHP4-TO-PHP5-THIN-CHANGES
@@ -43,7 +43,7 @@
ext/tokenizer extension. If error_reporting is set to E_ALL notices will
be produced. Instead of T_ML_CONSTANT for /* */ the T_COMMENT constant
is used, thus both // and /* */ are resolved as the T_COMMENT constant.
- However the PHPDoc style comments /** */ ,which starting PHP5 are parsed
+ However the PHPDoc style comments /** */ ,which starting PHP 5 are parsed
by PHP, are recongnized as T_DOC_COMMENT.
7. $_SERVER should be populated with argc and argv if variables_order
@@ -64,7 +64,7 @@
}
}
?>
- This script is perfectly valid and works in PHP4 but with PHP5 there
+ This script is perfectly valid and works in PHP 4 but with PHP 5 there
will be a fatal error like :
Fatal error: Class 'fubar' not found in ....
If there is defined function __autoload() it will be called.