History log of /PHP-7.0/Zend/zend.h (Results 501 – 518 of 518)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# d6169276 03-Jul-1999 Sascha Schumann

checking for ints won't work, since they are 32 bit on both platforms


# 2a44f45c 02-Jul-1999 Sascha Schumann

workaround for 64-bit platforms


# 138d601a 19-Jun-1999 Zeev Suraski

Add a standard get_ini_entry() to interface between Zend and the outside world


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


# 63f2cc9f 31-May-1999 Zeev Suraski

*** empty log message ***


# 741b8161 28-May-1999 Zeev Suraski

* Support getThis() for internal functions.
* Fix 'new object or die' and AiCount issue thoroughly (earlier fix didn't
work with the optimizer).
* Add new macros for standardized defini

* Support getThis() for internal functions.
* Fix 'new object or die' and AiCount issue thoroughly (earlier fix didn't
work with the optimizer).
* Add new macros for standardized definition of classes.
* Only report AiCount problems if shutdown was not silent.

show more ...


# 1250c43a 22-May-1999 Zeev Suraski

* Add struct name to all typedef's so that they can be debugged with MSVC
* Fix an AiCount bug - list(...) = $var was using $var multiple times, and thus
causing AiCount to be decreased multi

* Add struct name to all typedef's so that they can be debugged with MSVC
* Fix an AiCount bug - list(...) = $var was using $var multiple times, and thus
causing AiCount to be decreased multiple times even though it was increased only
once for $var. Mark all FETCH_DIM's so that they won't decrease AiCount, and only
decrease AiCount on the last FETCH_DIM.
* Fix a stupid bug - forgot to pass CLS_C to some compiler function. For some reason
MSVC doesn't report these :I

show more ...


# 080105f7 22-May-1999 Zeev Suraski

Give more information and save log lines in memory leak reports


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


# 0b873a78 12-May-1999 Zeev Suraski

*** empty log message ***


# 1aa2c5c0 23-Apr-1999 Zeev Suraski

Ok, call me crazy, because I probably am.
Thread safe version now uses a C++ scanner object. Works fully.


# b227e385 19-Apr-1999 Stig S. Bakken

convert to automake


# 342c6e0b 18-Apr-1999 Zeev Suraski

Whatnot:
* updated alloc_persist to use critical sections
* changed extension shutdown to two-phase
* updated dependencies
* PR support (don't remember if there was any really)


# 39a7f4c3 12-Apr-1999 Zeev Suraski

This patch is a go. Not fully optimized yet, but working properly.
Prepatch tagged as BEFORE_STACK_PATCH.


Revision tags: BEFORE_STACK_PATCH
# 7656c77c 10-Apr-1999 Zeev Suraski

We need to initialize the utility values after we initialize the INI file, which in
turn, is after we initialize Zend. Set the utility values separately from Zend's
initialization


Revision tags: CLOSED_BETA
# 573b4602 07-Apr-1999 Andi Gutmans

Zend Library


1...<<21