<?php class ClassName { protect $protected_property_name; public function __construct($protected_property_name); { $this->protected_property_name = $protected_property_name; } } $class_variable = new ClassName();