• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP h5函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中h5函数的典型用法代码示例。如果您正苦于以下问题:PHP h5函数的具体用法?PHP h5怎么用?PHP h5使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



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

示例1: output_domain_block

function output_domain_block($project_id)
{
    foreach (ProjectInfo::$mDomainList as $domain_handle) {
        if ($domain_handle == 'home' || $domain_handle == 'misc') {
            continue;
        }
        $domain_link = ProjectInfo::assemblePath($project_id, $domain_handle);
        $domain_name = ProjectInfo::getDomainName($project_id, $domain_handle);
        $domain_desc = ProjectInfo::getDomainDesc($project_id, $domain_handle);
        switch ($domain_handle) {
            case 'download':
                $icon_name = 'download';
                break;
            case 'document':
                $icon_name = 'book';
                break;
            case 'community':
                $icon_name = 'group';
                break;
            case 'contribute':
                $icon_name = 'heart';
                break;
        }
        ?>
<div class="col-sm-3 col-md-3 col-lg-3 note-block">
	<div class="well text-center">
		<div class="note-icon">
			<a href="<?php 
        echo $domain_link;
        ?>
">
				<span class="glyphicon glyphicon-<?php 
        echo $icon_name;
        ?>
"></span>
			</a>
		</div>
		<div class="note-desc">
			<h2>
				<a href="<?php 
        echo $domain_link;
        ?>
">
					<?php 
        echo h5($domain_name);
        ?>
				</a>
			</h2>
			<p>
				<?php 
        echo h5($domain_desc);
        ?>
			</p>
		</div>
		</p>
	</div>
</div>
<?php 
    }
}
开发者ID:rratcliffe,项目名称:fsen,代码行数:60,代码来源:project_homepage.php


示例2: getPersonalHomeLink

 static function getPersonalHomeLink($fse_info = false, $with_tags = false, $style_class = false)
 {
     if ($fse_info == false) {
         $fse_info = $_SESSION['FSEInfo'];
     }
     if ($fse_info == false) {
         if ($with_tags) {
             return '<a href="/" class="' . $style_class . '">' . t('No Name') . '</a>';
         }
         return '/';
     }
     if (preg_match("/^zh/i", $fse_info['def_locale'])) {
         $doc_lang = 'zh';
     } else {
         $doc_lang = 'en';
     }
     $link = "/{$doc_lang}/engineer/" . $fse_info['user_name'];
     if ($with_tags) {
         return '<a href="' . $link . '" class="' . $style_class . '">' . h5($fse_info['nick_name']) . '</a>';
     }
     return $link;
 }
开发者ID:rratcliffe,项目名称:fsen,代码行数:22,代码来源:FSEInfo.php


示例3: takeaway_heading

/**
*######################################################################
*#  takeaway heading
*######################################################################
*/
function takeaway_heading($atts)
{
    if (isset($atts['type'])) {
        switch ($atts['type']) {
            case 'h1':
                return h1($atts);
                break;
            case 'h2':
                return h2($atts);
                break;
            case 'h3':
                return h3($atts);
                break;
            case 'h4':
                return h4($atts);
                break;
            case 'h5':
                return h5($atts);
                break;
        }
    }
    return '';
}
开发者ID:ankitparsanaa,项目名称:foodapp,代码行数:28,代码来源:shortcodes.php


示例4: getChapterDesc

 public static function getChapterDesc($project_id, $domain_handle, $volume_handle, $part_handle, $chapter_handle)
 {
     $chapter_info = self::getChapterInfo($project_id, $domain_handle, $volume_handle, $part_handle, $chapter_handle);
     if ($chapter_info == false) {
         return false;
     }
     return h5($chapter_info['chapter_desc']);
 }
开发者ID:rratcliffe,项目名称:fsen,代码行数:8,代码来源:ProjectInfo.php


示例5: h3

