我在php中使用SLIM创建了一个API。我通过传递一些post参数使用curl调用API。我已经传递了多个参数,当我打印出来时,给我这个:
"name=%2Fvar%2Fwww%2Ftest%2FAPI%2F1jpg&cwt=1&fwt=1&swt=1&twt=1&dwt=1&slwt=1"
多个变量由'&'分隔我如何单独获得'name'变量'cwt'变量?
调用API的代码是:
$url='http://......./API/index.php/search';
$data=array ("name"=>"/var/www/test/API/1jpg","cwt"=>"1","fwt"=>"1","swt"=>"1","twt"=>"1","dwt"=>"1","slwt"=>"1");
$response=sendPostData($url,$data);
function sendPostData($url,$post){
$ch=curl_init($url);
curl_setopt($ch,CURLOPT_CUSTOMREQUEST,"POST");
curl_setopt($ch,CURLOPT_POSTFIELDS,http_build_query($post));
curl_exec($ch);
我的API:
require 'Slim/Slim.php';
\Slim\Slim::registerAutoloader();
$app=new \Slim\Slim();
$app->post('/search',function () use($app){
$result=($app->request()->getBody());
$final=json_encode($result);
echo $final;
});
$app->run();
如何单独打印名称,cwt,twt和所有变量?
答案 0 :(得分:2)
寻找http://www.php.net/manual/en/function.parse-str.php
应该是:
$string = urldecode("name=%2Fvar%2Fwww%2Ftest%2FAPI%2F1jpg&cwt=1&fwt=1&swt=1&twt=1&dwt=1&slwt=1");
$vars = array();
parse_str($string, $vars);
print_r($vars);
它会给你这个:
Array ( [name] => /var/www/test/API/1jpg [cwt] => 1 [fwt] => 1 [swt] => 1 [twt] => 1 [dwt] => 1 [slwt] => 1 )
答案 1 :(得分:0)
字符串中最好的方法是像这样分割字符串
$pizza = "piece1&piece2&piece3&piece4&piece5&piece6";
$pieces = explode("&", $pizza);
echo $pieces[0]; // piece1
echo $pieces[1]; // piece2
然后您可以使用“=”符号再次拆分它们以将键与值分开并将它们重新组合成多维数组
我用这个作为我的方法
然后在您的案例Multidimentional Arrays和函数Array Functions
中使用数组键作为cwt值