I don't know if you did it on purpose or not, but the single-quotes you're using in values for "$feature_names" and "$feature_values" are so-called "smart quotes". That is, PHP won't be able to parse the values correctly. This might've happened if you wrote that code out in a typical word processor (like MS Word) instead of a text editor.
So, use this instead:
$feature_names = array('users');$feature_values = array('3');