我正在尝试检查是否$_POST
存在并仅检查特定值。在我的代码中,我试图检查数据头=h1。代码有效,它检查数据头,但我不知道如何指定头的值,即检查 header=h1
if ($_POST['data']['header']){
$myBuildPath = Config::$buildPath.Users::$userid.'/'.$item[$this->mainModel->primaryKey].'/';
foreach (Config::$repository['headersCustomDest'] as $file => $fileDestPath){
$dest_file = $myBuildPath.$fileDestPath;
if(file_exists($file)) full_copy($file,$dest_file);
else echo $file.' does not exist.';
}