getenv() vs. $_ENV in PHP

后端 未结 7 1339
半阙折子戏
半阙折子戏 2020-12-05 02:00

What is the difference between getenv() and $_ENV?

Any trade-offs between using either?

I noticed sometimes getenv() g

7条回答
  •  Happy的楠姐
    2020-12-05 02:23

    read env and create

     $value) {
                $position++;
                // If value isn't blank, or key isn't numeric meaning not a blank line, then add entry
                if($value !== "" || !is_numeric($key)) {
                    // If passed in option is a boolean (true or false) this will normally
                    // save as 1 or 0. But we want to keep the value as words.
                    if(is_bool($value)) {
                        if($value === true) {
                            $value = "true";
                        } else {
                            $value = "false";
                        }
                    }
    
                    // Always convert $key to uppercase
                    $env .= strtoupper($key) . "=" . $value;
    
                    // If isn't last item in array add new line to end
                    if($position != count($array)) {
                       $env .= "\n";
                    }
                } else {
                    $env .= "\n";
                }
            }
            $mwrite = fopen($envPath, "w");
            fwrite($mwrite, $env);
            fclose($mwrite);
        }
        /**
         * Json to .env file storage
         *
         * @param $json
         * @param $envPath
         */
        public static function JsonToEnv(array $json, string $envPath)
        {
            $env = "";
            $position = 0;
            $array = json_decode($json,true);
            foreach($array as $key => $value) {
                $position++;
                // If value isn't blank, or key isn't numeric meaning not a blank line, then add entry
                if($value !== "" || !is_numeric($key)) {
                    // If passed in option is a boolean (true or false) this will normally
                    // save as 1 or 0. But we want to keep the value as words.
                    if(is_bool($value)) {
                        if($value === true) {
                            $value = "true";
                        } else {
                            $value = "false";
                        }
                    }
    
                    // Always convert $key to uppercase
                    $env .= strtoupper($key) . "=" . $value;
    
                    // If isn't last item in array add new line to end
                    if($position != count($array)) {
                       $env .= "\n";
                    }
                } else {
                    $env .= "\n";
                }
            }
            $mwrite = fopen($envPath, "w");
            fwrite($mwrite, $env);
            fclose($mwrite);
        }
        /**
         * XML to .env file storage
         *
         * @param $json
         * @param $envPath
         */
        public static function XmlToEnv(array $xml, string $envPath)
        {
            $env = "";
            $position = 0;
            $array = simplexml_load_string($xml);
            foreach($array as $key => $value) {
                $position++;
                // If value isn't blank, or key isn't numeric meaning not a blank line, then add entry
                if($value !== "" || !is_numeric($key)) {
                    // If passed in option is a boolean (true or false) this will normally
                    // save as 1 or 0. But we want to keep the value as words.
                    if(is_bool($value)) {
                        if($value === true) {
                            $value = "true";
                        } else {
                            $value = "false";
                        }
                    }
    
                    // Always convert $key to uppercase
                    $env .= strtoupper($key) . "=" . $value;
    
                    // If isn't last item in array add new line to end
                    if($position != count($array)) {
                       $env .= "\n";
                    }
                } else {
                    $env .= "\n";
                }
            }
            $mwrite = fopen($envPath, "w");
            fwrite($mwrite, $env);
            fclose($mwrite);
        }
    }
    ?>
    

提交回复
热议问题