<?phpclass Employee { const AVAILABLE = 0; const OUT_OF_STOCK = 1; public $status;}print Employee::AVAILABLE;?>