[PHP-DOC] cvs: phpdoc-pl /reference/array/functions array-change-key-case.xml

2002-05-13 Thread Leszek Krupinski

leszek  Tue May 14 03:14:00 2002 EDT

  Modified files:  
/phpdoc-pl/reference/array/functionsarray-change-key-case.xml 
  Log:
  Corrected revcheck
  
Index: phpdoc-pl/reference/array/functions/array-change-key-case.xml
diff -u phpdoc-pl/reference/array/functions/array-change-key-case.xml:1.3 
phpdoc-pl/reference/array/functions/array-change-key-case.xml:1.4
--- phpdoc-pl/reference/array/functions/array-change-key-case.xml:1.3   Sun May 12 
16:31:46 2002
+++ phpdoc-pl/reference/array/functions/array-change-key-case.xml   Tue May 14 
+03:14:00 2002
@@ -1,6 +1,6 @@
 
-
-
+
+
   

 array_change_key_case





[PHP-DOC] cvs: phpdoc /en/reference/strings/functions str-repeat.xml

2002-05-13 Thread Philip Olson

philip  Mon May 13 22:51:47 2002 EDT

  Modified files:  
/phpdoc/en/reference/strings/functions  str-repeat.xml 
  Log:
  See also str_pad() and for loop.
  
  
Index: phpdoc/en/reference/strings/functions/str-repeat.xml
diff -u phpdoc/en/reference/strings/functions/str-repeat.xml:1.2 
phpdoc/en/reference/strings/functions/str-repeat.xml:1.3
--- phpdoc/en/reference/strings/functions/str-repeat.xml:1.2Wed Apr 17 02:44:22 
2002
+++ phpdoc/en/reference/strings/functions/str-repeat.xmlMon May 13 22:51:46 
+2002
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -30,7 +30,9 @@
  This will output "-=-=-=-=-=-=-=-=-=-=".
 
 
- See also substr_count.
+ See also: for,
+ str_pad, and 
+ substr_count.
 

   





[PHP-DOC] cvs: phpdoc-pt_BR /features commandline.xml

2002-05-13 Thread André Luis Ferreira da Silva Bacci

ae  Mon May 13 22:43:59 2002 EDT

  Added files: 
/phpdoc-pt_BR/features  commandline.xml 
  Log:
  initial translation
  


Index: phpdoc-pt_BR/features/commandline.xml
+++ phpdoc-pt_BR/features/commandline.xml



 Usando o PHP na linha de comando
 
 
  Desde a versão 4.3, o PHP suporta um novo tipo
  SAPI (Server Application Programming Interface)
  chamado CLI que significa Command Line
  Interface. Como o próprio nome diz, essa SAPI
  tem foco no desenvolvimento de aplicações shell (ou no terminal/linha de comando) com
  o PHP. As diferenças entre a
  CLI SAPI e as outras SAPIs são
  detalhadas neste capítulo.
 
 
  A CLI SAPI foi liberada primeiramente com o
  PHP 4.2.0, mas ainda em estágio experimental, sendo necessário
  ativá-la explicitamente com a opção --enable-cli durante o
  ./configure. Desde o PHP 4.0.3 a
  CLI SAPI não mais é experimental e é
  sempre compilada e instalada como o arquivo
  php (chamado php.exe no Windows),
  no formato binário executável.
 
 
  Diferenças importantes das CLI SAPI comparada com outras
  SAPIs:
  
   

 Diferentemente da CGI SAPI, nenhum header é impresso
 na saída.


 A CGI SAPI possui um meio de suprimir os headers
 HTTP, mas não há uma chave equivalente para ativá-los na CLI
 SAPI.

   
   

 Estas são as diretivas do &php.ini; que são sobrescritas pela CLI
 SAPI porque não fazem sentido no ambiente shell:
 
  Diretivas &php.ini; sobrescritas
  
   

 Diretiva
 Valor default CLI SAPI
 Comentários

   
   

 html_errors
 &false;
 
  Pode ser bem difícil de ler mensagens de erro no seu shell quando
  elas estão embebidas dentro de tags HTML,
  por isso essa diretiva tem default para &false;.
 


 implicit_flush
 &true;
 
  Essa diretiva causa que qualquer saída gerada de um
  print, echo e semelhantes sejam
  imediatamente escritas para o output e não cacheadas em nenhum buffer.
 


 max_execution_time
 0 (unlimited)
 
  Devido as infinitas possibilidades da utilização do PHP em
  ambientes shell, tempo máximo de execução foi configurado para
  ilimitado. Enquanto aplicações escritas para web são geralmente executadas
  em poucos segundos, aplicações no shell tendem a ter um tempo de execução
  mais longo.
 


 register_argc_argv
 &true;
 
  As variáveis globais do PHP $argc
  (número de argumentos passados para aplicação) e
  $argv (array com os argumentos atuais) são sempre
  presentes e preenchidos com os valores apropriados quando utilizando a 
  CLI SAPI.
 

   
  
 


 
  Estas diretivas não podem ser inicializadas com outros valores do
  arquivo de configuração &php.ini; ou um arquivo personalizado (se informado). 
