php4.4
file_get_contentsの引数なのですが下記Basic認証file_get_contentsするソースで
Warning: file_get_contents() expects at most 2 parameters, 3 given in /path/to/hoge.php on line 23
とエラーが表示されます。
http://jp.php.net/manual/ja/function.file-get-contents.php
を見ると4と5でストリームコンテキスト?の可否があるようなのですが、4.4上で下記の代替え方法はありますでしょうか?


$params = "status=". rawurlencode($message);

$result = file_get_contents($url.$params , false, stream_context_create(array(
"http" => array(
"method" => "POST",
"header" => "Authorization: Basic ". base64_encode($username. ":". $password)
)