Hey.
I don't know why, but this problem is visible only on PHP of unix hosting and not on hosting of Win.
When I pass a variable in a class, I am finding a error of type: "Invalid error type specified ". This is the relative code:
$url_root="www.google.com";
$http_client = new http( HTTP_V11, false );
$http_client->host = $url_root;
But, if I pass in direct mode the content of variable $url_root to the class , I haven't more error and all is perfect.
Code of exemple without error is:
$http_client = new http( HTTP_V11, false );
$http_client->host = 'www.google.com';
How can I do?
Very Thanks!!