Esta
  limitação existe porque estes valores são aplicados depois que todos
  os arquivos de configuração são analisados. Entretanto, seus valores podem ser 
modificados
  durante a execução (o que pode não fazer sentido para todas elas,
  por exemplo, register_argc_argv).
 

   
   

 A CLI SAPI não modifica o diretório de execução atual para o 
diretório
 onde o script é interpretado!


 Exemplo mostrando a diferença da CGI SAPI:
 

 


 Quando utilizando a versão CGI, a saída é
 

 
 Isto mostra como o PHP modifica o diretório atual
 para aquela onde o script é executado.


 Utilizando a versão CLI SAPI:
 

 
 E isto mostra a grande flexibilidade ferramentas shell em
 PHP.


 
  A CGI SAPI suporta o comportamento da CLI 
SAPI
  utilizando a chave -C quando de sua execução na
  linha de comando.
 

   
  
 
 
  A lista de opções de linha de comando fornecidas pelo binário do 
PHP
  pode ser solicitada a qualquer tempo executando o PHP com a
  opção -h:
  

  
 
 
  A CLI SAPI fornecer três maneiras diferentes para você
  executar seu código PHP:
  
   

 Chamando o PHP para executar um arquivo determinado.


 

 
 De ambas maneiras (utilizando ou não a opção -f) o
 arquivo informado my_script.php é executado. Você pode 
escolher qualquer arquivo para
 executar, seus scripts PHP não precisam terminar com a
 extensão .php, podendo ter qualquer nome ou extensão
 que você deseje.

   
   

 Passar o código PHP para execução diretamente a linha
 de comando.


 

 
 É preciso ter especial cuidado com a substituição de variáveis shell e
 delimitação de strings utilizada.


 
  Leia o exemplo cuidadosamente, observ

[PHP-DOC] cvs: phpdoc-pt_BR / translation.xml /appendices about.xml aliases.xml /chapters config.xml intro.xml /language basic-syntax.xml

2002-05-13 Thread André Luis Ferreira da Silva Bacci

ae  Mon May 13 22:41:13 2002 EDT

  Modified files:  
/phpdoc-pt_BR   translation.xml 
/phpdoc-pt_BR/chapters  intro.xml config.xml 
/phpdoc-pt_BR/language  basic-syntax.xml 
/phpdoc-pt_BR/appendicesaliases.xml about.xml 
  Log:
  small update
  

Index: phpdoc-pt_BR/translation.xml
diff -u phpdoc-pt_BR/translation.xml:1.11 phpdoc-pt_BR/translation.xml:1.12
--- phpdoc-pt_BR/translation.xml:1.11   Sun May  5 14:43:04 2002
+++ phpdoc-pt_BR/translation.xmlMon May 13 22:41:13 2002
@@ -21,5 +21,6 @@



+   

 
Index: phpdoc-pt_BR/chapters/intro.xml
diff -u phpdoc-pt_BR/chapters/intro.xml:1.8 phpdoc-pt_BR/chapters/intro.xml:1.9
--- phpdoc-pt_BR/chapters/intro.xml:1.8 Wed May  1 22:14:08 2002
+++ phpdoc-pt_BR/chapters/intro.xml Mon May 13 22:41:13 2002
@@ -1,5 +1,5 @@
 
-
+
  
   Introdução
 
@@ -100,7 +100,7 @@
usando o cron ou o Agendador de Tarefas (no
Windows). Esses scripts podem ser usados também para
rotinas de processamento de texto. Veja a seção
-   Utilizando o PHP em
+   Utilizando o PHP em
linha de comando para maiores informações.
   
  
Index: phpdoc-pt_BR/chapters/config.xml
diff -u phpdoc-pt_BR/chapters/config.xml:1.11 phpdoc-pt_BR/chapters/config.xml:1.12
--- phpdoc-pt_BR/chapters/config.xml:1.11   Tue Apr 30 10:53:05 2002
+++ phpdoc-pt_BR/chapters/config.xmlMon May 13 22:41:13 2002
@@ -1,5 +1,5 @@
 
-
+
  
   Configuração
 
@@ -441,12 +441,36 @@

 
  Habilitado (On) por padrão. Se desabilitado (Off) os scripts irão ser 
