CSS Font families

font-family: 'Arial CE', 'Helvetica CE', Arial, Helvetica, sans-serif;
font-family: Verdana, 'Geneva CE', lucida, sans-serif;
font-family: Tahoma, 'Lucida Grande CE', lucida, sans-serif;
font-family: 'Times New Roman CE', 'Times New CE', 'Times CE', 'Times New Roman', Times, serif;
font-family: Georgia, 'Times New CE', 'Times CE', 'Times New Roman', Times, serif;
font-family: 'Courier New CE', 'Courier CE', 'Courier New', Courier, monospace;
font-family: 'Comic Sans MS', 'Sand CE', fantasy;

PHPDoc

 

PHPDoc Tutorial

 package/ -- Preface to specify a tutorial in a specific package
subpackage/ -- Preface to specify a tutorial in a specific package/subpackage
#section -- Link to a specific section of the documentation package/subpackage/tutorial.ext#section
.subsection -- Link to a specific sub-section of the documentation package/subpackage/tutorial.ext#section.subsection

<cmdsynopsis>
  <command>@tutorial</command>
  <arg choice="opt"><option>subpackage/</option></arg>
  <arg choice="req">tutorialname.ext</arg>
</cmdsynopsis>

Vyberte styl

 


Misc

Misc

Tags
DocBook
 use for MSIE
 <!--[if IE]>
 <![endif]-->

 for MSIE 6 and lower
 <!--[if lte IE 6]>
 <![endif]-->

 except MSIE
 <!--[if !IE]> -->
 <!-- <![endif]-->

All except MSIE lower 7
<!--[if gte IE 7]><!-->
<!--<![endif]-->
<?xml version="1.0" encoding="utf-8"?>
<!-- ... and keep IE7 in quirks mode -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td
{
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
font-family: 'Arial CE', 'Helvetica CE', Arial, Helvetica, sans-serif;
font-family: Verdana, 'Geneva CE', lucida, sans-serif;
font-family: Tahoma, 'Lucida Grande CE', lucida, sans-serif;
font-family: 'Times New Roman CE', 'Times New CE', 'Times CE', 'Times New Roman', Times, serif;
font-family: Georgia, 'Times New CE', 'Times CE', 'Times New Roman', Times, serif;
font-family: 'Courier New CE', 'Courier CE', 'Courier New', Courier, monospace;
font-family: 'Comic Sans MS', 'Sand CE', fantasy;
@access (private protected public)
@final
@global bool $GLOBALS['baz']
@ignore
@link (http://www.example.com class::method() class::$var function() $var)
@method int borp() borp(int $int1, int $int2) multiply two integers //magic
@param mixed $foo_desc optional description of foo
@property mixed $regular regular read/write property //magic
@property-read int $foo the foo prop //magic
@property-write string $bar the bar prop //magic
@return Parser|false phpDocumentor Parser object or error
@see main_class, TEST_CONST //one way link
@static //class
@staticvar //variable in function
@todo finish the functions on this page
@uses subclass::$foo this is compared to TEST_CONST //creates link and backlink
@usedby subclass::$foo this is compared to TEST_CONST //creates backlink
@var string contains class1 information
 * @todo My Simple TODO List
 *     - item 1
 *     - item 2
 *     - item 3
 * @todo My Complex TODO List
 *     <ol>
 *       <li>item 1.0</li>
 *       <li>item 2.0</li>
 *       <li>item 3.0</li>
 *         <ol>
 *           <li>item 3.1</li>
 *           <li>item 3.2</li>
 *         </ol>
 *       <li>item 4.0</li>
 *     </ol>
/**#@+
 * @access private
 * @var string
 */
var $_var1 = 'hello';
var $_var2 = 'my';
var $_var3 = 'name';
var $_var4 = 'is';
var $_var5 = 'Bob';
var $_var6 = 'and';
var $_var7 = 'I';
/**
 * Two words
 */
var $_var8 = 'like strings';
/**#@-*/
var $publicvar = 'Lookee me!';
<programlisting role="tutorial">
     <![CDATA[
<refentry id="{@}id}">
 <refsynopsisdiv>
  <author>
   My Name
   <authorblurb>
    {@}link mailto:myself@myhost.net My Name}
   </authorblurb>
  </author>
 </refsynopsisdiv>
</refentry>
     ]]>
</programlisting>


<programlisting role="php">
   <![CDATA[
<?php
/**
 * Pretend this is a file
 *
 * Page-level DocBlock is here because it is the first DocBlock
 * in the file, and contains a @package tag
 * @package pagepackage
 */
define("almost","Now the Page-level DocBlock is for the page, and the Define has no docblock");?>
   ]]>
</programlisting>


 role="php",  role="tutorial",  role="html"