|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-12-17 19:03 UTC] woodz at terra dot com dot br
[2004-12-17 19:10 UTC] woodz at terra dot com dot br
[2004-12-17 20:36 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Nov 21 10:00:01 2025 UTC |
Description: ------------ I was using flash remoting with flash mx 2004 and action script 2.0 under IIS webserver with php 5.02 and all was working fine, but when i update my php to version 5.03 my scripts stoped work!! in the code my class on file olaMundo.php Reproduce code: --------------- <?php class helloWorld{ //constructor method function helloWorld(){ $this->methodTable = array( "retornoValor" => array( "description" => "Write Hello World", "access" => "remote" ) ); } // function to return the value function retornoValor($var){ return $var." said Hello World!!"; } } ?> Expected result: ---------------- in my flash interface must appear " Name said Hello World" in php 5.02 it' was working ok!! but in 5.03 version stoped! Actual result: -------------- nothing happens!!!