<?xml version="1.0" encoding="ISO-8859-1"?>
<slide fontsize="6em">
	<title>Private</title>

	<list marginleft="0em" fontsize="3.5em">
		<bullet>'Strongest' access level</bullet>
		<bullet>Can only be accessed/called from the same class</bullet>
		<bullet>Force use of get()/set() functions to access properties</bullet>
	</list>
	<break lines="1" />

    <example fontsize="1.3em"><![CDATA[<?php

	class Bedroom {
		private $action;

		function __construct() {
			$this->action = 'fun';
		}
	}

	$br = new Bedroom();
	echo $br->action. "\n";

? >]]></example>

    <example fontsize="1.3em"><![CDATA[Fatal error: Cannot access private property bedroom::$action in - on line 12]]></example>
</slide>
