Constants

Intro
In classes kan je ook constants hebben. Deze constants zijn te vergelijken met static, alleen je kan geen constante functies hebben ;)

Praktijk

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
class MijnClass
{
   const constant = 'constante waarde';

   function
showConstant() {
       echo  self::constant . "\n";
   }
}


echo MijnClass::constant . "\n";

$class = new MijnClass();
$class->showConstant();
//dit zal twee keer ' constante waarde' outputten'
?>

« Lees de omschrijving en reacties

Inhoudsopgave

  1. Inleiding
  2. Autoload
  3. Con- & Destructors
  4. Scope (::)
  5. Static
  6. Constants
  7. Type Hinting
  8. Final
  9. Object iteration
  10. Exceptions
  11. Abstract
  12. Conclusie/Einde

PHP tutorial opties

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.