RUVIDEO
Поделитесь видео 🙏

PHP Constants | Tutorial

Course Title: Web Development Masterclass
Course Link: http://youaccel.com/admin/cdisplay.php?cid=11

Facebook: https://www.facebook.com/youaccel
Twitter: https://twitter.com/YouAccel
Website: http://youaccel.com

Tutorial Content:

A constant is an identifier for a given value. A constant cannot be changed during the script, as a variable can.

Also, unlike variables a constant is automatically global across the entire script.

When creating a constant, the name must start with a letter or underscore. A constant does not require a $ sign before the name.

As shown in this example, a constant can be created using the define() function.

Inside the function, we start with the constant name, followed by the value. We can also specify if the constant name should be case-insensitive. We will do that in the second example.

In this example, the constant name is WELCOME, the value is the text "hello my name is John Smith", the constant name is case-sensitive.

We can output the constant by creating an echo statement followed by the constant name, WELCOME.

If we were to set the echo statement to lowercase welcome, the output would not work.

In this second example, we have set the case-insensitive value to true.

This means, when we output our constant (welcome2) it doesn't matter if we use uppercase or lowercase for the constant name.

Constants are global and can be used across the entire script.

In this example, we have defined the constant car, and set the value to Volvo.

We have also created a function (mycar) that outputs the value of constant car using an echo statement.

When we run the function, we can see the browser outputs the value VOLVO.

Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «PHP Constants | Tutorial», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.

Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.

Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!

Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.