file_get_contents从2个文本文件中添加数字

时间:2014-03-02 04:11:39

标签: php file-get-contents addition

我目前正在使用cronjob将数字缓存到API中的文本中,我有两个带有数字的文本文件,我想将它们加在一起,如16 + 4,它打印在20

我不知道如何做到这一点,如果有人可以提供一个例子可以做到,我会很高兴。

1 个答案:

答案 0 :(得分:0)

像这样:

<?php

$file1 = '/path/to/file/file1.txt';
$file2 = '/path/to/file/file2.txt';

if(is_file($file1) && is_file($file2)) {

    $value1 = trim(file_get_contents($file1));
    $value2 = trim(file_get_contents($file2));

    echo sprintf('The sum is %s', (int)$value1 + (int)$value2);

} else {
    echo "One of the files doesn't exist";
}