我只想从此代码中提取shorturl值。

最后一个(echo $ data;)提取所有数据,我只想拥有$ shorturl值。

// Init the CURL session
$ch = curl_init();
curl_setopt( $ch, CURLOPT_URL, $api_url );
curl_setopt( $ch, CURLOPT_HEADER, 0 );            // No header in the result
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true ); // Return, do not echo result
curl_setopt( $ch, CURLOPT_POST, 1 );              // This is a POST request
curl_setopt( $ch, CURLOPT_POSTFIELDS, array(      // Data to POST
        'url'      => $url,
        'keyword'  => $keyword,
        'title'    => $title,
        'format'   => $format,
        'action'   => 'shorturl',
        'username' => $username,
        'password' => $password
    ) );

// Fetch and return content
$data = curl_exec($ch);
curl_close($ch);

// Do something with the result. Here, we just echo it.
echo $data;

最佳答案

您可以使用json_decode()转换输入数据$data

$data = '{"status":"success","code":"error:url","url":{"keyword":"uqcgu","url":"https:\/\/www.diginet.co.il\/event2\/index.php?id=c2f91a&p=0547899559","title":"Sample","date":"2018-04-17 06:55:19","ip":"31.168.11.69","clicks":"1"},"message":"https:\/\/www.example.com\/example\/index.php?id=c2f91a&p=[...] already exists in database","title":"Example","shorturl":"http:\/\/example.com\/i\/uqcgu","statusCode":200}';
$data = json_decode($data);
echo $data->shorturl;

将输出:
http://example.com/i/uqcgu

关于javascript - 从YOURLS API中提取shorturl值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49871868/

10-09 22:02