使用PHP写入数据到文件

前端之家收集整理的这篇文章主要介绍了使用PHP写入数据到文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要使用下面的代码发布数据到PHP文件,将其保存在文本文件中.
我只是不知道如何创建PHP文件接收下面的数据并将其保存在文本文件中.
尽可能简单.

任何人都可以帮助,id非常感谢.

try {  
    // Add your data  
    List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);  
    nameValuePairs.add(new BasicNameValuePair("stringData","12345"));  
    nameValuePairs.add(new BasicNameValuePair("stringData","AndDev is Cool!"));  
    httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));  

    // Execute HTTP Post Request  
    HttpResponse response = httpclient.execute(httppost);  
    String responseText = EntityUtils.toString(response.getEntity()); 
    tv.setText(responseText);             
} catch (ClientProtocolException e) {  
    // TODO Auto-generated catch block  
} catch (IOException e) {  
    // TODO Auto-generated catch block  
}
简单如下:
file_put_contents('test.txt',file_get_contents('PHP://input'));
原文链接:https://www.f2er.com/php/131343.html

猜你在找的PHP相关文章