This site is mobile accessible. Press the "Tap Here" button to use a different font-size.
Smartphone icons created by Freepik - Flaticon
Constants are like variables except that once they are defined they cannot be changed or undefined.
To create a constant, use the
function.define(name, value, case-insensitive)
Create a constant with a case-sensitive name:
<?php define("GREETING", "Welcome to W3Schools.com!"); echo GREETING; ?>
Create a constant with a case-insensitive name:
<?php define("GREETING", "Welcome to W3Schools.com!", true); echo greeting; ?>
In PHP7, you can create an Array constant using the
function.<?php define("cars", [ "Alfa Romeo", "BMW", "Toyota" ]); echo cars[0]; ?>
Constants are automatically global and can be used across the entire script.
This example uses a constant inside a function, even if it is defined outside the function:
<?php define("GREETING", "Welcome to W3Schools.com!"); function myTest() { echo GREETING; } myTest(); ?>
Eventually the navigation links, above, will be replaced by these (previous) and (next) buttons below.
Animated PHP icons used in the buttons provided by ICONS8.COM. Smartphone icons created by Freepik - Flaticon
Module 2 quiz