php文件中将调试结果输出到console控制台

在php文件中调用echo将curl获取结果输出到console控制台。

<?php
function getArticle()
{
    $url="https://interface.meiriyiwe.com/article/random";
    $ch = curl_init();
    $timeout = 5;
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
    curl_setopt($ch, CURLOPT_NOSIGNAL, true);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, false);
    $file_contents = curl_exec($ch);
    curl_close($ch);


    //echo "<script>console.log(".$file_contents.")</script>";
    $info=json_decode($file_contents);
    $out['title'] = $info->data->title;
    $out['author'] = $info->data->author;
    $out['content'] = $info->data->content;
    return $out;
}
    $arr = getArticle();
    //echo "<script>console.log(".print_r($arr).")</script>";
    $output .= '<div id="article_show"><h1>'. $arr['title'] . '</h1><p class="article_author"><span>'. $arr['author'] .'</span></p><div class="article_text">'. $arr['content'] .'</div></div>';
    echo $output;
?>


anzhihe 安志合个人博客,版权所有 丨 如未注明,均为原创 丨 转载请注明转自:https://chegva.com/4712.html | ☆★★每天进步一点点,加油!★★☆ | 

您可能还感兴趣的文章!

发表评论

电子邮件地址不会被公开。 必填项已用*标注