diff --git a/language-snippets.ent b/language-snippets.ent
index 3a5aa9019..b9bac3a57 100755
--- a/language-snippets.ent
+++ b/language-snippets.ent
@@ -1,5 +1,5 @@
-
+
@@ -2677,6 +2677,9 @@ um E_WARNING se a chamada a este método falhar
propriedade streamWrapper::$context
será atualizada se um contexto válido for passado para a função invocadora.'>
+bucket agora espera uma instância de StreamBucket; anteriormente, esperava um stdClass.'>
+StreamBucket; anteriormente, retornava um stdClass.'>
+
-
+
array_unshift
@@ -84,13 +84,16 @@
]]>
@@ -121,6 +124,7 @@ array(4) {
[
'McIntosh' => 'vermelho',
@@ -131,6 +135,7 @@ $frutas = [
'Valencia' => 'laranja',
],
];
+
$vegetais = [
'alface' => [
'Iceberg' => 'verde',
@@ -147,49 +152,52 @@ $vegetais = [
];
array_unshift($frutas, $vegetais);
+
var_dump($frutas);
+
+?>
]]>
&example.outputs;
+ [0]=>
array(3) {
- 'alface' =>
+ ["alface"]=>
array(2) {
- 'Iceberg' =>
+ ["Iceberg"]=>
string(5) "verde"
- 'Butterhead' =>
+ ["Butterhead"]=>
string(5) "verde"
}
- 'cenoura' =>
+ ["cenoura"]=>
array(2) {
- 'Deep Purple Hybrid' =>
+ ["Deep Purple Hybrid"]=>
string(4) "roxo"
- 'Imperator' =>
+ ["Imperator"]=>
string(7) "laranja"
}
- 'pepino' =>
+ ["pepino"]=>
array(2) {
- 'Kirby' =>
+ ["Kirby"]=>
string(5) "verde"
- 'Gherkin' =>
+ ["Gherkin"]=>
string(5) "verde"
}
}
- 'maca' =>
+ ["maca"]=>
array(2) {
- 'McIntosh' =>
+ ["McIntosh"]=>
string(8) "vermelho"
- 'Granny Smith' =>
+ ["Granny Smith"]=>
string(5) "verde"
}
- 'laranja' =>
+ ["laranja"]=>
array(2) {
- 'Navel' =>
+ ["Navel"]=>
string(7) "laranja"
- 'Valencia' =>
+ ["Valencia"]=>
string(7) "laranja"
}
}
diff --git a/reference/openssl/setup.xml b/reference/openssl/setup.xml
index 678c68750..b674ee2f4 100644
--- a/reference/openssl/setup.xml
+++ b/reference/openssl/setup.xml
@@ -1,5 +1,5 @@
-
+
&reftitle.setup;
@@ -12,7 +12,8 @@
xlink:href="&url.openssl;">OpenSSL.
O PHP 7.0 requer OpenSSL >= 0.9.8, < 1.2. O PHP 7.1-8.0 requer
OpenSSL >= 1.0.1, < 3.0. O PHP >= 8.1 requer OpenSSL
- >= 1.0.2, < 4.0.
+ >= 1.0.2, < 4.0. PHP >= 8.4 requer OpenSSL
+ >= 1.1.1, < 4.0.
diff --git a/reference/stream/functions/stream-bucket-append.xml b/reference/stream/functions/stream-bucket-append.xml
index 75e1e90f1..2fdeb4ad2 100644
--- a/reference/stream/functions/stream-bucket-append.xml
+++ b/reference/stream/functions/stream-bucket-append.xml
@@ -1,5 +1,5 @@
-
+
@@ -13,13 +13,33 @@
voidstream_bucket_append
resourcebrigade
- objectbucket
+ StreamBucketbucket
&warn.undocumented.func;
+
+ &reftitle.changelog;
+
+
+
+
+ &Version;
+ &Description;
+
+
+
+
+ 8.4.0
+ &stream.bucket.param;
+
+
+
+
+
+
+
@@ -12,7 +12,7 @@
&reftitle.description;
- objectnullstream_bucket_make_writeable
+ StreamBucketnullstream_bucket_make_writeable
resourcebrigade
@@ -40,34 +40,30 @@
&reftitle.returnvalues;
- Retorna um objeto bucket com as propriedades listadas abaixo ou &null;.
-
-
-
- data
- (string)
-
-
-
- data bucket A string atual no bucket.
-
-
-
-
-
- datalen
- (integer)
-
-
-
- datalen bucket O comprimento da string no bucket.
-
-
-
-
+ Retorna um objeto bucket ou &null;.
+
+ &reftitle.changelog;
+
+
+
+
+ &Version;
+ &Description;
+
+
+
+
+ 8.4.0
+ &stream.bucket.return;
+
+
+
+
+
+
&reftitle.seealso;
@@ -78,7 +74,6 @@
-
+
@@ -11,7 +11,7 @@
&reftitle.description;
- objectstream_bucket_new
+ StreamBucketstream_bucket_new
resourcestream
stringbuffer
@@ -20,8 +20,27 @@
-
+
+ &reftitle.changelog;
+
+
+
+
+ &Version;
+ &Description;
+
+
+
+
+ 8.4.0
+ &stream.bucket.return;
+
+
+
+
+
+
+
@@ -13,7 +13,7 @@
voidstream_bucket_prepend
resourcebrigade
- objectbucket
+ StreamBucketbucket
Esta função pode ser chamada para adicionar um bucket ao início da brigada. É
@@ -50,6 +50,26 @@
+
+ &reftitle.changelog;
+
+
+
+
+ &Version;
+ &Description;
+
+
+
+
+ 8.4.0
+ &stream.bucket.param;
+
+
+
+
+
+
&reftitle.examples;
@@ -81,7 +101,6 @@ print file_get_contents('php://filter/read=test/resource=foo');
-