summaryrefslogtreecommitdiff
path: root/README.PHP4-TO-PHP5-THIN-CHANGES
diff options
context:
space:
mode:
authorMoriyoshi Koizumi <moriyoshi@php.net>2003-12-14 19:02:14 +0000
committerMoriyoshi Koizumi <moriyoshi@php.net>2003-12-14 19:02:14 +0000
commit5ce35b8253a5ba08b7b9da9e659b787ff2714b3d (patch)
tree9439d405e33aa5d58080277544a81c959ad11b0a /README.PHP4-TO-PHP5-THIN-CHANGES
parentbebaa5b00f5cbe4837bbd34e6af2850213a58821 (diff)
downloadphp-git-5ce35b8253a5ba08b7b9da9e659b787ff2714b3d.tar.gz
Note about Apache2 SAPI change.
Diffstat (limited to 'README.PHP4-TO-PHP5-THIN-CHANGES')
-rw-r--r--README.PHP4-TO-PHP5-THIN-CHANGES8
1 files changed, 7 insertions, 1 deletions
diff --git a/README.PHP4-TO-PHP5-THIN-CHANGES b/README.PHP4-TO-PHP5-THIN-CHANGES
index 91e2029843..64fc15fca0 100644
--- a/README.PHP4-TO-PHP5-THIN-CHANGES
+++ b/README.PHP4-TO-PHP5-THIN-CHANGES
@@ -15,4 +15,10 @@
parameter will be throwed. Be careful because your code may start emitting E_WARNING out of the blue.
4. Be careful when porting from ext/mysql to ext/mysqli. mysqli_fetch_row()/mysqli_fetch_array()/mysql_fetch_assoc()
- retun NULL when there is no more data in the result set (ext/mysql's functions return FALSE).
+ return NULL when there is no more data in the result set (ext/mysql's functions return FALSE).
+
+5. PATH_TRANSLATED server variable is no longer set implicitly under
+ Apache2 SAPI in contrast to the situation in PHP4, where it is set to the
+ same value as the SCRIPT_FILENAME server variable when it is not populated
+ by Apache. This change was made to comply with the CGI specification.
+ Please refer to bug #23610 for further information.