echo h3("Interplay of Relationship"), h4("Relative House Position of each other's Ascendant, Sun, Moon and Venus."), begin_ul();
foreach ($relationship_calculator->relative_positionals as $planet => $positional) {
    $positional_text = '';
    if ($positional) {
        $positional_text = ", " . $positional;
    }
    echo li($planet, "- house ", $relationship_calculator->relative_houses[$planet], $positional_text);
}
echo end_ul();
echo h4("Deeper Synastry Analysis of each other's Ascendant, Sun, Moon and Venus."), h5("Influences to ", $female_data['report_name'], "'s Planets in ", $male_data['report_name'], "'s chart.");
foreach (array('Ascendant', 'Sun', 'Moon', 'Venus') as $planet) {
    echo h5($planet), ul($relationship_calculator->female_male_influences[$planet]);
}
echo h5("Influences to ", $male_data['report_name'], "'s Planets in ", $female_data['report_name'], "'s chart.");
foreach (array('Ascendant', 'Sun', 'Moon', 'Venus') as $planet) {
    echo h5($planet), ul($relationship_calculator->male_female_influences[$planet]);
}
echo h4("Marriage Compatibility Based on Indian Astrology");
echo "Male Nakshatra: ";
echo $kuta_calculator->male_nakshatra, br();
echo "Female Nakshatra: ";
echo $kuta_calculator->female_nakshatra, br(), br();
echo "Nadi Kuta Score: ";
echo $kuta_calculator->nadiKutaScore;
echo "/8", br();
echo "Male Dosha: ";
echo $kuta_calculator->male_dosha, br();
echo "Female Dosha: ";
echo $kuta_calculator->female_dosha, br(), br();
echo "Rashi Kuta Score: ";
echo $kuta_calculator->rashiKutaScore;
开发者ID:vishald13,项目名称:aheadzen,代码行数:31,代码来源:testRelationshipCompatibility.php


示例6: foreach

					</h3>
				</header>
<?php 
if (count($normal_blogs) > 0) {
    ?>
				<ul class="list-group">
<?php 
    foreach ($normal_blogs as $blg) {
        ?>
					<li class="list-group-item">
						<p>
							<a href="<?php 
        echo ProjectInfo::assemblePath($project_id, $domain_handle, $volume_handle, $part_handle, $blg['chapter_handle']);
        ?>
"><?php 
        echo h5($blg['chapter_name']);
        ?>
</a>
						</p>
					</li>
<?php 
    }
    ?>
				</ul>
<?php 
}
?>

			</div>

		</div>
开发者ID:rratcliffe,项目名称:fsen,代码行数:31,代码来源:project_doc_blog.php


示例7: foreach

</a>
			</li>
<?php 
foreach ($volumes as $v) {
    ?>
		<li>
			<a href="<?php 
    echo ProjectInfo::assemblePath($sys_project_id, 'misc', $v['volume_handle']);
    ?>
"
					title="<?php 
    echo h5($v['volume_desc']);
    ?>
"
					class="inline-list small"><?php 
    echo h5($v['volume_name']);
    ?>
</a>
		</li>
<?php 
}
?>
		</ul>

		<ul>
			<li><a class="inline-list small" target="_blank" href="http://www.concrete5.org">Concrete5</a></li>
			<li><a class="inline-list small" target="_blank" href="http://getbootstrap.com">Bootstrap</a></li>
			<li><a class="inline-list small" target="_blank" href="https://michelf.ca/projects/php-markdown/">PHP Markdown</a></li>
		</ul>
	</nav>
开发者ID:rratcliffe,项目名称:fsen,代码行数:30,代码来源:footer.php


示例8: h5

				src="<?php 
    echo $icon_url;
    ?>
" alt="<?php 
    echo h5($project_info['name']);
    ?>
" />
	</section>

	<section class="col-md-9">
			<h1><?php 
    echo h5($project_info['name']);
    ?>
</h1>
			<p><?php 
    echo h5($project_info['short_desc']);
    ?>
