Zoeken…


Voorbeeld

Eerst moet u een bestand constants.php maken en het is een goede gewoonte om dit bestand in app / config / folder te maken. U kunt ook het bestand constants.php toevoegen aan het bestand compose.json.

Voorbeeldbestand:

app / config / constants.php

Op matrix gebaseerde constanten in het bestand:

return [
    'CONSTANT' => 'This is my first constant.'
];

En je kunt deze constante krijgen door de gevel Config :

use Illuminate\Support\Facades\Config;

Krijg vervolgens de waarde met constante naam CONSTANT zoals hieronder:

echo Config::get('constants.CONSTANT');

En het resultaat zou de waarde zijn:

Dit is mijn eerste constante.



Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow