“PHP -Konstanten” Code-Antworten

wie man Konstante in PHP erzeugt

<?php
  
#Syntax to define a constant is Define("Name","Value","Case-insensitive")

#For case-insensitive, sensitive is default
  
define("Tau","6.28318530718","true");
echo tAU;

#Fun fact: Tau = Pi x 2
?>
Rick Astley

PHP -Variablekonstante

if (...) {
     const FOO = 'BAR';    // Invalid
 }
 // but
 if (...) {
     define('FOO', 'BAR'); // Valid
 }
Inexpensive Ibex

PHP -Konstanten

<?php
define("GREETING", "Welcome to my profile");
echo GREETING;
?>
naly moslih

Ähnliche Antworten wie “PHP -Konstanten”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen