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


PHP Docs::add方法代码示例

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


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

示例1:

Docs::add('user_authed_name', $text);
/*
	user_authed_email
*/
$text = 'Returns the email address of the currently logged-in user. Not recommended for display usage.';
Docs::add('user_authed_email', $text);
/*
	user_authed_role
*/
$text = 'Returns the role of the currently logged-in user. Can be <b>administrator</b>, <b>editor</b>, or <b>user</b>.';
Docs::add('user_authed_role', $text);
/*
	user_authed_real_name
*/
$text = 'Returns the real name of the currently logged-in user, as set in the admin panel.';
Docs::add('user_authed_role', $text);
?>
<hgroup role="banner">
	<h1>Documentation</h1>
</hgroup>

<section id="content">
	<?php 
require PATH . 'includes/sidebar' . EXT;
?>

	<div class="primary">

		<h2>Theme functions</h2>

		<p>At its core, Anchor is HTML and CSS, with sprinkles of all-important PHP, to dynamically retrieve and serve all the data. Don&rsquo;t worry, though, it&rsquo;s pretty painless. Here is a comprehensive list of all the functions available to you and your Anchor theme.</p>
开发者ID:rubenvincenten,项目名称:anchor-site,代码行数:31,代码来源:functions.php


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