finalizados
- tão logo quanto ele tentar imprimir algo e descobrir que o usuário cancelou 
a conexão.
+ tão logo quanto ele tentar imprimir algo e descobrir que o usuário cancelou
+ a conexão.
  Veja também ignore_user_abort.
 

   
 
+  
+   
+implicit_flush
+booleano
+   
+   
+
+ &false; por default. Alterando para &true, diz ao PHP para chamar as
+ rotinas de impressão/output automaticamente depois de cada comando de saída.
+ Isto é equivalente a chamar a função
+ flush depois de cada chamada a
+ print ,echo ou depois de qualquer 
+outro
+ bloco HTML.
+
+
+ Quanto utilizando o PHP em um ambiente Web, ativar
+ esta opção tem sérias implicações na performance e é geralmente
+ recomendado para propósitos de debug. Este valor é &true; por
+ default quando operando sobre a CLI SAPI.
+
+   
+  
+
   

 include_path
@@ -622,7 +646,7 @@
  (que conteriam a informação do GET).
 
 
-  Veja também PHP em linha de comando.
+  Veja também PHP em linha de 
+comando.
   Esta diretiva se tornou disponível no PHP 4.0.0 e
   estava sempre habilitanda antes desta versão.
 
Index: phpdoc-pt_BR/language/basic-syntax.xml
diff -u phpdoc-pt_BR/language/basic-syntax.xml:1.3 
phpdoc-pt_BR/language/basic-syntax.xml:1.4
--- phpdoc-pt_BR/language/basic-syntax.xml:1.3  Wed Dec 12 15:56:34 2001
+++ phpdoc-pt_BR/language/basic-syntax.xml  Mon May 13 22:41:13 2002
@@ -1,124 +1,278 @@
 
-  
-   Sintaxe básica
-
-   
-Escapes do HTML
-  
-
- Há quatro meios de escapes do HTML para entrar no modo "código
- PHP":
+
+ 
+  Sintaxe básica
+
+   
+
+  
+   Alternado/Escaping do HTML
+
+   
+Quando o PHP interpreta um arquivo, ele simplesmente repassa o texto do arquivo
+até encontrar uma das tags especiais que lhe diz para
+começar a interpretar o texto como código PHP. O interpretador então
+executa todo o código que encontra, até chegar em uma tag de
+fechamento PHP, que novamente o coloca simplesmente repassando
+texto novamente. Este é o mecanismo que permite a inclusão de código
+PHP dentro do HTML: qualquer coisa fora das tags PHP é deixado como
+encontrado, enquanto tudo dentro é interpretado e executado.
+   
+
+   
+Há quatro conjuntos de tags que podem ser usadas para marcar blocos de
+código PHP. Delas, somente duas ( e ) são sempre disponíveis. As
+outras podem ser ativadas ou desativadas a partir do arquivo de configuração
+&php.ini;. Enquanto as
+formas reduzidas das tags ou no seu estilo ASP serem convenientes, elas não
+são portáveis em todas as versões. Além disso, se você pretende incluir
+código PHP em XML ou XHTML, você precisará usar a forma
+ para compatibilidade com o padrão XML.
+   
+
+   
+As tags suportadas pelo PHP são:
+   
 
 
  
-  Meios de escape do HTML
-  
-1.  
- 
-2.  
-
-3.  

[PHP-DOC] cvs: phpdoc /en/reference/misc/functions show-source.xml

2002-05-13 Thread Dirkjan Ochtman

manuzhaiMon May 13 18:24:16 2002 EDT

  Modified files:  
/phpdoc/en/reference/misc/functions show-source.xml 
  Log:
  Fixed typos.
  
Index: phpdoc/en/reference/misc/functions/show-source.xml
diff -u phpdoc/en/reference/misc/functions/show-source.xml:1.3 
phpdoc/en/reference/misc/functions/show-source.xml:1.4
--- phpdoc/en/reference/misc/functions/show-source.xml:1.3  Mon May 13 17:12:45 
2002
+++ phpdoc/en/reference/misc/functions/show-source.xml  Mon May 13 18:24:16 2002
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -15,8 +15,8 @@
   choice="opt">boolreturn
  
 
- This function is an alias highlight_file. For more
- informatin see the documentation there.
+ This function is an alias to highlight_file. For more
+ information see the documentation there.
 
 
  See also highlight_string and





[PHP-DOC] cvs: phpdoc /en/reference/misc/functions show-source.xml

2002-05-13 Thread Markus Fischer

mfischerMon May 13 17:12:45 2002 EDT

  Modified files:  
/phpdoc/en/reference/misc/functions show-source.xml 
  Log:
  - Remove documentation, everything is in highlight_file, no need to document
