Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

php namespace class


<?php
namespace m
ame; // see "Defining Namespaces" section

class MyClass {}
function myfunction() {}
const MYCONST = 1;

$a = new MyClass;
$c = new my
ameMyClass; // see "Global Space" section

$a = strlen('hi'); // see "Using namespaces: fallback to global
                   // function/constant" section

$d = namespaceMYCONST; // see "namespace operator and __NAMESPACE__
                        // constant" section
$d = __NAMESPACE__ . 'MYCONST';
echo constant($d); // see "Namespaces and dynamic language features" section
?>

Source by www.php.net #
 
PREVIOUS NEXT
Tagged: #php #namespace #class
ADD COMMENT
Topic
Name
3+7 =