[PHP] ereg_replace to preg_replace translation

2009-08-11 Thread m a r k u s

Hi all,

I see that from PHP 5.3.0 ereg_replace() function is deprecated and throws a 
warning.
I would like to use the preg_replace() function as an alternative of ereg_replace() function but... 
can't undestand the \n#[^\n]*\n expression.


$sql = ereg_replace(\n#[^\n]*\n, , $sql);

Any help for tranlation or alternative ?
Thanks

--
m a r k u s

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Extract result from a https remote server response

2009-02-13 Thread m a r k u s

Shawn McKenzie wrote:

m a r k u s wrote:

Hi all,

Example : 
https://www.moneybookers.com/app/email_check.pl?email=t...@toto.comcust_id=123546password=123

The MB server response displayed is : Illegal operation.
We would like to put the result below in a php variable and process it .
An idea ?

PS: The server is secured. The php functions like file(), 
file_get_contents(), readfile(), fopen() has been tested.

Regards

--

m a r  k u s




Well, I don't know how you tested, but if fopen_wrappers are enabled in
php.ini, then this:

echo
file_get_contents('https://www.moneybookers.com/app/email_check.pl?email=t...@toto.comcust_id=123546password=123');

displays this:

Illegal operation


Seems to work for me.



The question is how to extract what is displayed to be processed by our script ?

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Extract result from a https remote server response

2009-02-13 Thread m a r k u s

Shawn McKenzie wrote:

Shawn McKenzie wrote:

m a r k u s wrote:

Hi all,

Example : 
https://www.moneybookers.com/app/email_check.pl?email=t...@toto.comcust_id=123546password=123

The MB server response displayed is : Illegal operation.
We would like to put the result below in a php variable and process it .
An idea ?

PS: The server is secured. The php functions like file(), 
file_get_contents(), readfile(), fopen() has been tested.

Regards

--

m a r  k u s




allow_url_fopen = On



We have no control of the MB remote server configuration.

--
m a r k u s

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: Extract result from a https remote server response

2009-02-13 Thread m a r k u s

Sorry all, I was testing in a Windows environment.
I feel like an idiot... :)

Thanks to all.

--
m a r k u s

Bruno Fajardo wrote:

Assigning the return of file_get_contents to a variable?
Didn't get your point...

2009/2/13 m a r k u s queribus2...@hotmail.com

Shawn McKenzie wrote:

Shawn McKenzie wrote:

m a r k u s wrote:

Hi all,

Example : 
https://www.moneybookers.com/app/email_check.pl?email=t...@toto.comcust_id=123546password=123
The MB server response displayed is : Illegal operation.
We would like to put the result below in a php variable and process it .
An idea ?

PS: The server is secured. The php functions like file(), file_get_contents(), 
readfile(), fopen() has been tested.
Regards

--

m a r  k u s



allow_url_fopen = On


We have no control of the MB remote server configuration.

--
m a r k u s

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Extract result from a https remote server response

2009-02-12 Thread m a r k u s

Hi all,

Example :
https://www.moneybookers.com/app/email_check.pl?email=t...@toto.comcust_id=123546password=123
The MB server response displayed is : Illegal operation.
We would like to put the result below in a php variable and process it .
An idea ?

PS: The server is secured. The php functions like file(),
file_get_contents(), readfile(), fopen() has been tested.

Thanks,
Markus

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php