- Object cloning
- Inheritance
- Interfaces
- Abstract classes
- Namespaces
4:31:00 PM
Achappan Mahalingam
No comments
Related Posts:
Escaping from HTML Everything outside of opening and closing tags is ignored by the PHP parser which allows PHP files to have mixed content. This allows PHP to be embedded in HTML documents, for example to create templates. … Read More
Why we need to use php tags? When PHP parses a file, it looks for opening and closing tags, which are <?php and ?> which tell PHP to start and stop interpreting the code between them. Parsing in this manner allows PHP to be embedded in… Read More
When converting empty array to boolean, what will be the output? $b = (bool) array(); echo $b; Output : FALSE … Read More
What will happen if you omit the closing (end) PHP tag ? If you decide to omit the closing PHP tag, then the last line of the file should be ended with semi colon. If you add the closing tag then last line doesn't need to end with semi colon.<?php echo "First line"; echo "Last … Read More
Is it correct that TRUE or FALSE can be used as constants for the numbers 0 and 1? The value FALSE is not a constant for the number 0, it is a boolean value that indicates FALSE. The value TRUE is also not a constant for 1, it is a special boolean value that indicates TRUE. It just happens to c… Read More
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment