<?php

$op = '';

switch($op) {
	case '':
		print('Empty');
		break;
	case '*':
		print('Star');
		break;
	case '+':
		print('Plus');
		break;
}

