[PHP-DEV] INI File Entries: Retrieving Multiple/Unregistered

2002-12-25 Thread Marshall A. Greenblatt
Hi guys, I'm currently writing a PHP module compiled against 4.2.3 sources that needs to load multiple name/value pairs dynamically at run-time. Ideally, I would like to use entries in the PHP INI file, but the names of those entries will not necessarily be known at compile-time. One of two

Re: [PHP-DEV] Reusing PHP string value pointers

2002-11-28 Thread Marshall A. Greenblatt
From: Zeev Suraski [EMAIL PROTECTED] When a PHP string variable is changed via a PHP script, such as: $foo = 'new value'; what happens to the `value.str.val' pointer internally? Is it possible to have the new value assigned to the same `value.str.val' pointer that the variable is

[PHP-DEV] Reusing PHP string value pointers

2002-11-27 Thread Marshall A. Greenblatt
Apologies in advance if this is the wrong mailing list. Please direct me to a more appropriate mailing list if there is one :-) When a PHP string variable is changed via a PHP script, such as: $foo = 'new value'; what happens to the `value.str.val' pointer internally? Is it possible to have