8c4411b5 | 15-Jun-1999 |
Stig Bakken |
* reverse fsock/string import patches |
f86fb810 | 15-Jun-1999 |
Zeev Suraski |
Change four spaces back to tabs (Why the hell did you change the tabs to four spaces?!) |
336392ea | 15-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. |
bdbdaa43 | 15-Jun-1999 |
Rasmus Lerdorf |
gmmktime() fix |
215a88ad | 14-Jun-1999 |
Andrey Hristov |
Need to test for directory. |
a916379c | 14-Jun-1999 |
Stig Bakken |
make symlinks if they are not present already |
96bfbc79 | 12-Jun-1999 |
Zeev Suraski |
First attempt at moving the old RFC1867 support to the right place |
c50cd2df | 12-Jun-1999 |
Zeev Suraski |
We can't quite go with expr there (shift/reduce conflict), go with scalar. |
4bf413e3 | 12-Jun-1999 |
Zeev Suraski |
require() improvement as per Andi's suggestion |
be14ccad | 11-Jun-1999 |
Sascha Schumann |
it's obj.properties, not ht |
8c43c5f7 | 11-Jun-1999 |
Andrey Hristov |
Fix up var.c a bit. |
0d560de1 | 11-Jun-1999 |
Zeev Suraski |
Make the concatenation operator use make_printable as well |
9f106c61 | 11-Jun-1999 |
Zeev Suraski |
Don't take failing on an include file so badly |
d6595d62 | 11-Jun-1999 |
Zeev Suraski |
Support <?= |
d47d8351 | 11-Jun-1999 |
Zeev Suraski |
E_ERROR -> E_COMPILE_ERROR in the compiler |
54d21042 | 11-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 ...
|
f8bac0f8 | 11-Jun-1999 |
Rasmus Lerdorf |
Same Fix here |
6b16188d | 11-Jun-1999 |
Stig Bakken |
append DEBUG_CFLAGS to CFLAGS |
4b062fdf | 11-Jun-1999 |
Zeev Suraski |
Print out include_path in include/require failures |
963a0044 | 11-Jun-1999 |
Zeev Suraski |
* Use to_string() instead of __print() * Support boolean casts ((bool) and (boolean)) |
99fd17df | 11-Jun-1999 |
Zeev Suraski |
Change __print into to_string() |
da9faa2c | 11-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 ...
|
1798a018 | 11-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 ...
|
c1f75b6f | 10-Jun-1999 |
Zeev Suraski |
Now THAT's an annoying bug. |
83de88e9 | 10-Jun-1999 |
Sascha Schumann |
make serialize work unserialize does not work yet |