ReflectionClass::getNamespaceName

(PHP 5 >= 5.3.0, PHP 7)

ReflectionClass::getNamespaceNameGets namespace name

Descrierea

public ReflectionClass::getNamespaceName ( ) : string

Gets the namespace name.

Avertizare

Această funcție nu este documentată în prezent; este disponibilă numai lista sa de argumente.

Parametri

Această funcție nu are parametri.

Valorile întoarse

The namespace name.

Exemple

Example #1 ReflectionClass::getNamespaceName() example

<?php
namespace A\B;

class 
Foo { }

$class = new \ReflectionClass('stdClass');

var_dump($class->inNamespace());
var_dump($class->getName());
var_dump($class->getNamespaceName());
var_dump($class->getShortName());

$class = new \ReflectionClass('A\\B\\Foo');

var_dump($class->inNamespace());
var_dump($class->getName());
var_dump($class->getNamespaceName());
var_dump($class->getShortName());
?>

Exemplul de mai sus va afișa:

bool(false)
string(8) "stdClass"
string(0) ""
string(8) "stdClass"

bool(true)
string(7) "A\B\Foo"
string(3) "A\B"
string(3) "Foo"

A se vedea și

add a note add a note

User Contributed Notes 1 note

up
6
francois
12 years ago
If the object does not belong to a namespace, an empty string is returned
To Top