如何在调用var_dump()函数时删除文件URL

时间:2017-10-13 02:22:31

标签: php json wordpress api

所以在下面的代码中我正在调用nytimes api

<?php

function rpnyt_article_get_result( $rpnyt_search , $rpnyt_key ){

 $rpnyt_url = 'https://api.nytimes.com/svc/search/v2/articlesearch.json?q='.$rpnyt_search.'&api-key='.$rpnyt_key ;
 $json_feed = wp_remote_get($rpnyt_url);

 var_dump($json_feed[ 'body']);

}

?>

我正在按预期收到回复,但其中包含来自我调用此函数的文件网址/home/ubuntu/XXXXXXXXX/xxxxxxxxxxxx/plugins/XXxxx/includes/rpnyt-news-content.php:8:(seemage) enter image description here

2 个答案:

答案 0 :(得分:1)

尝试使用var_export()而不是var_dump()。

http://php.net/manual/en/function.var-export.php

答案 1 :(得分:1)

考虑使用

echo(json_encode($your_thing));