mirror of
https://github.com/php/presentations.git
synced 2026-03-25 08:02:07 +01:00
9 lines
132 B
PHP
9 lines
132 B
PHP
<?php
|
|
class porsche {
|
|
const price = "too much";
|
|
}
|
|
|
|
echo "A nice Porsche will always cost ";
|
|
echo porsche::price . "\n<br />\n";
|
|
?>
|