本文整理汇总了PHP中Schema::getNamespace方法的典型用法代码示例。如果您正苦于以下问题:PHP Schema::getNamespace方法的具体用法?PHP Schema::getNamespace怎么用?PHP Schema::getNamespace使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Schema
的用法示例。
在下文中一共展示了Schema::getNamespace方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setDefaultUri
/**
* @param SchemaProperty $schemaprop
* @param Schema $schemaObj
*/
public function setDefaultUri($schemaprop, $schemaObj)
{
$newURI = $schemaObj->getNamespace();
$UriId = $schemaObj->getLastUriId() + 1;
$schemaprop->setUri($newURI . $UriId);
$this->setDefaultLexicalAlias($schemaprop, $newURI);
}
示例2: import
/**
* @param string $basePath
* @param string $schemaLocation
* @return Schema
*/
public function import($basePath, $schemaLocation)
{
$p = parse_url($schemaLocation);
if (empty($p['scheme'])) {
$schemaLocation = realpath($basePath . '/' . $p['path']);
if (!empty($this->realPathToImport[$schemaLocation])) {
return $this->imports[$this->realPathToImport[$schemaLocation]];
}
$dom = new Schema($schemaLocation);
$basePath = dirname($schemaLocation);
foreach ($dom->getImports() as $import) {
$this->import($basePath, $import->value);
}
foreach ($dom->getLinkbases() as $import) {
$this->importLinkbase($basePath, $import->value);
}
$namespace = $dom->getNamespace();
$this->imports[$namespace] = $dom;
$this->realPathToImport[$schemaLocation] = $namespace;
return $dom;
}
return null;
}
示例3: getNamespace
/**
* @return string
*/
public function getNamespace()
{
return $this->parent->getNamespace();
}