RETURN_FALSE;
}
- /* check for the old child and wether the new child is already a child */
+ /* check for the old child and whether the new child is already a child */
while (children) {
if (children == oldchild) {
foundoldchild = 1;
/* }}} */
/* {{{ proto public bool ReflectionClass::hasMethod(string name)
- Returns wether a method exists or not */
+ Returns whether a method exists or not */
ZEND_METHOD(reflection_class, hasMethod)
{
reflection_object *intern;
/* }}} */
/* {{{ proto public bool ReflectionClass::hasProperty(string name)
- Returns wether a property exists or not */
+ Returns whether a property exists or not */
ZEND_METHOD(reflection_class, hasProperty)
{
reflection_object *intern;
/* }}} */
/* {{{ proto public bool ReflectionClass::hasConstant(string name)
- Returns wether a constant exists or not */
+ Returns whether a constant exists or not */
ZEND_METHOD(reflection_class, hasConstant)
{
reflection_object *intern;
/* }}} */
/* {{{ proto boolean XMLReader::getParserProperty(int property)
-Indicates wether given property (one of the parser option constants) is set or not on parser */
+Indicates whether given property (one of the parser option constants) is set or not on parser */
PHP_METHOD(xmlreader, getParserProperty)
{
zval *id;