thigns twice but still leave the entry because it's very popular.
  
  
Index: phpdoc/en/reference/misc/functions/show-source.xml
diff -u phpdoc/en/reference/misc/functions/show-source.xml:1.2 
phpdoc/en/reference/misc/functions/show-source.xml:1.3
--- phpdoc/en/reference/misc/functions/show-source.xml:1.2  Wed Apr 17 02:40:43 
2002
+++ phpdoc/en/reference/misc/functions/show-source.xml  Mon May 13 17:12:45 2002
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -15,39 +15,11 @@
   choice="opt">boolreturn
  
 
- The show_source function prints out a syntax
- higlighted version of the code contained in filename 
- using the colors defined in the built-in syntax highlighter for PHP.
+ This function is an alias highlight_file. For more
+ informatin see the documentation there.
 
 
- If the second parameter return is set to &true;
- then show_source will return the highlighted
- code as a string instead of printing it out. If the second parameter is
- not set to &true; then show_source will
- return &true; on success, &false; on failure.
-
-
- 
-  The return parameter became available in PHP 
-  4.2.0.  Before this time it behaved like the default, which is &false;
- 
-
-   
- This function is an alias for the function
- highlight_file
-
-
- 
-  Care should be taken when using the
-  show_source and
-  highlight_file functions to make sure that
-  you do not inadvertently reveal sensitive information such as
-  passwords or any other type of information that might create a
-  potential security risk.
- 
-
-
- See also highlight_string,
+ See also highlight_string and
  highlight_file.
 






[PHP-DOC] cvs: phpdoc-pl /reference/session reference.xml /reference/session/functions session-cache-expire.xml session-cache-limiter.xml session-decode.xml session-destroy.xml session-encode.xml session-get-cookie-params.xml session-id.xml session-is-registered.xml session-module-name.xml session-name.xml session-readonly.xml session-register.xml session-save-path.xml session-set-cookie-params.xml session-set-save-handler.xml session-start.xml session-unregister.xml session-unset.xml session-write-close.xml

2002-05-13 Thread Leszek Krupinski

leszek  Mon May 13 17:10:00 2002 EDT

  Modified files:  
/phpdoc-pl/reference/sessionreference.xml 
/phpdoc-pl/reference/session/functions  session-cache-expire.xml 
session-cache-limiter.xml 
session-decode.xml 
session-destroy.xml 
session-encode.xml 
session-get-cookie-params.xml 
session-id.xml 
session-is-registered.xml 
session-module-name.xml 
session-name.xml 
session-readonly.xml 
session-register.xml 
session-save-path.xml 
session-set-cookie-params.xml 
session-set-save-handler.xml 
session-start.xml 
session-unregister.xml 
session-unset.xml 
session-write-close.xml 
  Log:
  Updated session reference to newest version - 1.2, 1.3
  

Index: phpdoc-pl/reference/session/reference.xml
diff -u phpdoc-pl/reference/session/reference.xml:1.2 
phpdoc-pl/reference/session/reference.xml:1.3
--- phpdoc-pl/reference/session/reference.xml:1.2   Tue Apr 16 20:05:32 2002
+++ phpdoc-pl/reference/session/reference.xml   Mon May 13 17:09:56 2002
@@ -1,5 +1,6 @@
 
-
+
+
  
   Sesje
   Sesje
@@ -13,7 +14,7 @@


 Je¶li jeste¶ zaznajomiony z zarz±dzaniem sesj± w PHPLIB, zauwa¿ysz ¿e
-pewnie koncepcje s± podobne w ob³udze sesji PHP.
+pewnie koncepcje s± podobne w obs³udze sesji PHP.


 Go¶æ wchodz±cy na twoj± stronê WWW otrzymuje unikalny identyfikator, tzw.
@@ -32,7 +33,7 @@

 Wszystkie zarejestrowane zmienne s± serializowane po wykonaniu ca³ego kodu
 strony. Zarejestrowane zmienne, które s± niezdefiniowane, s± zaznaczane
-jako niezdefijiowane. Nie s± one definiowane przez modu³ sesji w
+jako niezdefiniowane. Nie s± one definiowane przez modu³ sesji w
 nastêpuj±cych po sobie wywo³aniach, chyba ¿e u¿ytkownik zdefiniuje je
 pó¼niej.

@@ -51,17 +52,27 @@
  w³±czona.
 

-
+   
+
+ Od wersji PHP 4.1.0 dostêpna jest globalna zmienna
+ $_SESSION, podobnie jak $_POST,
+ $_GET, $_REQUEST i tak dalej. W
+ odró¿nieniu od $HTTP_SESSION_VARS,
+ $_SESSION jest zawsze globalna. W zwi±zku z tym
+ global nie powinno byæ u¿yte do
+ $_SESSION.
+
+   

 Je¶li w³±czona jest opcja track_vars a
 register_globals
 jest wy³±czona, tylko pozycje nale¿±ce do zmiennej asocjacyjnej
