Block Statement
Block Statement
PHP में
जब हमें कुछ Statements को एक Group के
रूप में Represent करना होता है , तब “C” “C++” व Java की तरह ही उस सभी Statements को Opening व Closing Curly Braces के बीच Enclose किया जाता है और Closing Curly Brace के बाद Semicolon
नहीं लगाया जाता | जैसे
:
{
print “Hello World”;
PRINT “This is my first PHP Script”;
}
No comments