php生成文本文件

    技术2022-05-19  22

           $license_1200="xxxxxxxxx";

           $fp=fopen("license_1200.txt","w"); //打开当前目录下的license_1200.txt,w:可写,没有则生成license_1200.txt        fwrite($fp,$license_1200); //将  $license_1200写入文件


    最新回复(0)