-$HTTP_SESSION_VARS mog± byæ zarejestrowane jako zmienne sesyjne.
-Odtworzone zmienne sesyjne bêd± dostêpne tylko w zmiennej
-$HTTP_SESSION_VARS.
-  
+$HTTP_SESSION_VARS mog± byæ zarejestrowane jako
+zmienne sesyjne. Odtworzone zmienne sesyjne bêd± dostêpne tylko w zmiennej
+$HTTP_SESSION_VARS.
+
  
   Rejestracja zmiennej z w³±czon± opcj± track_vars
@@ -69,8 +80,53 @@
  
 
+ 
+
+   
+   
+U¿ycie $_SESSION (lub
+$HTTP_SESSION_VARS dla wersji PHP 4.0.6 i starszych)
+jest wskazane ze wzglêdów bezpieczeñstwa i czytelno¶ci kodu. U¿ywaj±c
+$_SESSION lub $HTTP_SESSION_VARS nie
+ma potrzeby u¿ywaæ funkcji
+session_register()/session_unregister()/session_is_registered().
+U¿ytkownicy mog± uzyskiwaæ dostêp do zmiennych sesyjnych tak jak do
+normalnych zmiennych.
+
+ 
+  Rejestrowanie zmiennych przez $_SESSION
+ 
+ 
+
+ 
+
+
+ 
+  Wyrejestrowywanie zmiennej korzystaj±c z $_SESSION
+ 
+ 
+
  
@@ -81,17 +137,46 @@
 linkend="ini.register-globals">register_globals,
 wszystkie globalne zmienne mog± byæ zarejestrowane jako zmienne sesyjne a
 zmienne sesyjne bêd± odtworzone do odpowiadaj±cych im zmiennych
-globalnych.
-  
+globalnych. Poniewa¿ PHP musi wiedzieæ które globalne zmienne s±
+zarejestrowane jako zmienne sesyjne, u¿ytkownik musi u¿yæ funkcji
+session_register() podczas gdy
+$HTTP_SESSION_VARS/$_SESSION nie
+musz± u¿ywaæ session_register().
+
+ 
+  Je¶li u¿ywane s± tablice
+  $HTTP_SESSION_VARS/$_SESSION i
+  i wy³±czona jest opcja register_globals,
+  nie powinno siê u¿ywaæ session_register,
+  session_is_registered i
+  session_unregister.
+ 
+ 
+  Je¶li w³±czona zostanie opcja register_globals,
+  powinno siê u¿ywaæ session_unregister poniew

[PHP-DOC] cvs: phpdoc-de /reference/dbx reference.xml /reference/dbx/functions dbx-connect.xml

2002-05-13 Thread Thomas Schoefbeck

tom Mon May 13 15:51:57 2002 EDT

  Modified files:  
/phpdoc-de/reference/dbxreference.xml 
/phpdoc-de/reference/dbx/functions  dbx-connect.xml 
  Log:
  sync to en
  
Index: phpdoc-de/reference/dbx/reference.xml
diff -u phpdoc-de/reference/dbx/reference.xml:1.4 
phpdoc-de/reference/dbx/reference.xml:1.5
--- phpdoc-de/reference/dbx/reference.xml:1.4   Thu May  2 17:18:53 2002
+++ phpdoc-de/reference/dbx/reference.xml   Mon May 13 15:51:48 2002
@@ -1,5 +1,5 @@
 
-
+
 
  
   dbx Funktionen
@@ -52,7 +52,7 @@
   
   

-Sybase-CT (nur CVS).
+Sybase-CT (verfügbar ab PHP 4.2.0).

   
  
Index: phpdoc-de/reference/dbx/functions/dbx-connect.xml
diff -u phpdoc-de/reference/dbx/functions/dbx-connect.xml:1.2 
phpdoc-de/reference/dbx/functions/dbx-connect.xml:1.3
--- phpdoc-de/reference/dbx/functions/dbx-connect.xml:1.2   Wed Apr 17 02:53:07 
2002
+++ phpdoc-de/reference/dbx/functions/dbx-connect.xml   Mon May 13 15:51:54 2002
@@ -1,8 +1,5 @@
 
-
-
-
-
+
   

 dbx_connect
@@ -63,7 +60,7 @@
   
   

-DBX_SYBASECT oder "sybase_ct" (nur CVS)
+DBX_SYBASECT oder "sybase_ct" (seit PHP 4.2.0 verfügbar)

   
  





