“Konstanta php” Kode Jawaban

cara membuat konstan dalam php

<?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

konstanta variabel php

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

Konstanta php

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

Jawaban yang mirip dengan “Konstanta php”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya