eugenevdm/helpers

随机助手。

1.0.6 2016-11-28 15:33 UTC

This package is auto-updated.

Last update: 2024-09-14 11:44:49 UTC


README

加载配置值

设置

  • 在\下创建名为config的文件夹
  • 创建名为"config.php"的文件,例如ssh.php
return [
    'host' => 'host.domain.com',
    'username' => 'username',
    'password' => 'password',
];

确保你有一个类似以下内容的.gitignore文件

# Created by .ignore support plugin (hsz.mobi)
.gitignore
.idea/
vendor/
config/ <-- Make sure you have this entry!

使用方法

$config = \Helpers\Helpers::Config('ssh');