/** * The first element contains multibyte alphabets and digits. * But , Zend_Filter_Alnum is expected to return only singlebyte alphabets and digits. * * The second contains multibyte or singebyte space. * The third contains various multibyte or singebyte characters. */ $valuesExpected = array( 'aABb3456' => 'aB35', 'z7 Y8 x9' => 'z8x', ',s1.2r3#:q,' => 's12rq', ); /** * If whitespace allowed * */ $valuesExpected = array( 'a B 45' => 'a B 5', 'z3 x' => 'z3x' );