我在webroot.which中有一个php文件,返回一个文件名数组。所以我想从一个控制器调用这个php文件。你给我一个想法我怎么做这个... ??这个的内容php文件如下:
<?php
//if($_SERVER['REMOTE_ADDR']=='10.1.31.77'){debugbreak();}
include ("../vendors/xmlrpc.inc");
?>
<html>
<head>
<title>XML-RPC PHP Demo</title>
</head>
<body>
<h1>XML-RPC PHP Demo</h1>
<?php
$client = new xmlrpc_client('/individual-trade-server-manager/list-binaries-on-trade-server.php',
'125.20.11.245', 80);
//$client->return_type = 'phpvals';
//$client->setDebug ( 2 );
$stringToEcho = 'Hello World';
// Send a message to the server.
$message = new xmlrpcmsg('rpc.FnListAllBinaryFiles',array(php_xmlrpc_encode ( $stringToEcho )));
$result = $client->send($message);
// Process the response.
if (!$result) {
print "<p>Could not connect to HTTP server.</p>";
} elseif ($result->faultCode()) {
print "<p>XML-RPC Fault #" . $result->faultCode() . ": " .
$result->faultString();
} else {
$output=php_xmlrpc_decode($result->value());
$output=explode('*',$output);
//echo "<pre>";
// print_r($output);
}
//echo "<pre>";
// print_r($output);
?>
<table>
<tr><th>Binary Filenames</th></tr>
<?php
foreach($output as $val)
{
//echo "<pre>";
//print_r($val);
?>
<tr><td><?php echo $val; ?></td></tr>
<?php
}
?>
</table>
</body></html>
所以我只想从一个控制器调用这个页面,以便我如何调用这个页面,并在控制器中设置这个$ output数组。
提前致谢
答案 0 :(得分:0)
我建议你在vendors文件夹中创建一个带静态函数的类。
静态函数将返回您的数组,您将能够使用Myclass :: mymethod();从控制器调用该方法;