[PHP-DOC] cvs: phpdoc-de /reference/array reference.xml /reference/array/functions array-change-key-case.xml array-chunk.xml array-count-values.xml array-diff.xml array-fill.xml array-filter.xml array-flip.xml array-intersect.xml array-key-exists.xml array-keys.xml array-map.xml array-merge-recursive.xml array-merge.xml array-multisort.xml array-pad.xml array-pop.xml array-push.xml array-rand.xml array-reduce.xml array-reverse.xml array-search.xml array-shift.xml array-slice.xml array-splice.xml array-sum.xml array-unique.xml array-unshift.xml array-values.xml array-walk.xml array.xml arsort.xml asort.xml compact.xml count.xml current.xml each.xml end.xml extract.xml in-array.xml key.xml krsort.xml ksort.xml list.xml natcasesort.xml natsort.xml next.xml pos.xml prev.xml range.xml reset.xml rsort.xml shuffle.xml sizeof.xml sort.xml uasort.xml uksort.xml usort.xml

2002-05-13 Thread Thomas Schoefbeck

tom Mon May 13 15:41:36 2002 EDT

  Modified files:  
/phpdoc-de/reference/array  reference.xml 
/phpdoc-de/reference/array/functionsarray-change-key-case.xml 
array-chunk.xml 
array-count-values.xml 
array-diff.xml array-fill.xml 
array-filter.xml 
array-flip.xml 
array-intersect.xml 
array-key-exists.xml 
array-keys.xml array-map.xml 
array-merge-recursive.xml 
array-merge.xml 
array-multisort.xml 
array-pad.xml array-pop.xml 
array-push.xml array-rand.xml 
array-reduce.xml 
array-reverse.xml 
array-search.xml 
array-shift.xml 
array-slice.xml 
array-splice.xml array-sum.xml 
array-unique.xml 
array-unshift.xml 
array-values.xml 
array-walk.xml array.xml 
arsort.xml asort.xml 
compact.xml count.xml 
current.xml each.xml end.xml 
extract.xml in-array.xml 
key.xml krsort.xml ksort.xml 
list.xml natcasesort.xml 
natsort.xml next.xml pos.xml 
prev.xml range.xml reset.xml 
rsort.xml shuffle.xml 
sizeof.xml sort.xml uasort.xml 
uksort.xml usort.xml 
  Log:
  sync rev-comments
  

Index: phpdoc-de/reference/array/reference.xml
diff -u phpdoc-de/reference/array/reference.xml:1.3 
phpdoc-de/reference/array/reference.xml:1.4
--- phpdoc-de/reference/array/reference.xml:1.3 Sun Apr 28 05:18:02 2002
+++ phpdoc-de/reference/array/reference.xml Mon May 13 15:41:33 2002
@@ -1,5 +1,5 @@
 
-
+
  
   Array Funktionen
   Arrays
Index: phpdoc-de/reference/array/functions/array-change-key-case.xml
diff -u phpdoc-de/reference/array/functions/array-change-key-case.xml:1.2 
phpdoc-de/reference/array/functions/array-change-key-case.xml:1.3
--- phpdoc-de/reference/array/functions/array-change-key-case.xml:1.2   Wed Apr 17 
02:53:00 2002
+++ phpdoc-de/reference/array/functions/array-change-key-case.xml   Mon May 13 
+15:41:34 2002
@@ -1,8 +1,5 @@
 
-
-
-
-
+
   

 array_change_key_case
Index: phpdoc-de/reference/array/functions/array-chunk.xml
diff -u phpdoc-de/reference/array/functions/array-chunk.xml:1.2 
phpdoc-de/reference/array/functions/array-chunk.xml:1.3
--- phpdoc-de/reference/array/functions/array-chunk.xml:1.2 Wed Apr 17 02:53:00 
2002
+++ phpdoc-de/reference/array/functions/array-chunk.xml Mon May 13 15:41:34 2002
@@ -1,8 +1,5 @@
 
-
-
-
-
+
   

 array_chunk
Index: phpdoc-de/reference/array/functions/array-count-values.xml
diff -u phpdoc-de/reference/array/functions/array-count-values.xml:1.2 
phpdoc-de/reference/array/functions/array-count-values.xml:1.3
--- phpdoc-de/reference/array/functions/array-count-values.xml:1.2  Wed Apr 17 
02:53:00 2002
+++ phpdoc-de/reference/array/functions/array-count-values.xml  Mon May 13 15:41:34 
+2002
@@ -1,8 +1,5 @@
 
-
-
-
-
+
   

 array_count_values
Index: phpdoc-de/reference/array/functions/array-diff.xml
diff -u phpdoc-de/reference/array/functions/array-diff.xml:1.2 
phpdoc-de/reference/array/functions/array-diff.xml:1.3
--- phpdoc-de/reference/array/functions/array-diff.xml:1.2  Wed Apr 17 02:53:00 
2002
+++ phpdoc-de/reference/array/functions/array-diff.xml  Mon May 13 15:41:34 2002
@@ -1,8 +1,5 @@
 
