Advanced Java and Web Technologies for JNTUK
Blog providing beginner tutorials on different web technologies like HTML, CSS, Javascript, PHP, MYSQL, XML, Java Beans, Servlets, JSP and AJAX
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.
AJWT » PHP » Constants in PHP
Suryateja Pericherla Categories: PHP. No Comments on Constants in PHP
4
(1)

Constants are identifiers which are used to store values that cannot be changed once initialized.

 

A constant doesn’t begin with a dollar ($) sign. The convention for constants is, the name of a constant should always be written in uppercase.

 

We use the function define to create constants. Below example demonstrates creating and using constants in PHP:

<?php
   define("PI", 3.142);
   print(PI);
   $area = PI*10*10;  //Let radius be 10
   print("<br />Area of circle is: $area");
?>

 

A video tutorial on declaring and using constants in PHP:

 


Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests.


How useful was this post?

Click on a star to rate it!

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

Note: Do you have a question on this article or have a suggestion to make this article better? You can ask or suggest us by filling in the below form. After commenting, your comment will be held for moderation and will be published in 24-48 hrs.

Leave a Reply

Your email address will not be published. Required fields are marked *

Facebook
Twitter
Pinterest
Youtube
Instagram