* static variable initializers only accept scalar values
(in PHP 3.0 they accepted any valid expression). The impact
- should be somewhere in between void and non existant, since
+ should be somewhere in between void and non existent, since
initializing a static variable with anything but a simple
static value makes no sense at all.
opline->result.u.EA.type |= EXT_TYPE_UNUSED;
} else {
while (opline>CG(active_op_array)->opcodes) {
- /* This should be an object instanciation
+ /* This should be an object instantiation
* Find JMP_NO_CTOR, mark the preceding ASSIGN and the
* proceeding INIT_FCALL_BY_NAME as unused
*/
zend_str_tolower(class_name.value.str.val, class_name.value.str.len);
if (zend_hash_find(EG(class_table), class_name.value.str.val, class_name.value.str.len+1, (void **) &ce)==FAILURE) {
- zend_error(E_ERROR, "Cannot instantiate non-existant class: %s", class_name.value.str.val);
+ zend_error(E_ERROR, "Cannot instantiate non-existent class: %s", class_name.value.str.val);
}
object_init_ex(&Ts[opline->result.u.var].tmp_var, ce);
Ts[opline->result.u.var].tmp_var.refcount=1;