php中可以通过file_get_contents()函数将文件一次性读取到字符串中
<?php $file = file_get_contents("/tmp/file.txt"); print("Size of the file: ".strlen($file)."\n"); ?>
输出结果如下
Size of the file: 7362
php中可以通过file_get_contents()函数将文件一次性读取到字符串中
<?php $file = file_get_contents("/tmp/file.txt"); print("Size of the file: ".strlen($file)."\n"); ?>
输出结果如下
Size of the file: 7362