diff --git a/language-snippets.ent b/language-snippets.ent index a57693f10..58e9317b3 100644 --- a/language-snippets.ent +++ b/language-snippets.ent @@ -1,5 +1,5 @@ - + @@ -806,6 +806,32 @@ linkend="array.sorting">Dizilerde Sıralama'> '> + + + Sıralama geri çağrısı, başlangıçta sağlandıkları sıraya bakılmaksızın, + herhangi bir dizideki herhangi bir değeri herhangi bir sırada işlemelidir. + + Bunun nedeni, her bir dizinin diğer dizilerle karşılaştırılmadan önce ilk olarak sıralanmasıdır. + + Örneğin: + + 1]]; + +// $item1 ve $item2 "string", 1 veya [“value” => 1] seçeneklerinden herhangi biri olabilir +$compareFunc = static function ($item1, $item2) { + $value1 = is_string($item1) ? strlen($item1) : (is_array($item1) ? $item1["value"] : $item1); + $value2 = is_string($item2) ? strlen($item2) : (is_array($item2) ? $item2["value"] : $item2); + return $value1 <=> $value2; +}; +?> +]]> + + +'> + int türünde bir değer kullanıldığında değer baytların sayısıdır. Büyük bayt değerleri için kullanılabilecek birimlerin gösterimleri @@ -1835,6 +1861,17 @@ içerir: ]]>'> + + kaydet + + + Bağlam düğümünün kapsam içi ad alanı öneklerinin DOMXPath nesnesine otomatik olarak kaydedilip kaydedilmeyeceği. + Bu, kapsam dahilindeki her ad alanı için DOMXPath::registerNamespace öğesini manuel olarak çağırmaya gerek kalmaması için kullanılabilir. + Bir ad alanı öneki çakışması olduğunda, yalnızca en yakın soydan gelen ad alanı öneki kaydedilir. + + +'> + DOM_HIERARCHY_REQUEST_ERR @@ -1877,6 +1914,25 @@ içerir: bitsel VEYAsı. '> + + + Düğümleri filtrelemek için bir XPath dizisi. + Bu dizideki her girdi, aşağıdakileri içeren bir ilişkisel dizidir: + + + + XPath ifadesini bir dize olarak içeren gerekli bir query anahtarı. + + + + + Ad alanı öneklerini (anahtarlar) ad alanı URI'lerine (değerler) eşleyen bir dizi içeren isteğe bağlı bir namespaces anahtarı. + + + + + '> + Başarısızlık durumunda bir @@ -3942,7 +3998,7 @@ local: { queryType - int + string The query type for evaluating queries with indexed, encrypted diff --git a/language/oop5/decon.xml b/language/oop5/decon.xml index 20faf5e9a..da88fc79d 100644 --- a/language/oop5/decon.xml +++ b/language/oop5/decon.xml @@ -1,5 +1,5 @@ - + Kurucular ve Yıkıcılar @@ -273,7 +273,7 @@ class Product { } public static function fromJson(string $json): static { - $data = json_decode($json); + $data = json_decode($json, true); return new static($data['id'], $data['name']); } diff --git a/language/oop5/inheritance.xml b/language/oop5/inheritance.xml index f6575f02c..da5d2bb01 100644 --- a/language/oop5/inheritance.xml +++ b/language/oop5/inheritance.xml @@ -1,5 +1,5 @@ - + Nesnelerin Kalıtımı @@ -51,7 +51,7 @@ Okunup yazılabilir bir özellik salt-okunur özellik vb. ile geçersiz kılınamaz. - + ]]> - + - - - Kalıtım Örneği - + + Inheritance Example + printPHP(); // Çıktısı: 'PHP is great' ?> ]]> - - + Dahili Sınıflar ve Dönüş Türü Uyumluluğu diff --git a/language/oop5/serialization.xml b/language/oop5/serialization.xml index 7da965224..e1a36b87a 100644 --- a/language/oop5/serialization.xml +++ b/language/oop5/serialization.xml @@ -1,8 +1,8 @@ - + - Nesne Dizgeleştirme Oturumlardaki nesnelerin dizgeleştirilmesi + Nesne Dizgeleştirme serialize işlevi PHP'de saklanmış bir değerin diff --git a/language/operators/arithmetic.xml b/language/operators/arithmetic.xml index 02c5344cb..2c71537bb 100644 --- a/language/operators/arithmetic.xml +++ b/language/operators/arithmetic.xml @@ -1,7 +1,8 @@ - + Aritmetik İşleçler + Aritmetik Okulda öğrendiğiniz temel aritmetiği hatırlıyor musunuz? Bu işleçler tam da öyle çalışır. diff --git a/language/operators/array.xml b/language/operators/array.xml index 8f65830f4..2b4d173aa 100644 --- a/language/operators/array.xml +++ b/language/operators/array.xml @@ -1,7 +1,8 @@ - + Dizi İşleçleri + Dizi Dizi İşleçleri diff --git a/language/operators/assignment.xml b/language/operators/assignment.xml index b4cace578..a4986c9e0 100644 --- a/language/operators/assignment.xml +++ b/language/operators/assignment.xml @@ -1,7 +1,8 @@ - + Atama İşleçleri + Atama Temel atama işleci "=" imidir. Programlamaya yeni başlayanlar bu işleci"eşittir" diye okurlar. Aslında yapılan işlem bir diff --git a/language/operators/bitwise.xml b/language/operators/bitwise.xml index 4d2fa577c..3a3984966 100644 --- a/language/operators/bitwise.xml +++ b/language/operators/bitwise.xml @@ -1,7 +1,8 @@ - + Bitsel İşleçler + Bitsel Bitsel işleçler, bir tamsayının içindeki belli bitleri 0 ya da 1 yaparlar. @@ -642,7 +643,7 @@ function p($snç, $dgr, $op, $hane, $ilt = '') { - PHP_INT_MAX'ın ötesindeki sayılar üzerinde bitsel + PHP_INT_MAX'ın ötesindeki sayılar üzerinde bitsel işlemler için gmp eklentisindeki işlevler kullanılmalıdır. diff --git a/language/operators/comparison.xml b/language/operators/comparison.xml index 104265298..4289b2098 100644 --- a/language/operators/comparison.xml +++ b/language/operators/comparison.xml @@ -1,7 +1,8 @@ - + Karşılaştırma İşleçleri + Karşılaştırma Karşılaştırma işleçleri isminden de anlaşılacağı üzere iki değerin karşılaştırılmasını sağlar. Çeşitli veri türleri arasındaki diff --git a/language/operators/errorcontrol.xml b/language/operators/errorcontrol.xml index a1d1334f5..9a6fbdac7 100644 --- a/language/operators/errorcontrol.xml +++ b/language/operators/errorcontrol.xml @@ -1,7 +1,8 @@ - + Hata Denetim İşleçleri + Hata Denetim PHP tek bir hata denetim işlecini destekler: kuyruklu a imi (@). PHP'de bir deyimin başına getirildiğinde, diff --git a/language/operators/execution.xml b/language/operators/execution.xml index 2c7c84ef7..3eaa88347 100644 --- a/language/operators/execution.xml +++ b/language/operators/execution.xml @@ -1,7 +1,8 @@ - + Çalıştırma İşleci + Çalıştırma PHP tek bir çalıştırma işlecini destekmektedir: ters tırnak imleri (``). Bunların sıradan tek tırnaklar olmadığına dikkat edilmelidir! Ters tırnak diff --git a/language/operators/increment.xml b/language/operators/increment.xml index d9a4e7f77..ea8e52942 100644 --- a/language/operators/increment.xml +++ b/language/operators/increment.xml @@ -1,7 +1,8 @@ - + Artırım ve Eksiltim İşleçleri + Artırım ve Eksiltim PHP, önceden ve sonradan artırım ve eksiltim işleçlerini destekler. Bunlar değeri bir artıran veya eksilten tek terimli işleçlerdir. diff --git a/language/operators/logical.xml b/language/operators/logical.xml index f5f6ce37f..1f11b0978 100644 --- a/language/operators/logical.xml +++ b/language/operators/logical.xml @@ -1,7 +1,8 @@ - + Mantıksal İşleçler + Mantıksal
Mantıksal İşleçler diff --git a/language/operators/precedence.xml b/language/operators/precedence.xml index c3e6f8615..6849d1d3e 100644 --- a/language/operators/precedence.xml +++ b/language/operators/precedence.xml @@ -1,7 +1,8 @@ - + İşleç Önceliği + İşleç Önceliği İşleç önceliği iki ifadenin birbirine hangi sıkılıkta bağlı olduğunu belirtir. Örneğin, 1 + 5 * 3 ifadesinin sonucu 18 değil, diff --git a/language/operators/string.xml b/language/operators/string.xml index 10d957da3..c842b0473 100644 --- a/language/operators/string.xml +++ b/language/operators/string.xml @@ -1,7 +1,8 @@ - + Dizge İşleçleri + Dizge İki tane dizge işleci vardır. İlki sol ve sağ terimlerini ard arda ekleyen birleştirme işleci ('.'), ikincisi ise sağ taraftaki diff --git a/language/operators/type.xml b/language/operators/type.xml index 4d864437c..a1d342f2a 100644 --- a/language/operators/type.xml +++ b/language/operators/type.xml @@ -1,7 +1,8 @@ - + Tür İşleçleri + Tür instanceof işleci, bir PHP değişkeninin belli bir sınıfın nesnel örneği diff --git a/language/predefined/arrayaccess.xml b/language/predefined/arrayaccess.xml index a419d4799..f226544ca 100644 --- a/language/predefined/arrayaccess.xml +++ b/language/predefined/arrayaccess.xml @@ -1,5 +1,5 @@ - + @@ -36,6 +36,7 @@
+ &reftitle.examples; Temel kullanım diff --git a/language/predefined/attributes/allowdynamicproperties.xml b/language/predefined/attributes/allowdynamicproperties.xml index b6e6634a0..d53f89488 100644 --- a/language/predefined/attributes/allowdynamicproperties.xml +++ b/language/predefined/attributes/allowdynamicproperties.xml @@ -1,5 +1,5 @@ - + AllowDynamicProperties sınıfı AllowDynamicProperties @@ -40,7 +40,7 @@ Bu öznitelik ile imlenmeden kullanılan sınıflar bunu vurgulayan bir uyarı çıktılar. - + nonExistingProp = true; Deprecated: Creation of dynamic property DefaultBehaviour::$nonExistingProp is deprecated in file on line 10 ]]> - +
diff --git a/language/predefined/attributes/sensitiveparameter.xml b/language/predefined/attributes/sensitiveparameter.xml index 8d6c248a1..b202ad121 100644 --- a/language/predefined/attributes/sensitiveparameter.xml +++ b/language/predefined/attributes/sensitiveparameter.xml @@ -1,5 +1,5 @@ - + SensitiveParameter sınıfı SensitiveParameter @@ -33,7 +33,7 @@
&reftitle.examples; - + - +
diff --git a/language/predefined/closure/bindto.xml b/language/predefined/closure/bindto.xml index c4e340482..682dfc713 100644 --- a/language/predefined/closure/bindto.xml +++ b/language/predefined/closure/bindto.xml @@ -1,5 +1,5 @@ - + Closure::bindTo @@ -92,14 +92,20 @@ val = $val; } - function getClosure() { - //bu nesne ve bağlama bağlı closure ile döner - return function() { return $this->val; }; + + function getClosure() + { + // Bu nesne ve bağlama bağlı closure ile döner + return function() { + return $this->val; + }; } } @@ -108,8 +114,10 @@ $ob2 = new A(2); $cl = $ob1->getClosure(); echo $cl(), "\n"; + $cl = $cl->bindTo($ob2); echo $cl(), "\n"; + ?> ]]> diff --git a/language/predefined/iteratoraggregate.xml b/language/predefined/iteratoraggregate.xml index baf87bc35..60d46714d 100644 --- a/language/predefined/iteratoraggregate.xml +++ b/language/predefined/iteratoraggregate.xml @@ -1,5 +1,5 @@ - + IteratorAggregate Arayüzü @@ -40,18 +40,22 @@
+ &reftitle.examples; - Temel kullanımı özellik4 = "son özellik"; } @@ -60,21 +64,24 @@ class Verilerim implements IteratorAggregate { * Verilerim::getiterator in Unknown on line 0" * hatasını veriyor. */ - public function getiterator() { + public function getiterator() + { return new ArrayIterator($this); } - public public function getIterator(): Traversable { + public public function getIterator(): Traversable + { return new ArrayIterator($this); } } -$obj = new Verilerim; +$obj = new Verilerim(); -foreach($obj as $key => $value) { +foreach ($obj as $key => $value) { var_dump($key, $value); echo "\n"; } + ?> ]]> diff --git a/language/predefined/serializable.xml b/language/predefined/serializable.xml index f649d5a75..629f98332 100644 --- a/language/predefined/serializable.xml +++ b/language/predefined/serializable.xml @@ -1,5 +1,5 @@ - + @@ -61,6 +61,7 @@
+ &reftitle.examples; - Temel kullanım diff --git a/language/types/declarations.xml b/language/types/declarations.xml index 52b72230c..25ba44631 100644 --- a/language/types/declarations.xml +++ b/language/types/declarations.xml @@ -1,5 +1,5 @@ - + Tür bildirimleri @@ -153,7 +153,7 @@ boolean isimli sınıfın veya arayüzün bir örneği olmasını gerektirir: - + - + diff --git a/language/types/type-juggling.xml b/language/types/type-juggling.xml index c83227e7d..f4f08e47a 100644 --- a/language/types/type-juggling.xml +++ b/language/types/type-juggling.xml @@ -1,5 +1,5 @@ - + Tür Dönüşümü @@ -444,9 +444,7 @@ if ($fst === $str) { Tür karşılaştırma tabloları - - PHP dizgelerde dizge içi konumlar üzerinden dizilerdeki gibi indislemeyi @@ -471,7 +469,7 @@ echo $a; // bar Dizgeye Erişim. - + diff --git a/language/wrappers/audio.xml b/language/wrappers/audio.xml index 577067f2c..e3d82f7b3 100644 --- a/language/wrappers/audio.xml +++ b/language/wrappers/audio.xml @@ -1,6 +1,5 @@ - - + ogg:// @@ -172,10 +171,6 @@ - - &reftitle.examples; - - - + expect:// @@ -92,10 +91,6 @@ - - &reftitle.examples; - - - + array_key_exists @@ -12,7 +12,7 @@ &reftitle.description; boolarray_key_exists - stringintanahtar + stringintfloatboolresourcenullanahtar arraydizi @@ -59,6 +59,31 @@ + + &reftitle.changelog; + + +
+ + &Version; + &Description; + + + + + 8.0.0 + + anahtar parametresi artık şunları kabul ediyor + bool, float, int, + null, resource ve + string argüman olarak. + + + + + + + &reftitle.examples; diff --git a/reference/array/functions/array-pad.xml b/reference/array/functions/array-pad.xml index 78e2421f7..e40ec82bd 100644 --- a/reference/array/functions/array-pad.xml +++ b/reference/array/functions/array-pad.xml @@ -1,6 +1,6 @@ - + array_pad @@ -23,8 +23,7 @@ uzunluk olarak pozitif bir değer belirtilmişse yeni elemanlar dizinin sonuna, negatif bir değer için ise dizinin başına eklenir. Eğer uzunluk'un mutlak değeri dizinin - mevcut boyutundan küçük veya ona eşitse dizide değişiklik olmaz. Bir - seferde en fazla 1048576 eleman belirtilebilir. + mevcut boyutundan küçük veya ona eşitse dizide değişiklik olmaz. @@ -76,6 +75,31 @@ + + &reftitle.changelog; + + + + + + &Version; + &Description; + + + + + 8.3.0 + + PHP 8.3'ten önce, bir seferde sadece 1048576 öğe eklenebiliyordu. + Şimdi bunun yerine yalnızca bir dizinin maksimum boyutuyla sınırlıdır. + + + + + + + + &reftitle.examples; diff --git a/reference/array/functions/array-udiff-assoc.xml b/reference/array/functions/array-udiff-assoc.xml index 6e8dcc070..0141875ae 100644 --- a/reference/array/functions/array-udiff-assoc.xml +++ b/reference/array/functions/array-udiff-assoc.xml @@ -1,5 +1,5 @@ - + array_udiff_assoc @@ -52,6 +52,7 @@ değer_karş_işlevi &sort.callback.description; + &sort.callback.description.presort; diff --git a/reference/array/functions/array-udiff-uassoc.xml b/reference/array/functions/array-udiff-uassoc.xml index e239a72dc..648490587 100644 --- a/reference/array/functions/array-udiff-uassoc.xml +++ b/reference/array/functions/array-udiff-uassoc.xml @@ -1,5 +1,5 @@ - + array_udiff_uassoc @@ -50,6 +50,7 @@ değer_karş_işlevi &sort.callback.description; + &sort.callback.description.presort; diff --git a/reference/array/functions/array-udiff.xml b/reference/array/functions/array-udiff.xml index 56e64f0cf..97b1fc212 100644 --- a/reference/array/functions/array-udiff.xml +++ b/reference/array/functions/array-udiff.xml @@ -1,5 +1,5 @@ - + array_udiff @@ -45,6 +45,7 @@ değer_karş_işlevi &sort.callback.description; + &sort.callback.description.presort; diff --git a/reference/array/functions/array-uintersect-assoc.xml b/reference/array/functions/array-uintersect-assoc.xml index 773a06b7f..61e67353c 100644 --- a/reference/array/functions/array-uintersect-assoc.xml +++ b/reference/array/functions/array-uintersect-assoc.xml @@ -1,5 +1,5 @@ - + array_uintersect_assoc @@ -48,6 +48,7 @@ değer_karş_işlevi &sort.callback.description; + &sort.callback.description.presort; diff --git a/reference/array/functions/array-uintersect-uassoc.xml b/reference/array/functions/array-uintersect-uassoc.xml index 96326c9c6..f56f619da 100644 --- a/reference/array/functions/array-uintersect-uassoc.xml +++ b/reference/array/functions/array-uintersect-uassoc.xml @@ -1,5 +1,5 @@ - + array_uintersect_uassoc @@ -48,6 +48,7 @@ değer_karş_işlevi &sort.callback.description; + &sort.callback.description.presort; diff --git a/reference/array/functions/array-uintersect.xml b/reference/array/functions/array-uintersect.xml index 76c2d8429..9fbc0b282 100644 --- a/reference/array/functions/array-uintersect.xml +++ b/reference/array/functions/array-uintersect.xml @@ -1,5 +1,5 @@ - + array_uintersect @@ -43,6 +43,7 @@ değer_karş_işlevi &sort.callback.description; + &sort.callback.description.presort; diff --git a/reference/datetime/dateperiod.xml b/reference/datetime/dateperiod.xml index fe8f1046d..13baa6169 100644 --- a/reference/datetime/dateperiod.xml +++ b/reference/datetime/dateperiod.xml @@ -1,5 +1,5 @@ - + DatePeriod sınıfı @@ -161,7 +161,7 @@ etkinleştirilmişse artı bir olur. - + recurrences, "\n"; 1 0 - + Ayrıca bkz: diff --git a/reference/dir/functions/getcwd.xml b/reference/dir/functions/getcwd.xml index c1a465b6a..ebf5bdf2c 100644 --- a/reference/dir/functions/getcwd.xml +++ b/reference/dir/functions/getcwd.xml @@ -1,5 +1,5 @@ - + getcwd @@ -36,6 +36,7 @@ + &reftitle.notes; PHP yorumlayıcısı ZTS (Zend Güvenilir Evreleri) etkinken derlenmişse, diff --git a/reference/dom/domattr/isid.xml b/reference/dom/domattr/isid.xml index 5240e00bf..003049934 100644 --- a/reference/dom/domattr/isid.xml +++ b/reference/dom/domattr/isid.xml @@ -1,5 +1,5 @@ - + DOMAttr::isId @@ -18,8 +18,8 @@ DOM standardı gereği, ID özniteliğini ID türünde tanımlayan bir DTD olmalıdır. Bu işlevi kullanmadan önce belgenizi - DOMDocument::validate veya - DOMDocument::validateOnParse ile + veya + DOMDocument::$validateOnParse ile doğrulamanız gerekir. diff --git a/reference/dom/domcharacterdata/appenddata.xml b/reference/dom/domcharacterdata/appenddata.xml index 2df463f7f..2c01155e7 100644 --- a/reference/dom/domcharacterdata/appenddata.xml +++ b/reference/dom/domcharacterdata/appenddata.xml @@ -1,5 +1,5 @@ - + DOMCharacterData::appendData @@ -38,6 +38,29 @@ &return.true.always; + + + &reftitle.changelog; + + + + + &Version; + &Description; + + + + + 8.3.0 + + Bu işlev artık geçici bir true dönüş türüne sahiptir. + + + + + + + &reftitle.seealso; diff --git a/reference/dom/domelement/removeattributenode.xml b/reference/dom/domelement/removeattributenode.xml index 76f1c534a..a4f4a453f 100644 --- a/reference/dom/domelement/removeattributenode.xml +++ b/reference/dom/domelement/removeattributenode.xml @@ -1,5 +1,5 @@ - + DOMElement::removeAttributeNode @@ -48,7 +48,7 @@ - DOM_NOT_FOUND_ERROR + DOM_NOT_FOUND_ERR öznitelik, bu düğümün bir özniteliği değilse diff --git a/reference/dom/domelement/setidattribute.xml b/reference/dom/domelement/setidattribute.xml index f37f5f3c4..0497f0394 100644 --- a/reference/dom/domelement/setidattribute.xml +++ b/reference/dom/domelement/setidattribute.xml @@ -1,5 +1,5 @@ - + DOMElement::setIdAttribute @@ -61,7 +61,7 @@ - DOM_NOT_FOUND + DOM_NOT_FOUND_ERR isim, bu düğümün bir özniteliği değilse oluşur. diff --git a/reference/dom/domelement/setidattributenode.xml b/reference/dom/domelement/setidattributenode.xml index 67484abdc..0d6387378 100644 --- a/reference/dom/domelement/setidattributenode.xml +++ b/reference/dom/domelement/setidattributenode.xml @@ -1,5 +1,5 @@ - + DOMElement::setIdAttributeNode @@ -61,7 +61,7 @@ - DOM_NOT_FOUND + DOM_NOT_FOUND_ERR öznitelik, bu düğümün bir özniteliği değilse diff --git a/reference/dom/domelement/setidattributens.xml b/reference/dom/domelement/setidattributens.xml index 68c94bda4..2eb63c187 100644 --- a/reference/dom/domelement/setidattributens.xml +++ b/reference/dom/domelement/setidattributens.xml @@ -1,5 +1,5 @@ - + DOMElement::setIdAttributeNS @@ -70,7 +70,7 @@ - DOM_NOT_FOUND + DOM_NOT_FOUND_ERR isim, bu düğümün bir özniteliği değilse oluşur. diff --git a/reference/dom/domnode/c14nfile.xml b/reference/dom/domnode/c14nfile.xml index e46ae55e4..c981df9e1 100644 --- a/reference/dom/domnode/c14nfile.xml +++ b/reference/dom/domnode/c14nfile.xml @@ -1,5 +1,5 @@ - + DOMNode::C14NFile @@ -52,11 +52,7 @@ xpath - - - Seçilecek düğümler için xpath önekleri dizisi. - - + &dom.c14n.xpath_array; isim_alanları diff --git a/reference/dom/domnode/insertbefore.xml b/reference/dom/domnode/insertbefore.xml index d59d9aea5..af244ca57 100644 --- a/reference/dom/domnode/insertbefore.xml +++ b/reference/dom/domnode/insertbefore.xml @@ -1,5 +1,5 @@ - + DOMNode::insertBefore @@ -82,7 +82,7 @@ - DOM_NOT_FOUND + DOM_NOT_FOUND_ERR mevcut düğüm, bir çocuk düğüm değilse bu hata diff --git a/reference/dom/domnode/removechild.xml b/reference/dom/domnode/removechild.xml index 7120c5d0f..18587f4a3 100644 --- a/reference/dom/domnode/removechild.xml +++ b/reference/dom/domnode/removechild.xml @@ -1,5 +1,5 @@ - + DOMNode::removeChild @@ -49,7 +49,7 @@ - DOM_NOT_FOUND + DOM_NOT_FOUND_ERR eski düğüm listedeki çocuklardan biri değilse diff --git a/reference/dom/domnode/replacechild.xml b/reference/dom/domnode/replacechild.xml index f7c7af0f0..dc3cf738a 100644 --- a/reference/dom/domnode/replacechild.xml +++ b/reference/dom/domnode/replacechild.xml @@ -1,5 +1,5 @@ - + DOMNode::replaceChild @@ -86,7 +86,7 @@ - DOM_NOT_FOUND + DOM_NOT_FOUND_ERR eski düğüm, bir çocuk düğüm değilse bu hata diff --git a/reference/dom/domxpath/construct.xml b/reference/dom/domxpath/construct.xml index 6e6b390f2..f523f79ae 100644 --- a/reference/dom/domxpath/construct.xml +++ b/reference/dom/domxpath/construct.xml @@ -1,5 +1,5 @@ - + DOMXPath::__construct @@ -37,6 +37,7 @@ + &dom.parameters.register_node_ns; diff --git a/reference/dom/domxpath/evaluate.xml b/reference/dom/domxpath/evaluate.xml index 08ab8184e..ec86b5aa0 100644 --- a/reference/dom/domxpath/evaluate.xml +++ b/reference/dom/domxpath/evaluate.xml @@ -1,5 +1,5 @@ - + DOMXPath::evaluate @@ -41,15 +41,7 @@ - - kaydet - - - Seçimlik kaydet bağlamsal düğümün otomatik - kütük kaydını önlemek için kullanılabilir. - - - + &dom.parameters.register_node_ns; diff --git a/reference/dom/domxpath/query.xml b/reference/dom/domxpath/query.xml index b105c6d6c..a194c9035 100644 --- a/reference/dom/domxpath/query.xml +++ b/reference/dom/domxpath/query.xml @@ -1,5 +1,5 @@ - + DOMXPath::query @@ -39,15 +39,7 @@ - - kaydet - - - Seçimlik kaydet bağlamsal düğümün otomatik - kütük kaydını önlemek için kullanılabilir. - - - + &dom.parameters.register_node_ns; diff --git a/reference/fileinfo/functions/finfo-set-flags.xml b/reference/fileinfo/functions/finfo-set-flags.xml index 7e65da32f..7a814cabd 100644 --- a/reference/fileinfo/functions/finfo-set-flags.xml +++ b/reference/fileinfo/functions/finfo-set-flags.xml @@ -1,5 +1,5 @@ - + finfo_set_flags @@ -10,7 +10,7 @@ &reftitle.description; &style.procedural; - boolfinfo_set_flags + truefinfo_set_flags finfofinfo intflags @@ -52,7 +52,7 @@ &reftitle.returnvalues; - &return.success; + &return.true.always; diff --git a/reference/ftp/functions/ftp-login.xml b/reference/ftp/functions/ftp-login.xml index 6546076ba..85dc5b3bf 100644 --- a/reference/ftp/functions/ftp-login.xml +++ b/reference/ftp/functions/ftp-login.xml @@ -1,5 +1,5 @@ - + ftp_login @@ -11,7 +11,7 @@ boolftp_login FTP\Connectionftp stringkullanıcı - stringparola + #[\SensitiveParameter]stringparola Belirtilen FTP bağlantısı üzerinde belirtilen kullanıcı için bir oturum açar. diff --git a/reference/funchand/functions/unregister-tick-function.xml b/reference/funchand/functions/unregister-tick-function.xml index ba7cfbba1..c816154a1 100644 --- a/reference/funchand/functions/unregister-tick-function.xml +++ b/reference/funchand/functions/unregister-tick-function.xml @@ -1,6 +1,6 @@ - + unregister_tick_function diff --git a/reference/hash/functions/hash-equals.xml b/reference/hash/functions/hash-equals.xml index 2155bc514..7b4b6f980 100644 --- a/reference/hash/functions/hash-equals.xml +++ b/reference/hash/functions/hash-equals.xml @@ -1,5 +1,5 @@ - + hash_equals @@ -10,8 +10,8 @@ &reftitle.description; boolhash_equals - stringbilinen_dzg - stringkullanıcı_dzg + #[\SensitiveParameter]stringbilinen_dzg + #[\SensitiveParameter]stringkullanıcı_dzg Yürütme sırasında bilinen_dzg içeriği hakkında diff --git a/reference/hash/functions/hash-file.xml b/reference/hash/functions/hash-file.xml index d6177a1ba..517b54be7 100644 --- a/reference/hash/functions/hash-file.xml +++ b/reference/hash/functions/hash-file.xml @@ -1,5 +1,5 @@ - + hash_file @@ -57,7 +57,7 @@ Çeşitli aşlama algoritmaları için seçenekleri içeren dizi. Şimdilik - sadece, MurmurHash türevleri "seed" bağımsız değişkenini desteklemektedir. + sadece, MurmurHash türevleri "seed" bağımsız değişkenini desteklemektedir. diff --git a/reference/hash/functions/hash-hkdf.xml b/reference/hash/functions/hash-hkdf.xml index 6f8acf23e..ed20071a3 100644 --- a/reference/hash/functions/hash-hkdf.xml +++ b/reference/hash/functions/hash-hkdf.xml @@ -1,5 +1,5 @@ - + hash_hkdf @@ -11,7 +11,7 @@ stringhash_hkdf stringalgo - stringanahtar + #[\SensitiveParameter]stringanahtar intuzunluk0 stringbilgi"" stringtuz"" diff --git a/reference/hash/functions/hash-hmac-file.xml b/reference/hash/functions/hash-hmac-file.xml index a884d7fa0..ceb3b6398 100644 --- a/reference/hash/functions/hash-hmac-file.xml +++ b/reference/hash/functions/hash-hmac-file.xml @@ -1,5 +1,5 @@ - + hash_hmac_file @@ -12,7 +12,7 @@ stringfalsehash_hmac_file stringalgo stringdosya - stringanahtar + #[\SensitiveParameter]stringanahtar boolham_çıktı&false; diff --git a/reference/hash/functions/hash-hmac.xml b/reference/hash/functions/hash-hmac.xml index 00c9586b1..184ef0658 100644 --- a/reference/hash/functions/hash-hmac.xml +++ b/reference/hash/functions/hash-hmac.xml @@ -1,5 +1,5 @@ - + hash_hmac @@ -12,7 +12,7 @@ stringhash_hmac stringalgo stringveri - stringanahtar + #[\SensitiveParameter]stringanahtar boolham_çıktı&false; diff --git a/reference/hash/functions/hash-init.xml b/reference/hash/functions/hash-init.xml index f42a605f5..bf5a1bfb3 100644 --- a/reference/hash/functions/hash-init.xml +++ b/reference/hash/functions/hash-init.xml @@ -1,5 +1,5 @@ - + hash_init @@ -11,7 +11,7 @@ HashContexthash_init stringalgo intsabitler0 - stringanahtar"" + #[\SensitiveParameter]stringanahtar"" arrayseçenekler[] @@ -59,7 +59,7 @@ Çeşitli aşlama algoritmaları için seçenekleri içeren dizi. Şimdilik - sadece, MurmurHash türevleri "seed" bağımsız değişkenini desteklemektedir. + sadece, MurmurHash türevleri "seed" bağımsız değişkenini desteklemektedir. diff --git a/reference/hash/functions/hash-update.xml b/reference/hash/functions/hash-update.xml index c35a32afd..ea31c48c5 100644 --- a/reference/hash/functions/hash-update.xml +++ b/reference/hash/functions/hash-update.xml @@ -1,6 +1,6 @@ - + hash_update @@ -9,7 +9,7 @@ &reftitle.description; - boolhash_update + truehash_update HashContextbağlam stringveri @@ -45,7 +45,7 @@ &reftitle.returnvalues; - &true; döndürür. + &return.true.always; diff --git a/reference/hash/functions/hash.xml b/reference/hash/functions/hash.xml index b29c23b6a..871285fbb 100644 --- a/reference/hash/functions/hash.xml +++ b/reference/hash/functions/hash.xml @@ -1,5 +1,5 @@ - + hash @@ -55,7 +55,7 @@ Çeşitli aşlama algoritmaları için seçenekleri içeren dizi. Şimdilik - sadece, MurmurHash türevleri "seed" bağımsız değişkenini desteklemektedir. + sadece, MurmurHash türevleri "seed" bağımsız değişkenini desteklemektedir. diff --git a/reference/image/functions/imagecreatefromstring.xml b/reference/image/functions/imagecreatefromstring.xml index 701fca532..bb7b84c07 100644 --- a/reference/image/functions/imagecreatefromstring.xml +++ b/reference/image/functions/imagecreatefromstring.xml @@ -1,5 +1,5 @@ - + imagecreatefromstring @@ -16,7 +16,7 @@ veri ile belirtilen görüntü dizgesinden elde edilen görüntü için görüntü nesnesi döndürür. PHP desteklediği takdirde otomatik olaran algılanan dosya biçemleri: JPEG, PNG, GIF, BMP, WBMP, - GD2, ve WEBP. + GD2, WEBP, ve AVIF. diff --git a/reference/image/functions/imagexbm.xml b/reference/image/functions/imagexbm.xml index d2a2a1026..dcf5a07f1 100644 --- a/reference/image/functions/imagexbm.xml +++ b/reference/image/functions/imagexbm.xml @@ -1,5 +1,5 @@ - + imagexbm @@ -145,9 +145,6 @@ imagedestroy($resim); - - &reftitle.notes; - + @@ -15,6 +15,7 @@
+ ImageMagick Hakkında ImageMagick görüntüleri oluşturmak, düzenlemek ve biteşlemli görüntüler oluşturmak için birtakım yazılımlardan meydana gelmiştir. DPX, EXR, GIF, diff --git a/reference/imagick/imagick/identifyimage.xml b/reference/imagick/imagick/identifyimage.xml index 368824784..bda283ecc 100644 --- a/reference/imagick/imagick/identifyimage.xml +++ b/reference/imagick/imagick/identifyimage.xml @@ -1,5 +1,5 @@ - + Imagick::identifyImage @@ -51,6 +51,7 @@ + &reftitle.examples; - Dönen değer örneği diff --git a/reference/mbstring/functions/mb-ereg-replace-callback.xml b/reference/mbstring/functions/mb-ereg-replace-callback.xml index ec27d571b..b1ac742ff 100644 --- a/reference/mbstring/functions/mb-ereg-replace-callback.xml +++ b/reference/mbstring/functions/mb-ereg-replace-callback.xml @@ -1,5 +1,5 @@ - + mb_ereg_replace_callback diff --git a/reference/mbstring/functions/mb-get-info.xml b/reference/mbstring/functions/mb-get-info.xml index 185a6a3de..9527c183b 100644 --- a/reference/mbstring/functions/mb-get-info.xml +++ b/reference/mbstring/functions/mb-get-info.xml @@ -1,6 +1,6 @@ - + mb_get_info @@ -10,7 +10,7 @@ &reftitle.description; - arraystringintfalsemb_get_info + arraystringintfalsenullmb_get_info stringtür"all" diff --git a/reference/mbstring/functions/mb-ord.xml b/reference/mbstring/functions/mb-ord.xml index 27aa8f3ba..348ccf125 100644 --- a/reference/mbstring/functions/mb-ord.xml +++ b/reference/mbstring/functions/mb-ord.xml @@ -1,5 +1,5 @@ - + mb_ord @@ -71,8 +71,9 @@ &reftitle.examples; + Temel bir <function>mb_ord</function> örneği - - + openssl_cms_sign @@ -13,7 +13,7 @@ stringgirdi_dosyası stringçıktı_dosyası OpenSSLCertificatestringsertifika - OpenSSLAsymmetricKeyOpenSSLCertificatearraystringözel_anahtar + #[\SensitiveParameter]OpenSSLAsymmetricKeyOpenSSLCertificatearraystringözel_anahtar arraynullbaşlıklar intseçenekler0 intkodlamaOPENSSL_ENCODING_SMIME diff --git a/reference/openssl/functions/openssl-csr-new.xml b/reference/openssl/functions/openssl-csr-new.xml index a4245a10f..7dbd72398 100644 --- a/reference/openssl/functions/openssl-csr-new.xml +++ b/reference/openssl/functions/openssl-csr-new.xml @@ -1,5 +1,5 @@ - + openssl_csr_new @@ -11,7 +11,7 @@ OpenSSLCertificateSigningRequestfalseopenssl_csr_new arrayayırdedici_adlar - OpenSSLAsymmetricKeygizli_anh + #[\SensitiveParameter]OpenSSLAsymmetricKeygizli_anh arraynullseçenekler&null; arraynullek_seçenekler&null; diff --git a/reference/openssl/functions/openssl-csr-sign.xml b/reference/openssl/functions/openssl-csr-sign.xml index 6ef75fe0b..b2a3a95cf 100644 --- a/reference/openssl/functions/openssl-csr-sign.xml +++ b/reference/openssl/functions/openssl-csr-sign.xml @@ -1,5 +1,5 @@ - + openssl_csr_sign @@ -13,10 +13,11 @@ OpenSSLCertificatefalseopenssl_csr_sign OpenSSLCertificateSigningRequeststringcsr OpenSSLCertificatestringnullCA_sert - OpenSSLAsymmetricKeyOpenSSLCertificatearraystringgizli_anh + #[\SensitiveParameter]OpenSSLAsymmetricKeyOpenSSLCertificatearraystringgizli_anh intgün arraynullseçenekler&null; intsıranum0 + stringnullseri_hex&null; csr ile belirtilen Sertifika İmzalama İsteğinden bir x509 sertifikesı üretir. diff --git a/reference/openssl/functions/openssl-decrypt.xml b/reference/openssl/functions/openssl-decrypt.xml index 8f4d5cc86..d4c4eb78c 100644 --- a/reference/openssl/functions/openssl-decrypt.xml +++ b/reference/openssl/functions/openssl-decrypt.xml @@ -1,5 +1,5 @@ - + openssl_decrypt @@ -12,7 +12,7 @@ stringfalseopenssl_decrypt stringveri stringyöntem - stringparola + #[\SensitiveParameter]stringparola intseçenekler0 stringiy"" stringnulletiket&null; diff --git a/reference/openssl/functions/openssl-dh-compute-key.xml b/reference/openssl/functions/openssl-dh-compute-key.xml index 8a3de8bcd..e02ac235e 100644 --- a/reference/openssl/functions/openssl-dh-compute-key.xml +++ b/reference/openssl/functions/openssl-dh-compute-key.xml @@ -1,5 +1,5 @@ - + openssl_dh_compute_key @@ -12,7 +12,7 @@ stringfalseopenssl_dh_compute_key stringgenel_anh - OpenSSLAsymmetricKeygizli_anh + #[\SensitiveParameter]OpenSSLAsymmetricKeygizli_anh openssl_dh_compute_key tarafından döndürülen diff --git a/reference/openssl/functions/openssl-encrypt.xml b/reference/openssl/functions/openssl-encrypt.xml index 897ce0087..5d8e0ae77 100644 --- a/reference/openssl/functions/openssl-encrypt.xml +++ b/reference/openssl/functions/openssl-encrypt.xml @@ -1,5 +1,5 @@ - + openssl_encrypt @@ -10,9 +10,9 @@ &reftitle.description; stringfalseopenssl_encrypt - stringveri + #[\SensitiveParameter]stringveri stringyöntem - stringparola + #[\SensitiveParameter]stringparola intseçenekler0 stringiy"" stringetiket&null; diff --git a/reference/openssl/functions/openssl-open.xml b/reference/openssl/functions/openssl-open.xml index b971a3fc9..74eba5961 100644 --- a/reference/openssl/functions/openssl-open.xml +++ b/reference/openssl/functions/openssl-open.xml @@ -1,5 +1,5 @@ - + openssl_open @@ -11,9 +11,9 @@ boolopenssl_open stringveri - stringçıktı + #[\SensitiveParameter]stringçıktı stringzarf_anahtarı - OpenSSLAsymmetricKeyOpenSSLCertificatearraystringgizli_anahtar + #[\SensitiveParameter]OpenSSLAsymmetricKeyOpenSSLCertificatearraystringgizli_anahtar stringalgoritma stringnullilklendirme_yöneyi&null; diff --git a/reference/openssl/functions/openssl-pkcs12-export-to-file.xml b/reference/openssl/functions/openssl-pkcs12-export-to-file.xml index 0310fa432..1aa264e02 100644 --- a/reference/openssl/functions/openssl-pkcs12-export-to-file.xml +++ b/reference/openssl/functions/openssl-pkcs12-export-to-file.xml @@ -1,5 +1,5 @@ - + openssl_pkcs12_export_to_file @@ -13,8 +13,8 @@ boolopenssl_pkcs12_export_to_file OpenSSLCertificatestringsertifika stringçıktı_dosyası - OpenSSLAsymmetricKeyOpenSSLCertificatearraystringgizli_anahtar - stringparola + #[\SensitiveParameter]OpenSSLAsymmetricKeyOpenSSLCertificatearraystringgizli_anahtar + #[\SensitiveParameter]stringparola arrayseçenekler[] @@ -73,7 +73,7 @@ ek sertifikalar dizisi. - "friendlyname" + "friendly_name" Sağlanan sertifika ve anahtar için kullanılacak dizge diff --git a/reference/openssl/functions/openssl-pkcs12-export.xml b/reference/openssl/functions/openssl-pkcs12-export.xml index 09e14e321..586771c0e 100644 --- a/reference/openssl/functions/openssl-pkcs12-export.xml +++ b/reference/openssl/functions/openssl-pkcs12-export.xml @@ -1,5 +1,5 @@ - + openssl_pkcs12_export @@ -13,8 +13,8 @@ boolopenssl_pkcs12_export OpenSSLCertificatestringsertifika stringçıktı - OpenSSLAsymmetricKeyOpenSSLCertificatearraystringgizli_anahtar - stringparola + #[\SensitiveParameter]OpenSSLAsymmetricKeyOpenSSLCertificatearraystringgizli_anahtar + #[\SensitiveParameter]stringparola arrayseçenekler[] @@ -73,7 +73,7 @@ ek sertifikalar dizisi. - "friendlyname" + "friendly_name" Sağlanan sertifika ve anahtar için kullanılacak dizge diff --git a/reference/openssl/functions/openssl-pkcs12-read.xml b/reference/openssl/functions/openssl-pkcs12-read.xml index 0e4dc45a8..9357f0e9a 100644 --- a/reference/openssl/functions/openssl-pkcs12-read.xml +++ b/reference/openssl/functions/openssl-pkcs12-read.xml @@ -1,5 +1,5 @@ - + openssl_pkcs12_read @@ -13,7 +13,7 @@ boolopenssl_pkcs12_read stringpkcs12 arraysertifikalar - stringparola + #[\SensitiveParameter]stringparola pkcs12 ile belirtilen PKCS#12 sertifika deposunu diff --git a/reference/openssl/functions/openssl-pkcs7-decrypt.xml b/reference/openssl/functions/openssl-pkcs7-decrypt.xml index 9285f367e..9d2bd8fd9 100644 --- a/reference/openssl/functions/openssl-pkcs7-decrypt.xml +++ b/reference/openssl/functions/openssl-pkcs7-decrypt.xml @@ -1,5 +1,5 @@ - + openssl_pkcs7_decrypt @@ -12,8 +12,8 @@ boolopenssl_pkcs7_decrypt stringgirdi_dosyası stringçıktı_dosyası - OpenSSLCertificatestringsertifika - OpenSSLAsymmetricKeyOpenSSLCertificatearraystringnullgizli_anahtar&null; + #[\SensitiveParameter]OpenSSLCertificatestringsertifika + #[\SensitiveParameter]OpenSSLAsymmetricKeyOpenSSLCertificatearraystringnullgizli_anahtar&null; Şifreli iletiyi girdi_dosyası'ndan okur, diff --git a/reference/openssl/functions/openssl-pkcs7-sign.xml b/reference/openssl/functions/openssl-pkcs7-sign.xml index 8d031b037..2f99b2bc1 100644 --- a/reference/openssl/functions/openssl-pkcs7-sign.xml +++ b/reference/openssl/functions/openssl-pkcs7-sign.xml @@ -1,5 +1,5 @@ - + openssl_pkcs7_sign @@ -13,7 +13,7 @@ stringgirdi_dosyası stringçıktı_dosyası OpenSSLCertificatestringsertifika - OpenSSLAsymmetricKeyOpenSSLCertificatearraystringgizli_anahtar + #[\SensitiveParameter]OpenSSLAsymmetricKeyOpenSSLCertificatearraystringgizli_anahtar arraynullbaşlıklar intseçeneklerPKCS7_DETACHED stringnullgüvenilmez_sertifikalar_dosyası&null; diff --git a/reference/openssl/functions/openssl-pkey-export-to-file.xml b/reference/openssl/functions/openssl-pkey-export-to-file.xml index da82911e8..39c233ca8 100644 --- a/reference/openssl/functions/openssl-pkey-export-to-file.xml +++ b/reference/openssl/functions/openssl-pkey-export-to-file.xml @@ -1,5 +1,5 @@ - + openssl_pkey_export_to_file @@ -10,9 +10,9 @@ &reftitle.description; boolopenssl_pkey_export_to_file - OpenSSLAsymmetricKeyOpenSSLCertificatearraystringanahtar + #[\SensitiveParameter]OpenSSLAsymmetricKeyOpenSSLCertificatearraystringanahtar stringçıktı_dosyası - stringnullparola&null; + #[\SensitiveParameter]stringnullparola&null; arraynullseçenekler&null; diff --git a/reference/openssl/functions/openssl-pkey-export.xml b/reference/openssl/functions/openssl-pkey-export.xml index 62235fda9..06c9f0c60 100644 --- a/reference/openssl/functions/openssl-pkey-export.xml +++ b/reference/openssl/functions/openssl-pkey-export.xml @@ -1,5 +1,5 @@ - + openssl_pkey_export @@ -11,9 +11,9 @@ &reftitle.description; boolopenssl_pkey_export - OpenSSLAsymmetricKeyOpenSSLCertificatearraystringanahtar + #[\SensitiveParameter]OpenSSLAsymmetricKeyOpenSSLCertificatearraystringanahtar stringçıktı - stringnullparola&null; + #[\SensitiveParameter]stringnullparola&null; arraynullseçenekler&null; diff --git a/reference/openssl/functions/openssl-pkey-get-private.xml b/reference/openssl/functions/openssl-pkey-get-private.xml index 4c8ce27d8..5f66dc551 100644 --- a/reference/openssl/functions/openssl-pkey-get-private.xml +++ b/reference/openssl/functions/openssl-pkey-get-private.xml @@ -1,5 +1,5 @@ - + openssl_pkey_get_private @@ -10,8 +10,8 @@ &reftitle.description; OpenSSLAsymmetricKeyfalseopenssl_pkey_get_private - OpenSSLAsymmetricKeyOpenSSLCertificatearraystringgizli_anahtar - stringnullparola&null; + #[\SensitiveParameter]OpenSSLAsymmetricKeyOpenSSLCertificatearraystringgizli_anahtar + #[\SensitiveParameter]stringnullparola&null; Belirtilen gizli_anahtar çözümlenip diğer işlevlerin diff --git a/reference/openssl/functions/openssl-private-decrypt.xml b/reference/openssl/functions/openssl-private-decrypt.xml index 70f4df359..b78beda39 100644 --- a/reference/openssl/functions/openssl-private-decrypt.xml +++ b/reference/openssl/functions/openssl-private-decrypt.xml @@ -1,5 +1,5 @@ - + openssl_private_decrypt @@ -12,8 +12,8 @@ boolopenssl_private_decrypt stringşifreli_veri - stringşifresiz_veri - OpenSSLAsymmetricKeyOpenSSLCertificatearraystringgizli_anahtar + #[\SensitiveParameter]stringşifresiz_veri + #[\SensitiveParameter]OpenSSLAsymmetricKeyOpenSSLCertificatearraystringgizli_anahtar intdolguOPENSSL_PKCS1_PADDING diff --git a/reference/openssl/functions/openssl-private-encrypt.xml b/reference/openssl/functions/openssl-private-encrypt.xml index 46a5fafb5..e5b804749 100644 --- a/reference/openssl/functions/openssl-private-encrypt.xml +++ b/reference/openssl/functions/openssl-private-encrypt.xml @@ -1,5 +1,5 @@ - + openssl_private_encrypt @@ -10,9 +10,9 @@ &reftitle.description; boolopenssl_private_encrypt - stringşifresiz_veri + #[\SensitiveParameter]stringşifresiz_veri stringşifreli_veri - OpenSSLAsymmetricKeyOpenSSLCertificatearraystringgizli_anahtar + #[\SensitiveParameter]OpenSSLAsymmetricKeyOpenSSLCertificatearraygizli_anahtarprivate_key intdolguOPENSSL_PKCS1_PADDING diff --git a/reference/openssl/functions/openssl-public-decrypt.xml b/reference/openssl/functions/openssl-public-decrypt.xml index 94486738d..e45234705 100644 --- a/reference/openssl/functions/openssl-public-decrypt.xml +++ b/reference/openssl/functions/openssl-public-decrypt.xml @@ -1,5 +1,5 @@ - + openssl_public_decrypt @@ -12,7 +12,7 @@ boolopenssl_public_decrypt stringşifreli_veri - stringşifresiz_veri + #[\SensitiveParameter]stringşifresiz_veri OpenSSLAsymmetricKeyOpenSSLCertificatearraystringgenel_anahtar intdolguOPENSSL_PKCS1_PADDING diff --git a/reference/openssl/functions/openssl-public-encrypt.xml b/reference/openssl/functions/openssl-public-encrypt.xml index e204beefa..f0c58163f 100644 --- a/reference/openssl/functions/openssl-public-encrypt.xml +++ b/reference/openssl/functions/openssl-public-encrypt.xml @@ -1,5 +1,5 @@ - + openssl_public_encrypt @@ -10,7 +10,7 @@ &reftitle.description; boolopenssl_public_encrypt - stringşifresiz_veri + #[\SensitiveParameter]stringşifresiz_veri stringşifreli_veri OpenSSLAsymmetricKeyOpenSSLCertificatearraystringgenel_anahtar intdolguOPENSSL_PKCS1_PADDING diff --git a/reference/openssl/functions/openssl-seal.xml b/reference/openssl/functions/openssl-seal.xml index 4008822c9..9018d0ace 100644 --- a/reference/openssl/functions/openssl-seal.xml +++ b/reference/openssl/functions/openssl-seal.xml @@ -1,5 +1,5 @@ - + openssl_seal @@ -10,7 +10,7 @@ &reftitle.description; intfalseopenssl_seal - stringveri + #[\SensitiveParameter]stringveri stringmühürlü_veri arrayzarf_anahtarları arraygenel_anahtar diff --git a/reference/openssl/functions/openssl-sign.xml b/reference/openssl/functions/openssl-sign.xml index 986a7ffcc..277fdccac 100644 --- a/reference/openssl/functions/openssl-sign.xml +++ b/reference/openssl/functions/openssl-sign.xml @@ -1,5 +1,5 @@ - + openssl_sign İmza üretir @@ -11,7 +11,7 @@ boolopenssl_sign stringveri stringimza - OpenSSLAsymmetricKeyOpenSSLCertificatearraystringgizli_anahtar + #[\SensitiveParameter]OpenSSLAsymmetricKeyOpenSSLCertificatearraystringgizli_anahtar stringintalgoritmaOPENSSL_ALGO_SHA1 diff --git a/reference/password/functions/password-hash.xml b/reference/password/functions/password-hash.xml index 584faf3ac..b692fac2e 100644 --- a/reference/password/functions/password-hash.xml +++ b/reference/password/functions/password-hash.xml @@ -1,5 +1,5 @@  - + password_hash @@ -10,7 +10,7 @@ &reftitle.description; stringpassword_hash - stringparola + #[\SensitiveParameter]stringparola stringintnullalgo arrayseçenekler[] diff --git a/reference/password/functions/password-verify.xml b/reference/password/functions/password-verify.xml index f97224af7..9f54183b1 100644 --- a/reference/password/functions/password-verify.xml +++ b/reference/password/functions/password-verify.xml @@ -1,5 +1,5 @@ - + password_verify @@ -10,7 +10,7 @@ &reftitle.description; boolpassword_verify - stringparola + #[\SensitiveParameter]stringparola string diff --git a/reference/pcntl/functions/pcntl-wait.xml b/reference/pcntl/functions/pcntl-wait.xml index 20ebab15f..f0c53b128 100644 --- a/reference/pcntl/functions/pcntl-wait.xml +++ b/reference/pcntl/functions/pcntl-wait.xml @@ -1,5 +1,5 @@ - + pcntl_wait @@ -65,13 +65,13 @@
- WNOHANG + WNOHANG Çıkmış çocuk süreç yoksa hemen dön. - WUNTRACED + WUNTRACED Durumu raporlanmamış ve durmuş çocuklar varsa dön. diff --git a/reference/pcntl/functions/pcntl-waitpid.xml b/reference/pcntl/functions/pcntl-waitpid.xml index 35c89e13d..383878417 100644 --- a/reference/pcntl/functions/pcntl-waitpid.xml +++ b/reference/pcntl/functions/pcntl-waitpid.xml @@ -1,5 +1,5 @@ - + pcntl_waitpid @@ -106,13 +106,13 @@ - WNOHANG + WNOHANG Çıkmış çocuk süreç yoksa hemen dön. - WUNTRACED + WUNTRACED Durumu raporlanmamış ve durmuş çocuklar varsa dön. diff --git a/reference/pcntl/functions/pcntl-wifstopped.xml b/reference/pcntl/functions/pcntl-wifstopped.xml index ce2379135..e15a0328b 100644 --- a/reference/pcntl/functions/pcntl-wifstopped.xml +++ b/reference/pcntl/functions/pcntl-wifstopped.xml @@ -1,6 +1,6 @@ - + pcntl_wifstopped @@ -15,7 +15,7 @@ Çocuk sürecin durdurulmuş olup olmadığına bakar. Bunun mümkün olması için - WUNTRACED seçeneği kullanılarak evvelce yapılmış bir + WUNTRACED seçeneği kullanılarak evvelce yapılmış bir pcntl_waitpid çağrısı yapılmış olmalıdır. diff --git a/reference/pcre/functions/preg-match-all.xml b/reference/pcre/functions/preg-match-all.xml index 08ddb09ea..0faeba94a 100644 --- a/reference/pcre/functions/preg-match-all.xml +++ b/reference/pcre/functions/preg-match-all.xml @@ -1,5 +1,5 @@ - + preg_match_all diff --git a/reference/pcre/functions/preg-replace.xml b/reference/pcre/functions/preg-replace.xml index 43f6ae3ad..3232444bb 100644 --- a/reference/pcre/functions/preg-replace.xml +++ b/reference/pcre/functions/preg-replace.xml @@ -1,5 +1,5 @@ - + preg_replace @@ -319,7 +319,7 @@ xp***to ara yer tutucu ile değiştirip ardından daha sonraki bir çiftte bu aracı yer tutucu yenisi ile değiştirilebilir. - + ]]> - + diff --git a/reference/pcre/pattern.modifiers.xml b/reference/pcre/pattern.modifiers.xml index 8e33e91fd..d6eb7b6a7 100644 --- a/reference/pcre/pattern.modifiers.xml +++ b/reference/pcre/pattern.modifiers.xml @@ -1,5 +1,5 @@ - +
Düzenli ifadeler için kullanılabilecek değiştiriciler @@ -118,7 +118,7 @@ çevirir. Böylece, ardlarına bir "?" konmadıkça niceleyiciler öntanımlı olarak açgözlü olmaz. Bu değiştirici Perl ile uyumlu değildir. Ayrıca, değiştirici - şablon içinde de (?U ile) etkin kılılınabileceği gibi + şablon içinde de ((?U) ile) etkin kılılınabileceği gibi niceleyicinin ardına bir soru işareti konarak da (.*? gibi) bu sağlanabilir. @@ -179,6 +179,7 @@ gruplar yakalanır. Bu yalnızca hangi grupların yakalandığını etkiler, yine de numaralandırılmış alt kalıp başvurularını kullanmak mümkündür ve eşleşme dizisi yine de numaralandırılmış sonuçları içerir. + PHP 8.2.0'dan itibaren kullanılabilir.