私はPHPをいじっているところですが、そのようなことが可能かどうか知りたいです。
もしそうなら、サンプルコードを提供していただけますか?
更新:つまり、URI自体ではなく、URIにある可能性のあるファイルをエンコードしたいということです。よくわからない場合は申し訳ありません。
なぜだかわかりません...
<?php $file = file_get_contents("http://example.com/myfile.txt");
$encoded = base64_encode($file);
あなたが置くことができます:
base64_encode(file_get_contents('http://www.google.com'));
file_get_contents関数は指定されたURLのHTMLを取得し、 base64_encode関数はそれをエンコードします。
<?php
$content = file_get_contents("http://google.com");
$encodedContent = base64_encode($content);
?>
URLをbase64エンコードしますか?単純...
base64_encode($uri)