|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2006-12-24 10:05 UTC] rrichards@php.net
 | |||||||||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 02:00:02 2025 UTC | 
Description: ------------ When COM property is marked with propputref it looks like function in com_print_typeinfo and can't be accessed by: $a->property = $b or $a->property($b) I'm just get com_exception with message 'Error [0x80020003] Member not found.' Reproduce code: --------------- <?php $Engine = new COM("SAPI.SpVoice"); $File = new COM("SAPI.SpFileStream"); $File->Open("C:\\1.wav", 3, false); $Engine->AudioOutputStream = $File; // com_exception $Engine->Speak("Hello World!", 0); $File->Close(); unset($File); unset($Engine); ?>