Skip to content

Commit f4983c0

Browse files
author
foobar
committed
- Renamed all *php4* files to *php5*, changed all php4/PHP4 to php5/PHP5
1 parent b851f37 commit f4983c0

File tree

167 files changed

+1134
-1147
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

167 files changed

+1134
-1147
lines changed

ChangeLog

+4-4
Original file line numberDiff line numberDiff line change
@@ -1085,9 +1085,9 @@
10851085
win32/crypt_win32.h
10861086
win32/grp.h
10871087
win32/md5crypt.h
1088-
win32/php4dllts.rc2
1089-
win32/php4ts.rc2
1090-
win32/php4ts_cli.rc2
1088+
win32/php5dllts.rc2
1089+
win32/php5ts.rc2
1090+
win32/php5ts_cli.rc2
10911091
win32/pwd.h
10921092
win32/select.h
10931093
win32/syslog.h
@@ -1502,7 +1502,7 @@
15021502

15031503
2004-01-08 Frank M. Kromann <[email protected]>
15041504

1505-
* win32/php4dllts.dsp:
1505+
* win32/php5dllts.dsp:
15061506
Adding new com_dotnet source files to project
15071507

15081508
2004-01-07 Jani Taskinen <[email protected]>

README.PHP4-TO-PHP5-THIN-CHANGES

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
- mysqli_fetch_assoc()
3535

3636
5. PATH_TRANSLATED server variable is no longer set implicitly under
37-
Apache2 SAPI in contrast to the situation in PHP4, where it is set to the
37+
Apache2 SAPI in contrast to the situation in PHP 4, where it is set to the
3838
same value as the SCRIPT_FILENAME server variable when it is not populated
3939
by Apache. This change was made to comply with the CGI specification.
4040
Please refer to bug #23610 for further information.

README.Zeus

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Using PHP4 with the Zeus Web Server
1+
Using PHP5 with the Zeus Web Server
22
-----------------------------------
33

44
Zeus fully supports running PHP in combination with our

Zend/tests/bug26802.phpt

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ $static_method = "foo::bar";
3333

3434
$static_method();
3535

36-
/* The following is a BC break with PHP4 where it would
37-
* call foo::fail. In PHP5 we first evaluate static class
36+
/* The following is a BC break with PHP 4 where it would
37+
* call foo::fail. In PHP 5 we first evaluate static class
3838
* properties and then do the function call.
3939
*/
4040
$method = 'fail';

configure.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1226,7 +1226,7 @@ AC_DEFINE([HAVE_BUILD_DEFS_H], 1, [ ])
12261226
$php_shtool mkdir -p pear/scripts
12271227
$php_shtool mkdir -p scripts
12281228

1229-
ALL_OUTPUT_FILES="php4.spec main/build-defs.h \
1229+
ALL_OUTPUT_FILES="php5.spec main/build-defs.h \
12301230
scripts/phpize scripts/php-config \
12311231
$PHP_OUTPUT_FILES"
12321232

ext/bz2/bz2.dsp

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ext/com_dotnet/README

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
This is the new php5 COM module.
22

3-
It is not 100% backwards compatible with php4 ext/com, but you should not miss
3+
It is not 100% backwards compatible with PHP 4 ext/com, but you should not miss
44
the "features" that have not been retained.
55

66
This module exposes 3 classes: variant, com and dotnet(*).
@@ -26,15 +26,15 @@ $obj = new COM("...");
2626
$obj[1]->foo();
2727

2828
The code above will use the type information for the object to determine its
29-
default property and then access it. In php4, it was hard-coded to use the
29+
default property and then access it. In PHP 4, it was hard-coded to use the
3030
"Items" member, which was wrong.
3131

3232
The default property will also be used by the casting support to determine the
3333
value for the object.
3434

3535
Variants:
3636

37-
This implementation of COM takes a simpler approach than the php4 version;
37+
This implementation of COM takes a simpler approach than the PHP 4 version;
3838
we only map a few native types to COM and vice-versa, leaving the more complex
3939
things as variants. This allows greater consistency of data when passing
4040
parameters to and from COM objects (no data will be lost). In addition, a
@@ -72,7 +72,7 @@ TODO:
7272
actually arrays.
7373
- SafeArray support for variant class.
7474
Currently there is no way to access a safearray from php.
75-
- A few other com_xxx functions need to be ported from the php4 extension.
75+
- A few other com_xxx functions need to be ported from the PHP 4 extension.
7676
- documentation
7777

7878
* dotnet support requires that you have the mscoree.h header from the .net sdk

ext/cpdf/cpdf.dsp

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ext/ctype/ctype.dsp

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ext/curl/curl.dsp

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ext/dba/dba.dsp

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)