PHP 8.5.0 Beta 1 available for testing

Voting

: seven plus one?
(Example: nine)

The Note You're Voting On

jigar dot vy at gmail dot com
10 years ago
<?php

// You cannot mix bracketed namespace declarations with unbracketed namespace declarations - will result in a Fatal error

namespace a;

echo
"I belong to namespace a";

namespace
b {
echo
"I'm from namespace b";
}

<< Back to user notes page

To Top