</p>
<?php 
    if (isset($gh_user)) {
        ?>
			<div class="text-left">
				<iframe src="http://ghbtns.com/github-btn.html?user=<?php 
        echo $gh_user;
        ?>
&amp;repo=<?php 
        echo $gh_repo;
        ?>
&amp;type=watch&amp;count=true&amp;size=large" allowtransparency="true" frameborder="0" scrolling="0" width="170" height="30"></iframe>
				<iframe src="http://ghbtns.com/github-btn.html?user=<?php 
        echo $gh_user;
开发者ID:rratcliffe,项目名称:fsen,代码行数:31,代码来源:view.php


示例9: edit_member_roles

 public function edit_member_roles()
 {
     if (!fse_try_to_login()) {
         header("location:/fse_login");
         return;
     }
     $project_id = $this->post('projectID');
     $area_handle = $this->post('areaHandle');
     $domain_handle = $this->post('domainHandle');
     $volume_handle = $this->post('volumeHandle');
     $part_handle = $this->post('partHandle');
     $chapter_handle = $this->post('chapterHandle');
     $section_id = $this->post('sectionID');
     $member_username = $this->post('memberUsername');
     $member_display_name = $this->post('memberDisplayName');
     $member_desc = $this->post('memberDescription');
     $member_roles = array('g-mmb');
     for ($i = 0; $i < ProjectInfo::NR_ROLES; $i++) {
         $role = $this->post("memberRole{$i}");
         if (in_array($role, ProjectInfo::$mMemberRoleList)) {
             $member_roles[] = $role;
         }
     }
     $member_roles = array_unique($member_roles);
     $role_description = '';
     $doc_lang = substr($project_id, -2);
     foreach ($member_roles as $role) {
         $role_description .= ProjectInfo::$mRoleDescriptions[$doc_lang][$role];
         $role_description .= ' ';
     }
     $member_roles = implode('|', $member_roles);
     $page_path = ProjectInfo::assemblePath($project_id, $domain_handle, $volume_handle, $part_handle, $chapter_handle);
     error_log("Edit Member: {$page_path}\n", 3, '/var/tmp/fsen.log');
     $page_id = Page::getByPath($page_path)->getCollectionID();
     if ($page_id <= 0) {
         header('Location: /');
         return;
     }
     if (!fse_try_to_login()) {
         set_page_action_status($page_id, t('Add/Edit Member Roles'), 'error', t('You do not sign in or session expired.'));
         header("Location: {$page_path}");
         return;
     }
     $curr_fse_id = $_SESSION['FSEInfo']['fse_id'];
     $curr_rights = ProjectInfo::getUserRights($project_id, $curr_fse_id);
     if ($curr_rights[0] != 't') {
         set_page_action_status($page_id, t('Add/Edit Member Roles'), 'error', t('You have no right to edit member roles.'));
         header("Location: {$page_path}");
         return;
     }
     $fse_info = FSEInfo::getBasicProfile($member_username);
     if ($fse_info == false) {
         set_page_action_status($page_id, t('Add/Edit Member Roles'), 'error', t('No such user!'));
         header("Location: {$page_path}");
         return;
     }
     if (strlen($member_display_name) == 0) {
         $member_display_name = $fse_info['nick_name'];
     }
     $member_rights = ProjectInfo::setUserRoles($project_id, $fse_info['fse_id'], $member_display_name, $member_desc, $member_roles);
     if (substr($member_rights, 0, 3) == 'ttt') {
         $style = "primary";
     } else {
         if ($member_rights[0] == 't') {
             $style = "success";
         } else {
             if ($member_rights[1] == 't') {
                 $style = "info";
             } else {
                 if ($member_rights[2] == 't') {
                     $style = "warning";
                 } else {
                     $style = "default";
                 }
             }
         }
     }
     $type_handle = "member:markdown_safe:{$member_username}:{$style}:none";
     $section_content = sprintf(self::MEMBER_MARKDOWN_TEXT, $member_display_name, $fse_info['user_name'], $role_description, h5($member_desc), h5($fse_info['self_desc']), $fse_info['avatar_url']);
     $section_manager = new DocSectionManager();
     $res = $section_manager->addNewSectionVersion($project_id, $curr_fse_id, $domain_handle, $section_id, $type_handle, '', $section_content, '[]');
     if ($res != DocSectionManager::EC_OK) {
         set_page_action_status($page_id, t('Add/Edit Member Roles'), 'error', t('Failed to add/edit member roles: %s', $section_manager->getErrorMessage($res)));
         header("Location: {$page_path}");
         return;
     }
     set_page_action_status($page_id, t('Add/Edit Member Roles'), 'success', t('Succeed to edit the member roles.'));
     header("Location: {$page_path}");
 }
开发者ID:rratcliffe,项目名称:fsen,代码行数:89,代码来源:projects.php


示例10: h5

								</div>
<?php 
        if (count($latest_chapter) > 0) {
            $author_info = FSEInfo::getNameInfo($latest_chapter['fse_id']);
            ?>
								<div class="col-md-6 wrap-on-xs">
									<span class="badge"><?php 
            echo $latest_chapter['nr_sections'] - 1;
            ?>
</span>
									<h4 class="list-group-item-heading">
										<a href="<?php 
            echo "{$page_path}/" . $vlm['volume_handle'] . '/' . $prt['part_handle'] . '/' . $latest_chapter['chapter_handle'];
            ?>
"><?php 
            echo h5($latest_chapter['chapter_name']);
            ?>
</a>
									</h4>
									<p class="list-group-item-text">
										<?php 
            echo FSEInfo::getPersonalHomeLink($author_info, true);
            ?>
									</p>
								</div>
<?php 
        }
        ?>
						</li>
<?php 
    }
