我有一个php脚本-如下所示:“ 1.php”:
a = std::min(a, maxValue);
我还有另一个php脚本“ 2.php”,我想在“ 1.php”上的$ file中添加项目。如何在1.php上的2.php中使用<?php
$file = array("mangoes", "oranges");
print_r($file);
?>
?
另外,如何清除(清空)数组?
编辑:从2.php调用它时,我无法更新1.php中的数组。我也使用了array_push($file, "banana", "grapes");
和require()
。
2.php
include()