我对php很新。我知道echo是如何输出文本的,但不确定如何将其应用于下面的场景。下面,数据被删除并输出。想知道是否有一种方法可以使用file_put_contents向输出添加文本,而我正在尝试添加的文本是“%”。原因是下面代码的输出是一个每日更改的随机数,它实际上是一个百分比,所以我想每次都将它添加到输出的末尾。 非常感谢您的帮助。
// get japanchange
function getJapanchange(){
$doc = new DOMDocument;
// We don't want to bother with white spaces
$doc->preserveWhiteSpace = false;
// Most HTML Developers are chimps and produce invalid markup...
$doc->strictErrorChecking = false;
$doc->recover = true;
$doc->loadHTMLFile('http://________________//global-
indices/');
$xpath = new DOMXPath($doc);
$query = "//div[@class='MT10']";
$entries = $xpath->query($query);
foreach ($entries as $entry) {
$result = trim($entry->textContent);
$ret_ = explode(' ', $result);
//make sure every element in the array don't start or end with blank
foreach ($ret_ as $key=>$val){
$ret_[$key]=trim($val);
}
//delete the empty element and the element is blank "\n" "\r" "\t"
//I modify this line
$ret_ = array_values(array_filter($ret_,deleteBlankInArray));
//echo the last element
file_put_contents(globalVars::$_cache_dir . "japanchange",
$ret_[56]);
}
}
答案 0 :(得分:1)
如果您只想在输出结尾添加%到您已经使用的文件。你可以简单地做
file_put_contents(globalVars::$_cache_dir . "japanchange",
$ret_[56].'%');