PHP code example of naugrim / laravel-strict-config-helper

1. Go to this page and download the library: Download naugrim/laravel-strict-config-helper library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

naugrim / laravel-strict-config-helper example snippets


 

$value = config('foo');

if (strpos($value, 'bar')) {
  // do something	
}

$value = config_string('foo');

if (strpos($value, 'bar')) {
  // do something	
}

config_string(string $key, ?string $default = null): string
config_int(string $key, ?int $default = null): int
config_float(string $key, ?float $default = null): float
config_numeric(string $key, int | float | null $default = null): int | float
config_bool(string $key, ?bool $default = null): bool