Possible Duplicate:
PHP and Enums
I want to create a function with several parameters that one of them has several constant variable. for example:
<?php
function print($str, $num){...}
.
.
.
print("omid",one);
print("omid",two);
?>
in this example $num consist of constant variable:"one,two, three" Now, how to implement it? is there Enum in php?
thanks your time