diff --git a/reference/datetime/functions/mktime.xml b/reference/datetime/functions/mktime.xml index c59771b6..4a3a8c72 100755 --- a/reference/datetime/functions/mktime.xml +++ b/reference/datetime/functions/mktime.xml @@ -1,7 +1,7 @@ - + - + mktime @@ -213,10 +213,13 @@ echo date("M-d-Y", mktime(0, 0, 0, 1, 1, 98)); ]]> diff --git a/reference/datetime/functions/strftime.xml b/reference/datetime/functions/strftime.xml index 740cd702..5ce391fb 100755 --- a/reference/datetime/functions/strftime.xml +++ b/reference/datetime/functions/strftime.xml @@ -1,7 +1,7 @@ - + - + strftime @@ -515,11 +515,12 @@ echo strftime($format); - Wyświetl wszystkie znane i nieznane formaty. + Wyświetl wszystkie znane i nieznane formaty 'A full textual representation of the day', 'B' => 'Full month name, based on the locale', @@ -576,28 +577,29 @@ $strftimeFormats = array( '%' => 'A literal percentage character ("%")', ); -// Results. +// Results $strftimeValues = array(); -// Evaluate the formats whilst suppressing any errors. -foreach($strftimeFormats as $format => $description){ - if (False !== ($value = @strftime("%{$format}"))){ +// Evaluate the formats whilst suppressing any errors +foreach ($strftimeFormats as $format => $description) { + if (False !== ($value = @strftime("%{$format}"))) { $strftimeValues[$format] = $value; } } -// Find the longest value. +// Find the longest value $maxValueLength = 2 + max(array_map('strlen', $strftimeValues)); -// Report known formats. -foreach($strftimeValues as $format => $value){ +// Report known formats +foreach ($strftimeValues as $format => $value) { echo "Known format : '{$format}' = ", str_pad("'{$value}'", $maxValueLength), " ( {$strftimeFormats[$format]} )\n"; } -// Report unknown formats. -foreach(array_diff_key($strftimeFormats, $strftimeValues) as $format => $description){ +// Report unknown formats +foreach (array_diff_key($strftimeFormats, $strftimeValues) as $format => $description) { echo "Unknown format : '{$format}' ", str_pad(' ', $maxValueLength), ($description ? " ( {$description} )" : ''), "\n"; } + ?> ]]> diff --git a/reference/dir/book.xml b/reference/dir/book.xml index 7d813875..44dc7b76 100644 --- a/reference/dir/book.xml +++ b/reference/dir/book.xml @@ -1,7 +1,7 @@ - + - + Katalogi @@ -15,7 +15,6 @@ }}} --> - &reference.dir.setup; &reference.dir.constants; &reference.dir.directory; &reference.dir.reference; diff --git a/reference/exif/book.xml b/reference/exif/book.xml index 5b1a2e14..181f5262 100644 --- a/reference/exif/book.xml +++ b/reference/exif/book.xml @@ -1,6 +1,6 @@ - - + + Exchangeable image information @@ -10,10 +10,11 @@ &reftitle.intro; - Rozszerzenie Exif umożliwia pracę z metadanymi obrazów. Można - przykładowo używać funkcji Exif do odczytywania informacji przechowywanych - w nagłówkach zdjęć JPEG i TIFF - pobranych z aparatu cyfrowego. + Dzięki rozszerzeniu exif możesz pracować z metadanymi obrazów. Na przykład + możesz używać funkcji exif do odczytywania metadanych zdjęć zrobionych + aparatami cyfrowymi, pracując z informacjami zapisanymi w nagłówkach. + Są one powszechnie spotykane w obrazach JPEG i + TIFF. diff --git a/reference/exif/setup.xml b/reference/exif/setup.xml index ab63f6d8..0f870df2 100644 --- a/reference/exif/setup.xml +++ b/reference/exif/setup.xml @@ -1,7 +1,7 @@ - + - + &reftitle.setup; @@ -9,10 +9,15 @@
&reftitle.required; - PHP musi być skompilowany z opcją --enable-exif. - Do prawidłowego działania rozszerzenia Exif, PHP nie wymaga - dodatkowych bibliotek. Użytkownicy Windows muszą mieć także - włączone rozszerzenie mbstring. + PHP musi być skompilowany z opcją --enable-exif. Aby włączyć + obsugę wielobajtową w tagach EXIF, rozszerzenie mbstring + musi być włączone poprzez kompilację PHP z opcją --enable-mbstring. + PHP nie wymaga żadnej dodatkowej biblioteki dla modułu exif. + + + Tylko systemy Windows: Rozszerzenie mbstring musi być + zawsze włączone. Zauważ, że rozszerzenie mbstring musi być + załadowane przed EXIF w pliku php.ini.
@@ -25,13 +30,6 @@ &reference.exif.ini; - -
- &reftitle.resources; - &no.resource; -
- -
+ - + Obsługa funkcji @@ -14,7 +14,6 @@
- &reference.funchand.setup; &reference.funchand.reference; diff --git a/reference/iconv/setup.xml b/reference/iconv/setup.xml index aedeed15..75121efc 100644 --- a/reference/iconv/setup.xml +++ b/reference/iconv/setup.xml @@ -1,7 +1,7 @@ - + - + &reftitle.setup; @@ -26,13 +26,6 @@ &reference.iconv.ini; - -
- &reftitle.resources; - &no.resource; -
- -
+ - + json_decode @@ -337,6 +337,7 @@ object(stdClass)#1 (1) { json_encode json_last_error + json_last_error_msg diff --git a/reference/json/functions/json-encode.xml b/reference/json/functions/json-encode.xml index d182e94b..b3eea003 100644 --- a/reference/json/functions/json-encode.xml +++ b/reference/json/functions/json-encode.xml @@ -1,7 +1,7 @@ - + - + json_encode @@ -393,6 +393,7 @@ string(2) "12" JsonSerializable json_decode json_last_error + json_last_error_msg serialize diff --git a/reference/json/setup.xml b/reference/json/setup.xml index 6e09cec4..a620dfa0 100644 --- a/reference/json/setup.xml +++ b/reference/json/setup.xml @@ -1,5 +1,5 @@ - + @@ -20,11 +20,6 @@ -
- &reftitle.resources; - &no.resource; -
-
+ @@ -27,13 +27,6 @@ &reference.mail.ini; - -
- &reftitle.resources; - &no.resource; -
- -
+ @@ -36,7 +36,6 @@ - &reference.math.setup; &reference.math.constants; &reference.math.reference; diff --git a/reference/math/functions/pow.xml b/reference/math/functions/pow.xml index ebdb3125..c85520a6 100644 --- a/reference/math/functions/pow.xml +++ b/reference/math/functions/pow.xml @@ -1,7 +1,6 @@ - + - pow @@ -55,6 +54,9 @@ a wynik może być reprezentowany jako liczba całkowita, wynik zostanie zwrócony z typem int, w przeciwnym razie zostanie zwrócony jako typ float. + + Rozszerzenia PHP mogą nadpisywać zachowanie tej operacji i zwracać obiekt. + &reftitle.examples; @@ -66,11 +68,13 @@ ]]> diff --git a/reference/misc/setup.xml b/reference/misc/setup.xml index 212ef705..3d6d442b 100644 --- a/reference/misc/setup.xml +++ b/reference/misc/setup.xml @@ -1,5 +1,5 @@ - + @@ -7,11 +7,6 @@ &reference.misc.ini; -
- &reftitle.resources; - &no.resource; -
-
+ @@ -44,13 +44,6 @@ &reference.mysqli.ini; - -
- &reftitle.resources; - &no.resource; -
- -
+ &reftitle.setup; @@ -27,11 +27,6 @@ -
- &reftitle.resources; - &no.resource; -
-
+ - - + &reftitle.setup; @@ -30,13 +29,6 @@ &reference.readline.ini; - -
- &reftitle.resources; - &no.resource; -
- -
+ @@ -24,7 +24,6 @@ - &reference.reflection.setup; &reference.reflection.constants; &reference.reflection.examples; &reference.reflection.extending; diff --git a/reference/spl/book.xml b/reference/spl/book.xml index 2813bf9e..c65d0249 100644 --- a/reference/spl/book.xml +++ b/reference/spl/book.xml @@ -1,5 +1,5 @@ - + @@ -18,7 +18,6 @@ - &reference.spl.setup; &reference.spl.constants; &reference.spl.datastructures; &reference.spl.iterators; diff --git a/reference/strings/book.xml b/reference/strings/book.xml index 39c1f3f7..6ac8318f 100644 --- a/reference/strings/book.xml +++ b/reference/strings/book.xml @@ -1,5 +1,5 @@ - + @@ -11,7 +11,7 @@ Te funkcje służą do operacji na ciągach znaków. Niektóre bardziej wyspecjalizowane sekcje mogą być znalezione w rozdziałach poświęconych - wyrażeniom regularnym i obsłudze URL. + wyrażeniom regularnym i obsłudze URL. Aby dowiedzieć się jak zachowują się ciągi znaków, szczególnie diff --git a/reference/strings/setup.xml b/reference/strings/setup.xml index d647eb6c..6a98ec2c 100644 --- a/reference/strings/setup.xml +++ b/reference/strings/setup.xml @@ -1,5 +1,5 @@ - + @@ -15,11 +15,6 @@ -
- &reftitle.resources; - &no.resource; -
- + - + &reftitle.setup; @@ -23,13 +23,6 @@ &reference.tidy.ini; - -
- &reftitle.resources; - &no.resource; -
- -
+ + tidyNode::getParent @@ -35,7 +36,7 @@ &reftitle.examples; - Przykład <function>tidyNode::hasChildren</function> + Przykład <function>tidyNode::getParent</function> html()->child[0]->child[0]; -var_dump($node->getparent()->name); +var_dump($node->getParent()->name); ?> ]]> diff --git a/reference/tokenizer/setup.xml b/reference/tokenizer/setup.xml index 481efdd3..2e5ff6b0 100644 --- a/reference/tokenizer/setup.xml +++ b/reference/tokenizer/setup.xml @@ -1,5 +1,5 @@ - + @@ -8,11 +8,6 @@ &reference.tokenizer.configure; -
- &reftitle.resources; - &no.resource; -
- + - + &Functions; URL @@ -13,7 +13,6 @@
- &reference.url.setup; &reference.url.constants; &reference.url.reference;
diff --git a/reference/var/setup.xml b/reference/var/setup.xml index 56ae1a74..df8cb664 100644 --- a/reference/var/setup.xml +++ b/reference/var/setup.xml @@ -1,17 +1,12 @@ - + - + &reftitle.setup; &reference.var.ini; -
- &reftitle.resources; - &no.resource; -
-