History log of /php-src/ (Results 114276 – 114300 of 114804)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
8c4411b515-Jun-1999 Stig Bakken

* reverse fsock/string import patches

f86fb81015-Jun-1999 Zeev Suraski

Change four spaces back to tabs (Why the hell did you change the tabs to four spaces?!)

336392ea15-Jun-1999 Stig Bakken

* now using php4.ini instead of php3.ini
* re-imported fopen-wrappers, fsock and string code from php3
NB! I have not tested all of the imported functions yet.

bdbdaa4315-Jun-1999 Rasmus Lerdorf

gmmktime() fix

215a88ad14-Jun-1999 Andrey Hristov

Need to test for directory.

a916379c14-Jun-1999 Stig Bakken

make symlinks if they are not present already

96bfbc7912-Jun-1999 Zeev Suraski

First attempt at moving the old RFC1867 support to the right place

c50cd2df12-Jun-1999 Zeev Suraski

We can't quite go with expr there (shift/reduce conflict), go with scalar.

4bf413e312-Jun-1999 Zeev Suraski

require() improvement as per Andi's suggestion

be14ccad11-Jun-1999 Sascha Schumann

it's obj.properties, not ht

8c43c5f711-Jun-1999 Andrey Hristov

Fix up var.c a bit.

0d560de111-Jun-1999 Zeev Suraski

Make the concatenation operator use make_printable as well

9f106c6111-Jun-1999 Zeev Suraski

Don't take failing on an include file so badly

d6595d6211-Jun-1999 Zeev Suraski

Support <?=

d47d835111-Jun-1999 Zeev Suraski

E_ERROR -> E_COMPILE_ERROR in the compiler

54d2104211-Jun-1999 Zeev Suraski

Two fixes:
* The error generated by a failed class inheritence wasn't properly
displaying the file in which he error occured.
* Inheritence didn't work if the parent class had uppercas

Two fixes:
* The error generated by a failed class inheritence wasn't properly
displaying the file in which he error occured.
* Inheritence didn't work if the parent class had uppercase letters in it.

show more ...

f8bac0f811-Jun-1999 Rasmus Lerdorf

Same Fix here

6b16188d11-Jun-1999 Stig Bakken

append DEBUG_CFLAGS to CFLAGS

4b062fdf11-Jun-1999 Zeev Suraski

Print out include_path in include/require failures

963a004411-Jun-1999 Zeev Suraski

* Use to_string() instead of __print()
* Support boolean casts ((bool) and (boolean))

99fd17df11-Jun-1999 Zeev Suraski

Change __print into to_string()

da9faa2c11-Jun-1999 Zeev Suraski

* Make the output handling of variables much, much cooler.
Uses zend_make_printable_zval() instead of convert_to_string() now:

$foo = true;
print "\$foo is $foo";
will now prin

* Make the output handling of variables much, much cooler.
Uses zend_make_printable_zval() instead of convert_to_string() now:

$foo = true;
print "\$foo is $foo";
will now print
$foo is true
(instead of "$foo is 1", earlier).

Also, with objects, it automatically tries to call __print() and use it as a printing
function.

For example:

class foo {
function __print() { return "Foo Object"; }
};

$foo = new foo;
print $foo;

will print "Foo Object".

show more ...

1798a01811-Jun-1999 Zeev Suraski

* Fix a buglet in the session module
* Make some renames in the session module - avoid having a function called 'delete'
so that we don't piss any C++ compilers. Also rename the {startup,s

* Fix a buglet in the session module
* Make some renames in the session module - avoid having a function called 'delete'
so that we don't piss any C++ compilers. Also rename the {startup,shutdown}_globals
to {startup,shutdown}_session_globals, so that they're a bit less general names,
and made them static.
* Remove uselss variables

show more ...

c1f75b6f10-Jun-1999 Zeev Suraski

Now THAT's an annoying bug.

83de88e910-Jun-1999 Sascha Schumann

make serialize work
unserialize does not work yet

1...<<4571457245734574457545764577457845794580>>...4593