本文整理汇总了PHP中url::fe方法的典型用法代码示例。如果您正苦于以下问题:PHP url::fe方法的具体用法?PHP url::fe怎么用?PHP url::fe使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类url
的用法示例。
在下文中一共展示了url::fe方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getOutValue
public function getOutValue($sql)
{
$this->getDynValue($sql);
foreach ($this->outVars[1] as $key => $type) {
if (!$this->isType($type, $this->outVars[2][$key])) {
continue;
}
$sqlEntry = strtolower($this->DynType) . $this->outVars[2][$key];
$sqlEntry = $sql->get($sqlEntry);
//DYN_LINK_ID bleibt unberührt
if ($type == $this->DynType . '_ID') {
//nothing
} else {
$sqlEntry = url::fe($sqlEntry);
}
$this->content = str_replace($this->outVars[0][$key], $sqlEntry, $this->content);
}
return $this;
}
示例2: array
$i = 1;
?>
<div class="row">
<div class="col-lg-12">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title pull-left"><a href="<?php
echo url::backend('structure', array('subpage' => 'pages', 'structure_id' => $structure_id));
?>
"><?php
echo $pageSql->get('name');
?>
</a></h3>
<div class="pull-right btn-group">
<a href="<?php
echo dyn::get('hp_url') . url::fe($structure_id);
?>
" target="_blank" class="btn btn-sm btn-warning"><?php
echo lang::get('visit_page');
?>
</a>
<a href="<?php
echo url::backend('structure', ['subpage' => 'pages', 'action' => 'edit', 'id' => $structure_id]);
?>
" class="btn btn-sm btn-warning"><?php
echo lang::get('edit');
?>
</a>
<a href="<?php
echo url::backend('structure', ['subpage' => 'pages']);
?>
示例3: getUrl
public function getUrl()
{
return url::fe($this->get('id'));
}