当前位置: 首页>>代码示例>>PHP>>正文


PHP Profile::fetchRealName方法代码示例

本文整理汇总了PHP中Profile::fetchRealName方法的典型用法代码示例。如果您正苦于以下问题:PHP Profile::fetchRealName方法的具体用法?PHP Profile::fetchRealName怎么用?PHP Profile::fetchRealName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Profile的用法示例。


在下文中一共展示了Profile::fetchRealName方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getUserPairs

 public function getUserPairs()
 {
     $pairs = array();
     foreach ($this->getUsernames() as $username) {
         $pairs[] = array('id' => $username, 'name' => Profile::fetchRealName($username));
     }
     return $pairs;
 }
开发者ID:daerduoCarey,项目名称:oj,代码行数:8,代码来源:Report.php

示例2:

echo fHTML::encode($this->record->getJudgeMessage());
?>
</pre>
    <pre class="prettyprint linenums"><?php 
echo fHTML::encode($this->record->getSubmitCode());
?>
</pre>
  </div>
  <ul class="span3">
    <li>
      提交者:
      <?php 
echo fHTML::encode($this->record->getOwner());
?>
      <?php 
echo fHTML::encode(Profile::fetchRealName($this->record->getOwner()));
?>
    </li>
    <li>
      题目编号:
      <a href="<?php 
echo SITE_BASE;
?>
/problem/<?php 
echo $this->record->getProblemId();
?>
">
        <?php 
echo $this->record->getProblemId();
?>
</a>
开发者ID:daerduoCarey,项目名称:oj,代码行数:31,代码来源:show.php

示例3: foreach

    </tr>
  </thead>
  <tbody>
    <?php 
foreach ($this->user_stats as $i => $user_stat) {
    ?>
      <tr>
        <td><?php 
    echo $i + 1 + ($this->page - 1) * $this->user_stats->getLimit();
    ?>
</td>
        <td><?php 
    echo $user_stat->getUsername();
    ?>
 <?php 
    echo Profile::fetchRealName($user_stat->getUsername());
    ?>
</td>
        <td><?php 
    echo $user_stat->getSolved();
    ?>
</td>
        <td><?php 
    echo $user_stat->getTried();
    ?>
</td>
        <td><?php 
    echo $user_stat->getSubmissions();
    ?>
</td>
      </tr>
开发者ID:daerduoCarey,项目名称:oj,代码行数:31,代码来源:ranklist.php

示例4:

<div class="page-header">
  <h1><?php 
echo $title;
?>
</h1>
</div>
<form action="<?php 
echo SITE_BASE;
?>
/change/info" method="POST" class="form-horizontal">
  <fieldset>
    <div class="control-group">
      <label class="control-label" for="realname">姓名 (必填)</label>
      <div class="controls">
        <input type="text" class="input-medium" id="realname" name="realname" placeholder="姓名" value="<?php 
echo Profile::fetchRealName(fAuthorization::getUserToken());
?>
">
      </div>
    </div>
    <div class="control-group">
      <label class="control-label">性别 (必填)</label>
      <div class="controls">
        <?php 
$gender = Profile::fetchGender(fAuthorization::getUserToken());
?>
        <label style="display:inline"><input type="radio" name="gender" value="男"<?php 
if ($gender == '男') {
    echo ' checked';
}
?>
开发者ID:daerduoCarey,项目名称:oj,代码行数:31,代码来源:change_info.php

示例5: foreach

foreach ($this->records as $r) {
    ?>
      <tr>
        <td><a href="<?php 
    echo $this->top_url;
    echo $r->getId();
    ?>
"><?php 
    echo $r->getId();
    ?>
</a></td>
        <td><?php 
    echo fHTML::encode($r->getOwner());
    ?>
 <?php 
    echo fHTML::encode(Profile::fetchRealName($r->getOwner()));
    ?>
</td>
        <td>
          <a href="<?php 
    echo SITE_BASE;
    ?>
/problem/<?php 
    echo $r->getProblemId();
    ?>
"><?php 
    echo $r->getProblemId();
    ?>
</a>
          <?php 
    if (fAuthorization::checkLoggedIn()) {
开发者ID:daerduoCarey,项目名称:oj,代码行数:31,代码来源:index.php


注:本文中的Profile::fetchRealName方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。