PHP 可以通過POST、GET方法獲取到表單提交的數(shù)據(jù)
10年積累的成都做網(wǎng)站、成都網(wǎng)站建設(shè)經(jīng)驗,可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識你,你也不認(rèn)識我。但先網(wǎng)站制作后付款的網(wǎng)站建設(shè)流程,更有莒縣免費網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
獲取到的POST、GET是數(shù)組形式的值,需要通過鍵值來詳細(xì)獲取相應(yīng)的值
比如: index.php 頁面
下面是POST方法
form name="form1" method="post" action="index.php"
input type="text" name="contents" value=""
input type="submit" value="提交"
/form
?php
//獲取表單提交的數(shù)據(jù)
$contents = $_POST['contents'];
echo $contents;
?
也可以是下面是GET方法
form name="form1" method="get" action="index.php"
input type="text" name="contents" value=""
input type="submit" value="提交"
/form
?php
//獲取表單提交的數(shù)據(jù)
$contents = $_GET['contents'];
echo $contents;
?
POST相對于GET方法,更好一些,可以提交大量數(shù)據(jù),以及更安全些。
對于json,PHP有對應(yīng)的方法進(jìn)行操作。
一般而言,json會以字符串形式傳給PHP腳本,一般都是放在$_POST里面,
14
?php
// 接收
$json_parameter = $_POST['json_str'];
// 處理, 變成數(shù)組
$array = json_decode($json_parameter);
// PHP 把數(shù)組數(shù)據(jù)變成json格式字符串,發(fā)給頁面
$demo = array(
'key' = 'value',
'key2' = 'value2'
);
$demo_json = json_encode($demo); // 格式是{"key":"value","key2":"value2"}
echo $demo_json;
php語言得用fsockopen()函數(shù),實現(xiàn)腳本異步運行,代碼如下
異步請求函數(shù)(用debug參數(shù)若為true則為用為調(diào)試,開啟調(diào)試可以看到異步的執(zhí)行情況,但是失去異步的效果)
main.php
?php
/**
*?異步請求
*?@copyright??Copyright?(c)?Hangzhou?Technology?Co.,Ltd.?()
*?@author?????$Author:?juny?$
*?@version????$Id:?main.php?332?2018-09-23?09:15:08Z?juny?$
*/
function?request_by_fsockopen($url,$post_data=array(),$debug=false){
$url_array?=?parse_url($url);
$hostname?=?$url_array['host'];
$port?=?isset($url_array['port'])??$url_array['port']?:?80;
@$requestPath?=?$url_array['path']?."?".?$url_array['query'];
$fp?=?fsockopen($hostname,?$port,?$errno,?$errstr,?10);
if?(!$fp)?{
echo?"$errstr?($errno)";
return?false;
}
$method?=?"GET";
if(!empty($post_data)){
$method?=?"POST";
}
$header?=?"$method?$requestPath?HTTP/1.1\r\n";
$header.="Host:?$hostname\r\n";
if(!empty($post_data)){
$_post?=?strval(NULL);
foreach($post_data?as?$k?=?$v){
$_post[]=?$k."=".urlencode($v);//必須做url轉(zhuǎn)碼以防模擬post提交的數(shù)據(jù)中有符而導(dǎo)致post參數(shù)鍵值對紊亂
}
$_post?=?implode('',?$_post);
$header?.=?"Content-Type:?application/x-www-form-urlencoded\r\n";//POST數(shù)據(jù)
$header?.=?"Content-Length:?".?strlen($_post)?."\r\n";//POST數(shù)據(jù)的長度
$header.="Connection:?Close\r\n\r\n";//長連接關(guān)閉
$header?.=?$_post;?//傳遞POST數(shù)據(jù)
}else{
$header.="Connection:?Close\r\n\r\n";//長連接關(guān)閉
}
fwrite($fp,?$header);
//-----------------調(diào)試代碼區(qū)間-----------------
//注如果開啟下面的注釋,異步將不生效可是方便調(diào)試
if($debug){
$html?=?'';
while?(!feof($fp))?{
$html.=fgets($fp);
}
echo?$html;
}
//-----------------調(diào)試代碼區(qū)間-----------------
fclose($fp);
}
$data=array('name'='guoyu','pwd'='123456');
$url='';
request_by_fsockopen($url,$data,true);//
other.php
?php
header("content-type:text/html;charset=utf-8");
//error_reporting(0);
//ini_set('html_errors',false);
//ini_set('display_errors',false);
$name?=?isset($_POST['name'])?$_POST['name']:'';
$pwd?=?isset($_POST['pwd'])?$_POST['pwd']:'';
echo?$name.$pwd;
echo?'success?ok';
die;
?
使用實例:
[運行的main.php主腳本文件]
$data=array('name'='guoyu','pwd'='123456');
$url='';
request_by_fsockopen($url,$data,true);//把應(yīng)用B的用戶表異步-同步數(shù)據(jù)
[導(dǎo)步執(zhí)行文件other.php]
在other.php中便可以用$_POST接收main.php提交過來的參數(shù),從而進(jìn)行下一步操作
以上就是php如何實現(xiàn)腳本異步執(zhí)行的方法具體分析的詳細(xì)內(nèi)容.
三中接受方式:
$_GET ? ?//get過來的數(shù)據(jù)
$_POST ?//post過來的數(shù)據(jù)
file_get_contents("php://input") ? //接口過來的xml等字符串?dāng)?shù)據(jù)用這個接
這三個方法足以接受任何數(shù)據(jù)了,具體你還要百度一下用法
html
headtitlecalc/title/head
body
form action="calc.php" method="post"
table border="1"
tr
td colspan="4"numb1: input type="text" name="numb1" //td
/tr
tr
td colspan="4"numb2: input type="text" name="numb2" //td
/tr
tr
tdinput type="radio" name="operation" value="+" / 加/td
tdinput type="radio" name="operation" value="-" / 減/td
tdinput type="radio" name="operation" value="*" / 乘/td
tdinput type="radio" name="operation" value="/" / 除/td
/tr
tr
td colspan="4"input type="submit" value="計算" //td
/tr
/table
/form
/body
/html
--------------------------------------------------------
?php
$num1=$_POST['numb1'];
echo $num1;
$num2=$_REQUEST['numb2'];
echo $num2;
$oper=$_REQUEST['opration']; //這個變量拼寫錯誤,應(yīng)該是operatione
//沒有發(fā)現(xiàn)你所說的下載php的情況
頭部加上超時控制,但對于很多服務(wù)器無效,因為服務(wù)器輸出超時很多在服務(wù)器控制,所以建議用cmd腳本方式運行此程序:
?php
set_time_limit(0); //禁用腳本超時
//?Create?the?socket?and?connect
$socket?=?socket_create(AF_INET,?SOCK_STREAM,?SOL_TCP);
$connection?=?socket_connect($socket,'116。236。128。220',?14580);
//?Write?some?test?data?to?our?socket
if(!socket_write($socket,?"user?NoCall?pass?-1?vers?test?1.0?filter?b/B*?\r\n"))
{
echo("pWrite?failed/p");
}
if(!file_exists('socket_log.html')){
file_put_contents('socket_log.html',?'script
var?xx?=?setInterval(function(){ //每5秒刷新一次頁面
window.location.reload();
},?5000);
/script');
}
//?Read?any?response?from?the?socket
while($buffer?=?socket_read($socket,?64,?PHP_NORMAL_READ))
{
echo?json_encode($buffer);?//轉(zhuǎn)換為json數(shù)據(jù)輸出
//記入文件
file_put_contents('socket_log.html',?json_encode($buffer),?FILE_APPEND);
}
echo("pDone?Reading?from?Socket/p");
使用方法:用命令行方式運行此腳本
php?script.php
腳本會一直運行到接收數(shù)據(jù)結(jié)束,并持續(xù)將收到的數(shù)據(jù)寫入socket_log.html文件。
在瀏覽器打開socket_log.html頁面,此頁面會自動每5秒刷新一次,來顯示最新的數(shù)據(jù)。
確保程序有權(quán)限創(chuàng)建及寫入socket_log.html文件