开发者ID:rratcliffe,项目名称:fsen,代码行数:31,代码来源:project_comm_homepage.php


示例11: get_url_from_file_id

		href="<?php 
echo ProjectInfo::assemblePath($project_id, 'download');
?>
" class="tab-item"><span
		class="glyphicon glyphicon-download"></span></a>
	<a <?php 
echo $domain_handle == 'home' ? 'class="active"' : '';
?>
		href="<?php 
echo ProjectInfo::assemblePath($project_id, 'home');
?>
" class="tab-item"><span
		class="glyphicon glyphicon-home"></span></a>

<?php 
if ($domain_handle != 'home') {
    ?>
		<img src="<?php 
    echo get_url_from_file_id($project_info['icon_file_id'], '/files/images/icon-fsen-144.png');
    ?>
"/ alt="Logo Icon" />
		<h1><?php 
    echo h5($project_info['name']);
    ?>
</h1>
<?php 
}
?>
</nav>

开发者ID:rratcliffe,项目名称:fsen,代码行数:29,代码来源:project_navbar.php


示例12: array

$db = Loader::db();
$projects = $db->getAll("SELECT project_id, fse_id, name FROM fsen_projects WHERE doc_lang=? AND project_id NOT LIKE 'sys-__' ORDER BY create_time DESC LIMIT 10", array($doc_lang));
if (count($projects) > 0) {
    ?>
	<ul class="list-group">
<?php 
    foreach ($projects as $p) {
        $link = "/{$doc_lang}/project/" . $p['project_id'];
        $owner_info = FSEInfo::getNameInfo($p['fse_id']);
        ?>
		<li class="list-group-item">
			<h4 class="list-group-item-heading"><a href="<?php 
        echo $link;
        ?>
"><?php 
        echo h5($p['name']);
        ?>
</a></h4>
			<h5 class="list-group-item-heading"><?php 
        echo FSEInfo::getPersonalHomeLink($owner_info, true);
        ?>
</h5>
		</li>
<?php 
    }
    ?>
	</ul>
<?php 
}
?>
						</h1>
开发者ID:rratcliffe,项目名称:fsen,代码行数:31,代码来源:localized_projects.php


