<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/language.oop5.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'oop5.intro.php',
    1 => 'Introduction',
    2 => 'Introduction',
  ),
  'up' => 
  array (
    0 => 'language.oop5.php',
    1 => 'Classes and Objects',
  ),
  'prev' => 
  array (
    0 => 'language.oop5.php',
    1 => 'Classes and Objects',
  ),
  'next' => 
  array (
    0 => 'language.oop5.basic.php',
    1 => 'The Basics',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'language/oop5.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="oop5.intro" class="sect1">
   <h2 class="title">Introduction</h2>
   <p class="para">
    PHP includes a complete object model.
    Some of its features are:
    <a href="language.oop5.visibility.php" class="link">visibility</a>,
    <a href="language.oop5.abstract.php" class="link">abstract</a> and
    <a href="language.oop5.final.php" class="link">final</a> classes and methods,
    additional <a href="language.oop5.magic.php" class="link">magic methods</a>,
    <a href="language.oop5.interfaces.php" class="link">interfaces</a>, and
    <a href="language.oop5.cloning.php" class="link">cloning</a>.
   </p>
   <p class="para">
    PHP treats objects in the same way as references or handles, meaning that
    each variable contains an object reference rather than a copy of the entire
    object. See 
    <a href="language.oop5.references.php" class="link">Objects and References</a>
   </p>
   <div class="tip"><strong class="tip">Tip</strong><p class="simpara">See also the
<a href="userlandnaming.php" class="xref">Userland Naming Guide</a>.</p></div>
  </div><?php manual_footer($setup); ?>