Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
によって与えられた結果の先頭にテキストの文字列を追加することを知りたいです
file_get_contents
私の場合
$file = file_get_contents($url);
あなたはこのようにすることができます-
$file = "Some text content".file_get_contents($url);