示例13: addNewSectionVersion

 public function addNewSectionVersion($project_id, $author_id, $domain_handle, $section_id, $type_handle, $section_subject, $section_content, $attached_files)
 {
     if (!in_array($domain_handle, $this->mDomainList)) {
         return self::EC_BAD_DOMAIN;
     }
     $db = Loader::db();
     $doc_lang = substr($project_id, -2);
     $section_row = $db->getRow("SELECT page_id, area_handle, block_id, max_ver_code\n\tFROM fsen_document_sections_{$doc_lang} WHERE id=?", array($section_id));
     if (count($section_row) == 0) {
         return self::EC_NO_SUCH_ENTRY;
     }
     $page = Page::getByID($section_row['page_id']);
     $area = Area::get($page, $section_row['area_handle']);
     if (!is_object($area)) {
         return self::EC_BAD_PAGEAREA;
     }
     $block = Block::getByID($section_row['block_id'], $page, $section_row['area_handle']);
     if (!$block instanceof Block) {
         return self::EC_NO_SUCH_OBJ;
     }
     $content_file_name = $section_id;
     $new_ver_code = $section_row['max_ver_code'] + 1;
     $full_content_path_name = $this->getSectionContentPath($content_file_name, $new_ver_code, '');
     $fp = fopen($full_content_path_name . 'org', "w");
     if ($fp === FALSE) {
         return self::EC_FILE;
     }
     fwrite($fp, "{$author_id}\n");
     fwrite($fp, "{$type_handle}\n");
     fwrite($fp, "{$attached_files}\n");
     fwrite($fp, h5($section_subject) . "\n");
     fwrite($fp, h5($section_content));
     fclose($fp);
     $section_content_html = $this->org2html($section_subject, $section_content, $type_handle);
     $fp = fopen($full_content_path_name . 'html', "w");
     if ($fp === FALSE) {
         return self::EC_FILE;
     }
     fwrite($fp, $section_content_html);
     fclose($fp);
     $query = "UPDATE fsen_document_sections_{$doc_lang}\n\tSET max_ver_code=max_ver_code+1, curr_ver_code=max_ver_code WHERE id=?";
     $res = $db->Execute($query, array($section_id));
     if ($db->Affected_Rows() == 0) {
         return self::EC_DATABASE;
     }
     $block->update(array("domainHandle" => $domain_handle, "sectionID" => $content_file_name, "currentVerCode" => $new_ver_code));
     self::updateCachedSectionInfo($domain_handle, $section_id, 'max_ver_code', $new_ver_code);
     /* purge the full page cache */
     $page_cache = PageCache::getLibrary();
     $page_cache->purge($page);
     return self::EC_OK;
 }
开发者ID:rratcliffe,项目名称:fsen,代码行数:52,代码来源:DocSectionManager.php


示例14: h5

">
<div class="panel-heading">
	<div class="media">
		<a class="media-left" href="<?php 
echo FSEInfo::getPersonalHomeLink($author_name_info);
?>
"><img class="middle-avatar" src="<?php 
echo $author_name_info['avatar_url'];
?>
" alt="Avatar"></a>
		<div class="media-body">
			<div class="post-heading">
				<h4>
					<?php 
if (strlen($content_subject)) {
    echo h5($content_subject);
} else {
    echo t('(No title)');
}
?>
 
				</h4>
				<p>
					<small><span class="glyphicon glyphicon-pen"></span>
					<?php 
echo FSEInfo::getPersonalHomeLink($author_name_info, true, $link_style);
?>
					<span class="glyphicon glyphicon-clock"></span>
					<?php 
echo $edit_time;
?>
开发者ID:rratcliffe,项目名称:fsen,代码行数:31,代码来源:forum_post.php


示例15: unset

            continue;
        }
        unset($replied_name_info);
        if (preg_match("/^[0-9a-f]{32}\$/", $comment['replied_author_id'])) {
            $replied_name_info = FSEInfo::getNameInfo($comment['replied_author_id']);
            if ($replied_name_info == false) {
                unset($replied_name_info);
            }
        }
        if ($comment['action'] == DocSectionManager::COMMENT_ACTION_PRAISE) {
            $body = '<span class="glyphicon glyphicon-thumbs-up" style="color:#eb7350;"></span>';
        } else {
            if ($comment['action'] == DocSectionManager::COMMENT_ACTION_FAVORITE) {
                $body = '<span class="glyphicon glyphicon-heart" style="color:#eb7350;"></span>';
            } else {
                $body = h5($comment['body']);
            }
        }
        ?>
				<li id="liComment<?php 
        echo $comment['id'];
        ?>
" class="list-group-item"
						data-value="<?php 
        echo $comment['id'];
        ?>
">
					<div class="media">
						<span class="badge"><?php 
        echo $author_name_info['heat_level'];
        ?>
开发者ID:rratcliffe,项目名称:fsen,代码行数:31,代码来源:section_action_comments.php


示例16: echo

        ?>
">
							<img class="small-avatar" src="<?php 
        echo $author_name_info['avatar_url'];
        ?>
" alt="avatar">
						</a>
						<section class="media-body">
							<h6 class="media-heading">
								<?php 
        echo FSEInfo::getPersonalHomeLink($author_name_info, true);
        ?>
							</h6>
							<p><small>
								<?php 
        echo (isset($replied_name_info) ? t('Reply to ') . FSEInfo::getPersonalHomeLink($replied_name_info, true) . ': ' : '') . h5($comment['body']);
        ?>
							</small></p>
						</section><!-- media-body -->
						<footer class="comment-block">
							<div class="block-left">
								<p>
									<span class="glyphicon glyphicon-clock"></span> <?php 
        echo $comment['create_time'];
        ?>
								</p>
							</div>
							<div class="block-right">
								<ul>
									<li><a class="reply-comment" href="#"
											data-name="<?php 