-
-
-
-
+
   

 array_diff
Index: phpdoc-de/reference/array/functions/array-fill.xml
diff -u phpdoc-de/reference/array/functions/array-fill.xml:1.2 
phpdoc-de/reference/array/functions/array-fill.xml:1.3
--- phpdoc-de/reference/array/functions/array-fill.xml:1.2  Wed Apr 17 02:53:00 

[PHP-DOC] cvs: phpdoc /en/reference/misc/functions usleep.xml

2002-05-13 Thread Philip Olson

philip  Mon May 13 15:29:42 2002 EDT

  Modified files:  
/phpdoc/en/reference/misc/functions usleep.xml 
  Log:
  See also: set_time_limit().  Added: A microsecond is one millionth of a second.
  
  
Index: phpdoc/en/reference/misc/functions/usleep.xml
diff -u phpdoc/en/reference/misc/functions/usleep.xml:1.2 
phpdoc/en/reference/misc/functions/usleep.xml:1.3
--- phpdoc/en/reference/misc/functions/usleep.xml:1.2   Wed Apr 17 02:40:43 2002
+++ phpdoc/en/reference/misc/functions/usleep.xml   Mon May 13 15:29:40 2002
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -14,10 +14,12 @@
  
 
  The usleep function delays program execution
- for the given number of micro_seconds.
+ for the given number of micro_seconds.  A 
+ microsecond is one millionth of a second.
 
 
- See also sleep.
+ See also sleep and 
+ set_time_limit.
 
 
  





[PHP-DOC] cvs: phpdoc /en/reference/misc/functions sleep.xml

2002-05-13 Thread Philip Olson

philip  Mon May 13 15:18:24 2002 EDT

  Modified files:  
/phpdoc/en/reference/misc/functions sleep.xml 
  Log:
  See also: set_time_limit()
  
  
Index: phpdoc/en/reference/misc/functions/sleep.xml
diff -u phpdoc/en/reference/misc/functions/sleep.xml:1.2 
phpdoc/en/reference/misc/functions/sleep.xml:1.3
--- phpdoc/en/reference/misc/functions/sleep.xml:1.2Wed Apr 17 02:40:43 2002
+++ phpdoc/en/reference/misc/functions/sleep.xmlMon May 13 15:18:23 2002
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -17,7 +17,8 @@
  of seconds.
 
 
- See also usleep.
+ See also usleep and
+ set_time_limit
 

   





[PHP-DOC] Re: Php kezikonyv

2002-05-13 Thread Csaba2000

The person in the post is asking whether it is possible to download as a
single file
the Hungarian manual found at the address below?  He adds that this would be
important to him because he would be able to read it much more easily in
printed form.

  Csaba


