History log of /PHP-7.1/Zend/zend.c (Results 601 – 625 of 637)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 80bab9d9 21-Dec-1999 Andrei Zmievski

We're using ZVAL's now.


Revision tags: PRE_LIBZEND_TO_ZEND
# 213d0e2f 19-Dec-1999 Andi Gutmans

- More fixes related to the return references patch
- eval_string() and call_user_function_ex() still don't work.
- The libzend tree is untested and might not be stabl yet.


Revision tags: PRE_RETURN_REF_MERGE, RETURN_REF_BP, PRE_RETURN_REF_PATCH
# 70df2d74 05-Dec-1999 Sascha Schumann

Fix some warnings


# 9baad804 04-Dec-1999 Zeev Suraski

- Break the zend->PHP dependency introduced by the .php extension for use(),
by providing an API
- Enable Stig's patch for use() extensions (it wasn't refered to by the parser)
- Fix a

- Break the zend->PHP dependency introduced by the .php extension for use(),
by providing an API
- Enable Stig's patch for use() extensions (it wasn't refered to by the parser)
- Fix a memory leak in that code

show more ...


# 93536507 01-Dec-1999 Stig S. Bakken

Fix warnings surfacing in maintainer-mode.


# 5463dd5b 30-Nov-1999 Andi Gutmans

- Add use support (behaves like require, but will not use the same file twice)
- Add import support (behaves like include, but requires parentheses; will not
use the same file twice; Curre

- Add use support (behaves like require, but will not use the same file twice)
- Add import support (behaves like include, but requires parentheses; will not
use the same file twice; Currently, it is not yet properly implemented, and
only behaves like include)

show more ...


Revision tags: ZO_B1, ZEND_OPTIMIZER_B1, php-4.0b3, PRE_USED_RETURN_VALUE_PATCH, php-4.0b3_RC5, php-4.0b3_RC4, php-4.0b3_RC3, php-4.0b3_RC2, PRE_FETCH_READ_PATCH, before-sapi-split, PRE_DELAYED_ARRAY_FETCH_PATCH
# 13d840bc 20-Sep-1999 Zeev Suraski

Add a file in which we can put Zend builtin functions


# 5f1793e2 12-Sep-1999 Zeev Suraski

Make this class instanciatable


# 99947a25 05-Sep-1999 Andi Gutmans

- Shift around header files.


# 6313238c 20-Aug-1999 Zeev Suraski

Fix for Thies's UMR


# acd6114f 17-Aug-1999 Andi Gutmans

- Add some ZENDAPI's


Revision tags: php-4.0b2, BEFORE_NEW_OPERATOR_FIX, BEFORE_BIG_SYMBOL_CHANGE, php-4.0b1
# 8d1de13a 19-Jul-1999 Zeev Suraski

0.91 update


# b5b11177 16-Jul-1999 Zeev Suraski

License update


# 91d7ba76 15-Jul-1999 Andi Gutmans

Change true/false back to 1/""


# 762158aa 14-Jul-1999 Andi Gutmans

Fix thread unsafe constants startup


# fec59d3b 14-Jul-1999 Andi Gutmans

- License update
- Fix multithreaded constants startup


# fb7a4b64 10-Jul-1999 Andi Gutmans

Fix assignments of reference variables


Revision tags: BEFORE_REMOVING_AI_COUNT_FINAL_STEP, BEFORE_REMOVING_GC_STEP2
# 81d901b1 09-Jul-1999 Zeev Suraski

Step 1 in nuking the garbage collector:
- Change the hash destructor to return int
- Don't kill the bucket on hash_destroy if the destructor returns 0


Revision tags: BEFORE_REMOVING_GC_STEP1
# d035af4a 19-Jun-1999 Zeev Suraski

*** empty log message ***


# 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 ...


# ed06a70f 05-Jun-1999 Zeev Suraski

* Centralized shutdown
* Change shutdown order again


# 9108abc2 04-Jun-1999 Zeev Suraski

Minor updates (mostly __declspec() stuff)


Revision tags: BEFORE_PHP4_APACHE_MODULE_CHANGE
# b0bfa458 15-May-1999 Zeev Suraski

* Fix all hash checks that checked Bucket.arKey for NULL, when it was changed
to char[1], these checks should have been changed to Bucket.nKeyLength==0
* Support runtime declaration of func

* Fix all hash checks that checked Bucket.arKey for NULL, when it was changed
to char[1], these checks should have been changed to Bucket.nKeyLength==0
* Support runtime declaration of functions. I ended up changing the grammar
to catch top level functions vs. nested functions. The reason is simple -
if we don't have functions properly declared at compile-time, function calls
cannot be resolved at compile time, and have to be resolved at runtime, which
ends up being much much slower (without the optimizer, that is).
It's no biggy though, the grammar change isn't that bad.

show more ...


# 6bc6dacf 11-May-1999 Zeev Suraski

Fixes:
* Avoid closing stdin (I could have sworn I've committed that already)
* unclean_shutdown patches


1...<<212223242526