开发者ID:rratcliffe,项目名称:fsen,代码行数:31,代码来源:section_comments.php


示例17: t

        $ret_info->detail .= '
			<div class="media" style="margin-top:5px;">
				<a class="media-left" href="' . FSEInfo::getPersonalHomeLink($author_info) . '">
					<img class="small-avatar" src="' . $author_info['avatar_url'] . '"
							alt="' . $author_info['nick_name'] . '">
				</a>
				<div class="media-body">
					<p style="line-height: 1; margin-top:0; margin-bottom:0;">
						<small><strong class="text-info">' . $author_info['nick_name'] . '</strong></small>
					</p>
					<p style="line-height: 1; margin-top:0; margin-bottom:0;">
						<small>';
        if ($replied_name_info != false) {
            $ret_info->detail .= t('Reply to ') . '<strong class="text-info">' . $replied_name_info['nick_name'] . ': </strong>';
        }
        $ret_info->detail .= h5($comment['body']) . '</small>
					</p>
				</div>
			</div>';
    }
    $ret_info->detail .= '
		</div>
	</div>
</div>
</div>';
    $nr++;
}
echo $json->encode($ret_info);
exit(0);
?>
开发者ID:rratcliffe,项目名称:fsen,代码行数:30,代码来源:fetch_latest_commented_sectins.php


示例18: h5

            $link .= '#section-' . $fvr['section_id'];
            if (strlen($plain_content['title']) == 0) {
                $page = Page::getByID($info['page_id']);
                $plain_content['title'] = $page->getCollectionName();
            }
            ?>
<li class="list-group-item">
	<span class="badge"><?php 
            echo $info['heat_level'];
            ?>
</span>
	<h4 class="list-group-item-heading"><a href="<?php 
            echo $link;
            ?>
"><?php 
            echo h5($plain_content['title']);
            ?>
</a></h4>
	<p><?php 
            echo $plain_content['content'];
            ?>
</p>
</li>
<?php 
        }
        ?>
							</ul>
<?php 
    } else {
        ?>
							<div class="alert alert-info alert-dismissible" role="alert">
开发者ID:rratcliffe,项目名称:fsen,代码行数:31,代码来源:personal_homepage.php


示例19: t

</li>
			<li class="email"><a href="mailto:<?php 
    echo $fse_info['public_email'];
    ?>
"><?php 
    echo $fse_info['public_email'];
    ?>
</a></li>
			<li class="url"><a href="<?php 
    echo $fse_info['public_url'];
    ?>
"><?php 
    echo $fse_info['public_url'];
    ?>
</a></li>
			<li class="clock">
				<?php 
    echo t('Joined on %s', $fse_info['joined_date']);
    ?>
			</li>
		</ul>
		<h4>
			<?php 
    echo h5($fse_info['self_desc']);
    ?>
		</h4>
	</section>
</section>

<?php 
}
开发者ID:rratcliffe,项目名称:fsen,代码行数:31,代码来源:view.php


示例20: t

"
					required="true" pattern=".{2,32}" placeholder="<?php 
    echo t('2~32 characters');
    ?>
" />
		</div>

		<div class="form-group">
			<label for="blogTags" class="control-label">
				<?php 
    echo t('Tags');
    ?>
			</label>
			<input class="form-control" type="text" name="blogTags" maxlength="255"
					value="<?php 
    echo h5($tags);
    ?>
"
					required="false" placeholder="<?php 
    echo t('Space delimited tags');
    ?>
" />
		</div>

		<div class="checkbox">
			<label for="authorSuggested">
				<input type="checkbox" name="authorSuggested"
						<?php 
    if ($bi['info']['required']) {
        echo 'checked="true"';
    }
开发者ID:rratcliffe,项目名称:fsen,代码行数:31,代码来源:edit_blog.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP hCell函数代码示例发布时间:2022-05-15
下一篇:
PHP h2函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap