[PHP] Copy question

2002-12-05 Thread Evandro Sestrem
Hi, Can I use the copy function to copy a file to a remote computer? Ex: // copy a file from my computer to a remote computer copy('c:\teste.txt', '200.xxx.xx.xx/temp/teste.txt') How can I do it? Thanks in advance, Evandro Sestrem -- PHP General Mailing List (htt

[PHP] XML-RPC problem

2003-06-10 Thread Evandro Sestrem
cidade Blumenau estado SC Thanks for any help. Eva

[PHP] What XML-RPC implementation should I use?

2003-06-11 Thread Evandro Sestrem
Thanks for any help. Evandro Sestrem evandro at blueone dot com dot br -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP and XML-RPC on MS Windows

2003-06-12 Thread Evandro Sestrem
Erich, Yes, it's possible to do the same. What XML-RPC implementation to PHP are you using? Evandro Sestrem "Erich Kolb" <[EMAIL PROTECTED]> escreveu na mensagem news:[EMAIL PROTECTED] > What do I have to do in order to use the XML-RPC functionality on a Windows

[PHP] Temp dir

2002-10-11 Thread Evandro Sestrem
Sorry if is a newbie question... but how I discover where is the php temp dir? Thanks!! Evandro Sestrem -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Temp dir

2002-10-11 Thread Evandro Sestrem
Discover in my code.. Ex: I want create a file in the php temp dir. $tempdir = getPHPTempDir(); fopen($tempdir . "test.txt", w+); "Evandro Sestrem" <[EMAIL PROTECTED]> escreveu na mensagem [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > Sorry if

[PHP] array - change elements position

2002-04-25 Thread Evandro Sestrem
Hello, Has a automatic way to change the position from 2 elements of a array without use a aux variable? Like that: A = (1,3,2) --> A = (1, 2, 3) Thanks, Evandro -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: array - change elements position

2002-04-25 Thread Evandro Sestrem
My example wasn't good. I have a array of objects and want change its positions. $array = (obj2, obj1, obj3) --> $array = (obj1, obj2, obj3). Like TStringList.Exchange in Delphi. Sort() don't work in this case, because I want sort based in a attribute of the object. Evand

Re: [PHP] Re: array - change elements position

2002-04-25 Thread Evandro Sestrem
This is what I was looking for! Thank you very much. "Miguel Cruz" <[EMAIL PROTECTED]> escreveu na mensagem [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Thu, 25 Apr 2002, Evandro Sestrem wrote: > > My example wasn't good. > > > > I hav

[PHP] EPP server - TLS conection

2008-12-22 Thread Evandro Sestrem
Hello, I'm trying to connect in a EPP server (TLS), but I'm getting the message: Warning: stream_socket_client() [function.stream-socket-client]: SSL operation failed with code 1. OpenSSL Error messages: error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure in testepp.php on l

[PHP] OpenSSL: how connect?

2009-01-08 Thread Evandro Sestrem
Hello, In PHP, how is the right way to do a connection using OpenSSL like: openssl s_client -tls1 -connect beta.registro.br:700 -cert client.pem Thanks in advance, Evandro