"Jesus M. Castagnetto" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Got this email today, but I do not know Hungarian.
> Forwarding it to the list in case it is
> important/useful.
>
> --- Csipkar Nandor <[EMAIL PROTECTED]> wrote:
> > From: "Csipkar Nandor" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Subject: Php kezikonyv
> > Date: Sun, 5 May 2002 21:58:55 +0300
> >
> > Tisztelt cim!
> >
> > Volna egy kerdesem, a php kezikonyvet (ami a
> > http://php.unam.mx/manual/hu/index.php -n talalhato)
> > egy file-ban nem lehet letolteni?
> > A keres azert lenne annyira fontos, mert kinyomtatva
> > sokkal konnyebben at tudnam olvasni.
> >
> > Koszonettel
> > Csipkar Nandor
> >
>
>
> =
> --- Jesus M. Castagnetto <[EMAIL PROTECTED]>






[PHP-DOC] phpdoc: bz2|tar.gz|zip

2002-05-13 Thread Philip Olson

Hello,
Didn't most agree to make the manual available in 
.tar.gz and perhaps .bz2 also?

Regards,
Philip Olson





Re: [PHP-DOC] Revcheck does not work

2002-05-13 Thread Mark Kronsbein

> Erm, I think it would be better to add that sample php.ini
> recommended by Thomas [as far as I can remember], and use
> it specified from command line.

+1 for that

Mark

-- 
German Gabber Network @ http://www.gabber.de
Infos und Tips zu PHP http://www.php-homepage.de





[PHP-DOC] cvs: phpdoc /en/reference/filesystem/functions touch.xml

2002-05-13 Thread Markus Fischer

mfischerMon May 13 14:39:49 2002 EDT

  Modified files:  
/phpdoc/en/reference/filesystem/functions   touch.xml 
  Log:
  - Document third parameter
  
Index: phpdoc/en/reference/filesystem/functions/touch.xml
diff -u phpdoc/en/reference/filesystem/functions/touch.xml:1.2 
phpdoc/en/reference/filesystem/functions/touch.xml:1.3
--- phpdoc/en/reference/filesystem/functions/touch.xml:1.2  Wed Apr 17 02:38:10 
2002
+++ phpdoc/en/reference/filesystem/functions/touch.xml  Mon May 13 14:39:48 2002
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -12,12 +12,15 @@
   inttouch
   stringfilename
   inttime
+  intatime
  
 
  Attempts to set the access and modification time of the file named by
  filename to the value given by time. If the option time 
is not
  given, uses the present time. This is equivalent to what utime
- (sometimes referred to as utimes) does.
+ (sometimes referred to as utimes) does. If the third option
+ atime is present, the access time of the given
+ filename is also modified.
 
 
  If the file does not exist, it is created.





[PHP-DOC] Bug #17182 Updated: dbx - sybase-ct support no longer cvs only

2002-05-13 Thread sander

 ID:  17182
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
-Status:  Open
+Status:  Closed
 Bug Type:Documentation problem
 PHP Version: 4.2.0
 New Comment:

This bug has been fixed in CVS. You can grab a snapshot of the
CVS version at http://snaps.php.net/. In case this was a documentation 
problem, the fix will show up soon at http://www.php.net/manual/. 
Thank you for the report, and for helping us make PHP better.


Previous Comments:


[2002-05-13 11:03:35] [EMAIL PROTECTED]

Hi,

The docs for dbx incorrectly list that Sybase-CT support is CVS only,
while in fact it is available since 4.2.0.

This is listed both on the main dbx page and the dbx_connect page.

Thanks, Marc.




-- 
Edit this bug report at http://bugs.php.net/?id=17182&edit=1




[PHP-DOC] cvs: phpdoc /en/reference/dbx reference.xml /en/reference/dbx/functions dbx-connect.xml

2002-05-13 Thread Sander Roobol

sander  Mon May 13 11:31:24 2002 EDT

  Modified files:  
/phpdoc/en/reference/dbxreference.xml 
/phpdoc/en/reference/dbx/functions  dbx-connect.xml 
  Log:
  sybase_ct support is in 4.2.0
  
  
Index: phpdoc/en/reference/dbx/reference.xml
diff -u phpdoc/en/reference/dbx/reference.xml:1.3 
phpdoc/en/reference/dbx/reference.xml:1.4
--- phpdoc/en/reference/dbx/reference.xml:1.3   Mon Apr 29 08:09:16 2002
+++ phpdoc/en/reference/dbx/reference.xml   Mon May 13 11:31:23 2002
@@ -1,5 +1,5 @@
 
-
+
 
 
\ No newline at end of file
+-->
Index: phpdoc/en/reference/dbx/functions/dbx-connect.xml
diff -u phpdoc/en/reference/dbx/functions/dbx-connect.xml:1.2 
phpdoc/en/reference/dbx/functions/dbx-connect.xml:1.3
--- phpdoc/en/reference/dbx/functions/dbx-connect.xml:1.2   Wed Apr 17 02:37:31 
2002
+++ phpdoc/en/reference/dbx/functions/dbx-connect.xml   Mon May 13 11:31:24 2002
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -60,7 +60,8 @@
   
   

-DBX_SYBASECT or "sybase_ct" (CVS only)
+DBX_SYBASECT or "sybase_ct" (available from PHP
+4.2.0)

   
  





[PHP-DOC] Bug #17182: dbx - sybase-ct support no longer cvs only

2002-05-13 Thread m . boeren

From: [EMAIL PROTECTED]
Operating system: 
PHP version:  4.2.0
PHP Bug Type: Documentation problem
Bug description:  dbx - sybase-ct support no longer cvs only

Hi,

The docs for dbx incorrectly list that Sybase-CT support is CVS only,
while in fact it is available since 4.2.0.

This is listed both on the main dbx page and the dbx_connect page.

Thanks, Marc.
-- 
Edit bug report at http://bugs.php.net/?id=17182&edit=1
-- 
Fixed in CVS:http://bugs.php.net/fix.php?id=17182&r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=17182&r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=17182&r=needtrace
Try newer version:   http://bugs.php.net/fix.php?id=17182&r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=17182&r=support
Expected behavior:   http://bugs.php.net/fix.php?id=17182&r=notwrong
Not enough info: http://bugs.php.net/fix.php?id=17182&r=notenoughinfo
Submitted twice: http://bugs.php.net/fix.php?id=17182&r=submittedtwice
register_globals:http://bugs.php.net/fix.php?id=17182&r=globals