I have a COM object "com" with a property "prop". "prop" is an indexed array. I am using PHP 5.1.0-dev.
None of the following work:
$com->prop(0) = 'blue';
$com->prop(0, 'blue');
$com->prop = array ('blue');
Is there a way to write to an indexed property?
Dale Schell
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
