mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fix GH-7939: Cannot unserialize IntlTimeZone objects
As it is now, `IntlTimeZone`, `IntlCalendar` and `IntlDateFormatter` and some other intl class instances can be serialized, but the representation is meaningless, and unserialization yields uninitialized/ unusable objects. To prevent users from noticing this too late, we deny serialization of such objects in the first place. Closes GH-7945.
This commit is contained in:
parent
06de112d32
commit
f06ac9a486
28 changed files with 54 additions and 13 deletions
1
NEWS
1
NEWS
|
@ -10,6 +10,7 @@ PHP NEWS
|
||||||
|
|
||||||
- Intl:
|
- Intl:
|
||||||
. Update all grandfathered language tags with preferred values
|
. Update all grandfathered language tags with preferred values
|
||||||
|
. Fixed GH-7939 (Cannot unserialize IntlTimeZone objects). (cmb)
|
||||||
|
|
||||||
- OCI8:
|
- OCI8:
|
||||||
. Added oci8.prefetch_lob_size directive to tune LOB query performance
|
. Added oci8.prefetch_lob_size directive to tune LOB query performance
|
||||||
|
|
|
@ -126,6 +126,14 @@ PHP 8.2 UPGRADE NOTES
|
||||||
9. Other Changes to Extensions
|
9. Other Changes to Extensions
|
||||||
========================================
|
========================================
|
||||||
|
|
||||||
|
- Intl:
|
||||||
|
. IntlBreakIterator, IntlRuleBasedBreakIterator, IntlCodePointBreakIterator,
|
||||||
|
IntlPartsIterator, IntlCalendar, IntlCalendar, Collator, IntlIterator,
|
||||||
|
UConverter, IntlDateFormatter, IntlDatePatternGenerator, MessageFormatter,
|
||||||
|
ResourceBundle, Spoofchecker, IntlTimeZone and Transliterator instances are
|
||||||
|
no longer serializable. Previously, they could be serialized, but
|
||||||
|
unserialization yielded unusable objects or failed.
|
||||||
|
|
||||||
- OCI8:
|
- OCI8:
|
||||||
. The minimum Oracle Client library version required is now 11.2.
|
. The minimum Oracle Client library version required is now 11.2.
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
/** @generate-class-entries */
|
/** @generate-class-entries */
|
||||||
|
|
||||||
|
/** @not-serializable */
|
||||||
class IntlBreakIterator implements IteratorAggregate
|
class IntlBreakIterator implements IteratorAggregate
|
||||||
{
|
{
|
||||||
/** @tentative-return-type */
|
/** @tentative-return-type */
|
||||||
|
@ -69,6 +70,7 @@ class IntlBreakIterator implements IteratorAggregate
|
||||||
public function getIterator(): Iterator {}
|
public function getIterator(): Iterator {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @not-serializable */
|
||||||
class IntlRuleBasedBreakIterator extends IntlBreakIterator
|
class IntlRuleBasedBreakIterator extends IntlBreakIterator
|
||||||
{
|
{
|
||||||
public function __construct(string $rules, bool $compiled = false) {}
|
public function __construct(string $rules, bool $compiled = false) {}
|
||||||
|
@ -86,6 +88,7 @@ class IntlRuleBasedBreakIterator extends IntlBreakIterator
|
||||||
public function getRuleStatusVec(): array|false {}
|
public function getRuleStatusVec(): array|false {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @not-serializable */
|
||||||
class IntlCodePointBreakIterator extends IntlBreakIterator
|
class IntlCodePointBreakIterator extends IntlBreakIterator
|
||||||
{
|
{
|
||||||
/** @tentative-return-type */
|
/** @tentative-return-type */
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* This is a generated file, edit the .stub.php file instead.
|
/* This is a generated file, edit the .stub.php file instead.
|
||||||
* Stub hash: 1979da7ee2fa55b27f1c91bb4e0ddc37e8505b08 */
|
* Stub hash: 724e0c36ee113b67906cc9a8cea23781f0a961bf */
|
||||||
|
|
||||||
ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_OBJ_INFO_EX(arginfo_class_IntlBreakIterator_createCharacterInstance, 0, 0, IntlBreakIterator, 1)
|
ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_OBJ_INFO_EX(arginfo_class_IntlBreakIterator_createCharacterInstance, 0, 0, IntlBreakIterator, 1)
|
||||||
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, locale, IS_STRING, 1, "null")
|
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, locale, IS_STRING, 1, "null")
|
||||||
|
@ -161,6 +161,7 @@ static zend_class_entry *register_class_IntlBreakIterator(zend_class_entry *clas
|
||||||
|
|
||||||
INIT_CLASS_ENTRY(ce, "IntlBreakIterator", class_IntlBreakIterator_methods);
|
INIT_CLASS_ENTRY(ce, "IntlBreakIterator", class_IntlBreakIterator_methods);
|
||||||
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
||||||
|
class_entry->ce_flags |= ZEND_ACC_NOT_SERIALIZABLE;
|
||||||
zend_class_implements(class_entry, 1, class_entry_IteratorAggregate);
|
zend_class_implements(class_entry, 1, class_entry_IteratorAggregate);
|
||||||
|
|
||||||
return class_entry;
|
return class_entry;
|
||||||
|
@ -172,6 +173,7 @@ static zend_class_entry *register_class_IntlRuleBasedBreakIterator(zend_class_en
|
||||||
|
|
||||||
INIT_CLASS_ENTRY(ce, "IntlRuleBasedBreakIterator", class_IntlRuleBasedBreakIterator_methods);
|
INIT_CLASS_ENTRY(ce, "IntlRuleBasedBreakIterator", class_IntlRuleBasedBreakIterator_methods);
|
||||||
class_entry = zend_register_internal_class_ex(&ce, class_entry_IntlBreakIterator);
|
class_entry = zend_register_internal_class_ex(&ce, class_entry_IntlBreakIterator);
|
||||||
|
class_entry->ce_flags |= ZEND_ACC_NOT_SERIALIZABLE;
|
||||||
|
|
||||||
return class_entry;
|
return class_entry;
|
||||||
}
|
}
|
||||||
|
@ -182,6 +184,7 @@ static zend_class_entry *register_class_IntlCodePointBreakIterator(zend_class_en
|
||||||
|
|
||||||
INIT_CLASS_ENTRY(ce, "IntlCodePointBreakIterator", class_IntlCodePointBreakIterator_methods);
|
INIT_CLASS_ENTRY(ce, "IntlCodePointBreakIterator", class_IntlCodePointBreakIterator_methods);
|
||||||
class_entry = zend_register_internal_class_ex(&ce, class_entry_IntlBreakIterator);
|
class_entry = zend_register_internal_class_ex(&ce, class_entry_IntlBreakIterator);
|
||||||
|
class_entry->ce_flags |= ZEND_ACC_NOT_SERIALIZABLE;
|
||||||
|
|
||||||
return class_entry;
|
return class_entry;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
/** @generate-class-entries */
|
/** @generate-class-entries */
|
||||||
|
|
||||||
|
/** @not-serializable */
|
||||||
class IntlPartsIterator extends IntlIterator
|
class IntlPartsIterator extends IntlIterator
|
||||||
{
|
{
|
||||||
/** @tentative-return-type */
|
/** @tentative-return-type */
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* This is a generated file, edit the .stub.php file instead.
|
/* This is a generated file, edit the .stub.php file instead.
|
||||||
* Stub hash: 267199a0a3532b5acf1d700f14329cdb2f2db0e1 */
|
* Stub hash: f72f108e37541ac042bb25249ef226211c344189 */
|
||||||
|
|
||||||
ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_OBJ_INFO_EX(arginfo_class_IntlPartsIterator_getBreakIterator, 0, 0, IntlBreakIterator, 0)
|
ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_OBJ_INFO_EX(arginfo_class_IntlPartsIterator_getBreakIterator, 0, 0, IntlBreakIterator, 0)
|
||||||
ZEND_END_ARG_INFO()
|
ZEND_END_ARG_INFO()
|
||||||
|
@ -24,6 +24,7 @@ static zend_class_entry *register_class_IntlPartsIterator(zend_class_entry *clas
|
||||||
|
|
||||||
INIT_CLASS_ENTRY(ce, "IntlPartsIterator", class_IntlPartsIterator_methods);
|
INIT_CLASS_ENTRY(ce, "IntlPartsIterator", class_IntlPartsIterator_methods);
|
||||||
class_entry = zend_register_internal_class_ex(&ce, class_entry_IntlIterator);
|
class_entry = zend_register_internal_class_ex(&ce, class_entry_IntlIterator);
|
||||||
|
class_entry->ce_flags |= ZEND_ACC_NOT_SERIALIZABLE;
|
||||||
|
|
||||||
return class_entry;
|
return class_entry;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
/** @generate-class-entries */
|
/** @generate-class-entries */
|
||||||
|
|
||||||
|
/** @not-serializable */
|
||||||
class IntlCalendar
|
class IntlCalendar
|
||||||
{
|
{
|
||||||
private function __construct() {}
|
private function __construct() {}
|
||||||
|
@ -281,6 +282,7 @@ class IntlCalendar
|
||||||
public function toDateTime(): DateTime|false {}
|
public function toDateTime(): DateTime|false {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @not-serializable */
|
||||||
class IntlGregorianCalendar extends IntlCalendar
|
class IntlGregorianCalendar extends IntlCalendar
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* This is a generated file, edit the .stub.php file instead.
|
/* This is a generated file, edit the .stub.php file instead.
|
||||||
* Stub hash: 7be0e49d2b898587c4bbefaaf613932ae4786c52 */
|
* Stub hash: 0096dc9e60e2256054d23344e024df1d6527a5fa */
|
||||||
|
|
||||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_IntlCalendar___construct, 0, 0, 0)
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_IntlCalendar___construct, 0, 0, 0)
|
||||||
ZEND_END_ARG_INFO()
|
ZEND_END_ARG_INFO()
|
||||||
|
@ -291,6 +291,7 @@ static zend_class_entry *register_class_IntlCalendar(void)
|
||||||
|
|
||||||
INIT_CLASS_ENTRY(ce, "IntlCalendar", class_IntlCalendar_methods);
|
INIT_CLASS_ENTRY(ce, "IntlCalendar", class_IntlCalendar_methods);
|
||||||
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
||||||
|
class_entry->ce_flags |= ZEND_ACC_NOT_SERIALIZABLE;
|
||||||
|
|
||||||
return class_entry;
|
return class_entry;
|
||||||
}
|
}
|
||||||
|
@ -301,6 +302,7 @@ static zend_class_entry *register_class_IntlGregorianCalendar(zend_class_entry *
|
||||||
|
|
||||||
INIT_CLASS_ENTRY(ce, "IntlGregorianCalendar", class_IntlGregorianCalendar_methods);
|
INIT_CLASS_ENTRY(ce, "IntlGregorianCalendar", class_IntlGregorianCalendar_methods);
|
||||||
class_entry = zend_register_internal_class_ex(&ce, class_entry_IntlCalendar);
|
class_entry = zend_register_internal_class_ex(&ce, class_entry_IntlCalendar);
|
||||||
|
class_entry->ce_flags |= ZEND_ACC_NOT_SERIALIZABLE;
|
||||||
|
|
||||||
return class_entry;
|
return class_entry;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
/** @generate-class-entries */
|
/** @generate-class-entries */
|
||||||
|
|
||||||
|
/** @not-serializable */
|
||||||
class Collator
|
class Collator
|
||||||
{
|
{
|
||||||
public function __construct(string $locale) {}
|
public function __construct(string $locale) {}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* This is a generated file, edit the .stub.php file instead.
|
/* This is a generated file, edit the .stub.php file instead.
|
||||||
* Stub hash: 4baf9586ab91f37facc865cf1b3aa6a87e5d732d */
|
* Stub hash: c2e08f16cdc3d64e82fc277b4a59250d4b19c84e */
|
||||||
|
|
||||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_Collator___construct, 0, 0, 1)
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_Collator___construct, 0, 0, 1)
|
||||||
ZEND_ARG_TYPE_INFO(0, locale, IS_STRING, 0)
|
ZEND_ARG_TYPE_INFO(0, locale, IS_STRING, 0)
|
||||||
|
@ -96,6 +96,7 @@ static zend_class_entry *register_class_Collator(void)
|
||||||
|
|
||||||
INIT_CLASS_ENTRY(ce, "Collator", class_Collator_methods);
|
INIT_CLASS_ENTRY(ce, "Collator", class_Collator_methods);
|
||||||
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
||||||
|
class_entry->ce_flags |= ZEND_ACC_NOT_SERIALIZABLE;
|
||||||
|
|
||||||
return class_entry;
|
return class_entry;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
/** @generate-class-entries */
|
/** @generate-class-entries */
|
||||||
|
|
||||||
|
/** @not-serializable */
|
||||||
class IntlIterator implements Iterator
|
class IntlIterator implements Iterator
|
||||||
{
|
{
|
||||||
/** @tentative-return-type */
|
/** @tentative-return-type */
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* This is a generated file, edit the .stub.php file instead.
|
/* This is a generated file, edit the .stub.php file instead.
|
||||||
* Stub hash: c4698dbe96a069a63265052e9a105f074e3dda0a */
|
* Stub hash: 976f2d1417928226d6c04ff444c4feda152d91df */
|
||||||
|
|
||||||
ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_TYPE_INFO_EX(arginfo_class_IntlIterator_current, 0, 0, IS_MIXED, 0)
|
ZEND_BEGIN_ARG_WITH_TENTATIVE_RETURN_TYPE_INFO_EX(arginfo_class_IntlIterator_current, 0, 0, IS_MIXED, 0)
|
||||||
ZEND_END_ARG_INFO()
|
ZEND_END_ARG_INFO()
|
||||||
|
@ -37,6 +37,7 @@ static zend_class_entry *register_class_IntlIterator(zend_class_entry *class_ent
|
||||||
|
|
||||||
INIT_CLASS_ENTRY(ce, "IntlIterator", class_IntlIterator_methods);
|
INIT_CLASS_ENTRY(ce, "IntlIterator", class_IntlIterator_methods);
|
||||||
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
||||||
|
class_entry->ce_flags |= ZEND_ACC_NOT_SERIALIZABLE;
|
||||||
zend_class_implements(class_entry, 1, class_entry_Iterator);
|
zend_class_implements(class_entry, 1, class_entry_Iterator);
|
||||||
|
|
||||||
return class_entry;
|
return class_entry;
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
/** @generate-class-entries */
|
/** @generate-class-entries */
|
||||||
|
|
||||||
|
/** @not-serializable */
|
||||||
class UConverter
|
class UConverter
|
||||||
{
|
{
|
||||||
public function __construct(?string $destination_encoding = null, ?string $source_encoding = null) {}
|
public function __construct(?string $destination_encoding = null, ?string $source_encoding = null) {}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* This is a generated file, edit the .stub.php file instead.
|
/* This is a generated file, edit the .stub.php file instead.
|
||||||
* Stub hash: 2a6d8499e1a2d414130e366783a1c084f47a3293 */
|
* Stub hash: 0ab2d741996611bbfcfb07462bc184a02f353585 */
|
||||||
|
|
||||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_UConverter___construct, 0, 0, 0)
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_UConverter___construct, 0, 0, 0)
|
||||||
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, destination_encoding, IS_STRING, 1, "null")
|
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, destination_encoding, IS_STRING, 1, "null")
|
||||||
|
@ -125,6 +125,7 @@ static zend_class_entry *register_class_UConverter(void)
|
||||||
|
|
||||||
INIT_CLASS_ENTRY(ce, "UConverter", class_UConverter_methods);
|
INIT_CLASS_ENTRY(ce, "UConverter", class_UConverter_methods);
|
||||||
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
||||||
|
class_entry->ce_flags |= ZEND_ACC_NOT_SERIALIZABLE;
|
||||||
|
|
||||||
return class_entry;
|
return class_entry;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
/** @generate-class-entries */
|
/** @generate-class-entries */
|
||||||
|
|
||||||
|
/** @not-serializable */
|
||||||
class IntlDateFormatter
|
class IntlDateFormatter
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* This is a generated file, edit the .stub.php file instead.
|
/* This is a generated file, edit the .stub.php file instead.
|
||||||
* Stub hash: 82f90e7b0528b2b3515c086763dba4de0f92dfa7 */
|
* Stub hash: c7c0d08433ab9dbf59777072550895d85294aad4 */
|
||||||
|
|
||||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_IntlDateFormatter___construct, 0, 0, 1)
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_IntlDateFormatter___construct, 0, 0, 1)
|
||||||
ZEND_ARG_TYPE_INFO(0, locale, IS_STRING, 1)
|
ZEND_ARG_TYPE_INFO(0, locale, IS_STRING, 1)
|
||||||
|
@ -141,6 +141,7 @@ static zend_class_entry *register_class_IntlDateFormatter(void)
|
||||||
|
|
||||||
INIT_CLASS_ENTRY(ce, "IntlDateFormatter", class_IntlDateFormatter_methods);
|
INIT_CLASS_ENTRY(ce, "IntlDateFormatter", class_IntlDateFormatter_methods);
|
||||||
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
||||||
|
class_entry->ce_flags |= ZEND_ACC_NOT_SERIALIZABLE;
|
||||||
|
|
||||||
return class_entry;
|
return class_entry;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
/** @generate-class-entries */
|
/** @generate-class-entries */
|
||||||
|
|
||||||
|
/** @not-serializable */
|
||||||
class IntlDatePatternGenerator
|
class IntlDatePatternGenerator
|
||||||
{
|
{
|
||||||
public function __construct(?string $locale = null) {}
|
public function __construct(?string $locale = null) {}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* This is a generated file, edit the .stub.php file instead.
|
/* This is a generated file, edit the .stub.php file instead.
|
||||||
* Stub hash: 74026c524046787844da9f8132029735243176c6 */
|
* Stub hash: 4456b13f7ed59847bbf129cd45b0d1f63ce70108 */
|
||||||
|
|
||||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_IntlDatePatternGenerator___construct, 0, 0, 0)
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_IntlDatePatternGenerator___construct, 0, 0, 0)
|
||||||
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, locale, IS_STRING, 1, "null")
|
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, locale, IS_STRING, 1, "null")
|
||||||
|
@ -32,6 +32,7 @@ static zend_class_entry *register_class_IntlDatePatternGenerator(void)
|
||||||
|
|
||||||
INIT_CLASS_ENTRY(ce, "IntlDatePatternGenerator", class_IntlDatePatternGenerator_methods);
|
INIT_CLASS_ENTRY(ce, "IntlDatePatternGenerator", class_IntlDatePatternGenerator_methods);
|
||||||
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
||||||
|
class_entry->ce_flags |= ZEND_ACC_NOT_SERIALIZABLE;
|
||||||
|
|
||||||
return class_entry;
|
return class_entry;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
/** @generate-class-entries */
|
/** @generate-class-entries */
|
||||||
|
|
||||||
|
/** @not-serializable */
|
||||||
class MessageFormatter
|
class MessageFormatter
|
||||||
{
|
{
|
||||||
public function __construct(string $locale, string $pattern) {}
|
public function __construct(string $locale, string $pattern) {}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* This is a generated file, edit the .stub.php file instead.
|
/* This is a generated file, edit the .stub.php file instead.
|
||||||
* Stub hash: 44bc7b87c0b6c674bf94764b3f036006e3933713 */
|
* Stub hash: d595f5c582996ebb96ab39df8cb56c4cf6c8dfcf */
|
||||||
|
|
||||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_MessageFormatter___construct, 0, 0, 2)
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_MessageFormatter___construct, 0, 0, 2)
|
||||||
ZEND_ARG_TYPE_INFO(0, locale, IS_STRING, 0)
|
ZEND_ARG_TYPE_INFO(0, locale, IS_STRING, 0)
|
||||||
|
@ -81,6 +81,7 @@ static zend_class_entry *register_class_MessageFormatter(void)
|
||||||
|
|
||||||
INIT_CLASS_ENTRY(ce, "MessageFormatter", class_MessageFormatter_methods);
|
INIT_CLASS_ENTRY(ce, "MessageFormatter", class_MessageFormatter_methods);
|
||||||
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
||||||
|
class_entry->ce_flags |= ZEND_ACC_NOT_SERIALIZABLE;
|
||||||
|
|
||||||
return class_entry;
|
return class_entry;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
/** @generate-class-entries */
|
/** @generate-class-entries */
|
||||||
|
|
||||||
|
/** @not-serializable */
|
||||||
class ResourceBundle implements IteratorAggregate, Countable
|
class ResourceBundle implements IteratorAggregate, Countable
|
||||||
{
|
{
|
||||||
public function __construct(?string $locale, ?string $bundle, bool $fallback = true) {}
|
public function __construct(?string $locale, ?string $bundle, bool $fallback = true) {}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* This is a generated file, edit the .stub.php file instead.
|
/* This is a generated file, edit the .stub.php file instead.
|
||||||
* Stub hash: d27fa5a4dc092b94e48fc876070f440c247fa6c2 */
|
* Stub hash: 7816536650d8513ef6998233096b0bf6a29d7af4 */
|
||||||
|
|
||||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_ResourceBundle___construct, 0, 0, 2)
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_ResourceBundle___construct, 0, 0, 2)
|
||||||
ZEND_ARG_TYPE_INFO(0, locale, IS_STRING, 1)
|
ZEND_ARG_TYPE_INFO(0, locale, IS_STRING, 1)
|
||||||
|
@ -62,6 +62,7 @@ static zend_class_entry *register_class_ResourceBundle(zend_class_entry *class_e
|
||||||
|
|
||||||
INIT_CLASS_ENTRY(ce, "ResourceBundle", class_ResourceBundle_methods);
|
INIT_CLASS_ENTRY(ce, "ResourceBundle", class_ResourceBundle_methods);
|
||||||
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
||||||
|
class_entry->ce_flags |= ZEND_ACC_NOT_SERIALIZABLE;
|
||||||
zend_class_implements(class_entry, 2, class_entry_IteratorAggregate, class_entry_Countable);
|
zend_class_implements(class_entry, 2, class_entry_IteratorAggregate, class_entry_Countable);
|
||||||
|
|
||||||
return class_entry;
|
return class_entry;
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
/** @generate-class-entries */
|
/** @generate-class-entries */
|
||||||
|
|
||||||
|
/** @not-serializable */
|
||||||
class Spoofchecker
|
class Spoofchecker
|
||||||
{
|
{
|
||||||
public function __construct() {}
|
public function __construct() {}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* This is a generated file, edit the .stub.php file instead.
|
/* This is a generated file, edit the .stub.php file instead.
|
||||||
* Stub hash: d915fb3698e0bde4af2a1175fff882cae1f55668 */
|
* Stub hash: f1c86958a39aa8f89ee468a0753f6a5b232c3e1f */
|
||||||
|
|
||||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_Spoofchecker___construct, 0, 0, 0)
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_Spoofchecker___construct, 0, 0, 0)
|
||||||
ZEND_END_ARG_INFO()
|
ZEND_END_ARG_INFO()
|
||||||
|
@ -58,6 +58,7 @@ static zend_class_entry *register_class_Spoofchecker(void)
|
||||||
|
|
||||||
INIT_CLASS_ENTRY(ce, "Spoofchecker", class_Spoofchecker_methods);
|
INIT_CLASS_ENTRY(ce, "Spoofchecker", class_Spoofchecker_methods);
|
||||||
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
||||||
|
class_entry->ce_flags |= ZEND_ACC_NOT_SERIALIZABLE;
|
||||||
|
|
||||||
return class_entry;
|
return class_entry;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
/** @generate-class-entries */
|
/** @generate-class-entries */
|
||||||
|
|
||||||
|
/** @not-serializable */
|
||||||
class IntlTimeZone
|
class IntlTimeZone
|
||||||
{
|
{
|
||||||
private function __construct() {}
|
private function __construct() {}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* This is a generated file, edit the .stub.php file instead.
|
/* This is a generated file, edit the .stub.php file instead.
|
||||||
* Stub hash: 3f945431687a2f45b0ec8c3a6435ef68008c75ad */
|
* Stub hash: 2ec7a46ca205dfeb9ef0dc3c8e8d78bce1cf43be */
|
||||||
|
|
||||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_IntlTimeZone___construct, 0, 0, 0)
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_IntlTimeZone___construct, 0, 0, 0)
|
||||||
ZEND_END_ARG_INFO()
|
ZEND_END_ARG_INFO()
|
||||||
|
@ -169,6 +169,7 @@ static zend_class_entry *register_class_IntlTimeZone(void)
|
||||||
|
|
||||||
INIT_CLASS_ENTRY(ce, "IntlTimeZone", class_IntlTimeZone_methods);
|
INIT_CLASS_ENTRY(ce, "IntlTimeZone", class_IntlTimeZone_methods);
|
||||||
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
||||||
|
class_entry->ce_flags |= ZEND_ACC_NOT_SERIALIZABLE;
|
||||||
|
|
||||||
return class_entry;
|
return class_entry;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
/** @generate-class-entries */
|
/** @generate-class-entries */
|
||||||
|
|
||||||
|
/** @not-serializable */
|
||||||
class Transliterator
|
class Transliterator
|
||||||
{
|
{
|
||||||
public string $id;
|
public string $id;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* This is a generated file, edit the .stub.php file instead.
|
/* This is a generated file, edit the .stub.php file instead.
|
||||||
* Stub hash: 8a6aaab7dd89a014726bd1fdf1f40f7b6fa98ea5 */
|
* Stub hash: 8ef1f285c6138fbc58c1e4cef04d4ac09dfc3fef */
|
||||||
|
|
||||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_Transliterator___construct, 0, 0, 0)
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_Transliterator___construct, 0, 0, 0)
|
||||||
ZEND_END_ARG_INFO()
|
ZEND_END_ARG_INFO()
|
||||||
|
@ -61,6 +61,7 @@ static zend_class_entry *register_class_Transliterator(void)
|
||||||
|
|
||||||
INIT_CLASS_ENTRY(ce, "Transliterator", class_Transliterator_methods);
|
INIT_CLASS_ENTRY(ce, "Transliterator", class_Transliterator_methods);
|
||||||
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
class_entry = zend_register_internal_class_ex(&ce, NULL);
|
||||||
|
class_entry->ce_flags |= ZEND_ACC_NOT_SERIALIZABLE;
|
||||||
|
|
||||||
zval property_id_default_value;
|
zval property_id_default_value;
|
||||||
ZVAL_UNDEF(&property_id_default_value);
|
ZVAL_UNDEF(&property_id_default_value);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue