【发布时间】:2016-08-31 12:22:55
【问题描述】:
参考这篇文章how-to-prevent-echo-in-php-and-catch-what-it-is-inside 我正在尝试从下面提到的 php 文件中获取输出值,但我仍然可以看到这些值正在打印在我的 php 页面的输出中。也欢迎任何其他建议来获取输出内容从我的 php 文件到字符串而没有得到回显。谢谢!
<?php include('Crypto.php')?>
<?php
$workingKey='XXXX'; //Working Key should be provided here.
$encResponse=$_POST["encResp"]; //This is the response sent by the Server
$rcvdString=decrypt($encResponse,$workingKey); //Crypto Decryption used as per the specified working key.
$order_status="";
$order_id=0;
$decryptValues=explode('&', $rcvdString);
$dataSize=sizeof($decryptValues);
echo "<center>";
for($i = 0; $i < $dataSize; $i++)
{
$information=explode('=',$decryptValues[$i]);
if($i==0) $order_id = $information[1];
if($i==1) $tracking_id = $information[1];
if($i==3) $order_status = $information[1];
}
ob_start();
echo $order_id."_";
$out1 = ob_get_contents();
echo $tracking_id."_";
$out2 = ob_get_contents();
echo $order_status;
$out3 = ob_get_contents();
ob_end_clean();
var_dump($out3);
?>
以 HTML 格式获取回显值的 JAVASCRIPT 代码
class MyJavaScriptInterface
{
@JavascriptInterface
@SuppressWarnings("unused")
public void processHTML(final String html)
{
String order_page = ""+Html.fromHtml(html);//process php output to html
String CCAvenueOrder_id = order_page.split("\\_")[0];
String CCAvenueTacking_id=order_page.split("\\_")[1];
String CCAvenueOrderStatus=order_page.split("\\_")[2];
// process the html as needed by the app
String status = null;
if(html.indexOf("Failure")!=-1){
status = "Transaction Declined!";
}else if(html.indexOf("Success")!=-1){
status = "Transaction Successful!";
}else if(html.indexOf("Aborted")!=-1){
status = " Transaction Cancelled!";
}else{
status = "Status Not Known!";
}
//Toast.makeText(getApplicationContext(), status, Toast.LENGTH_SHORT).show();
Intent intent = new Intent(getApplicationContext(),StatusActivity.class);
startActivity(intent);
}
}
【问题讨论】:
-
你的意思是像 JavaScript 中的“console.log”吗?
-
存储数据而不是回显它。然后您可以将该信息写入文件、数据库、error_log、通过电子邮件发送等。
-
你为什么要这样做?不能在变量中存储数据?
-
我正在设计一个应用程序,来自服务器的响应在上面的 php 文件中,现在我希望这个响应显示在我的应用程序页面中
标签: javascript php android html