📜  PHP | SplFileObject fgetss()函数

📅  最后修改于: 2022-05-13 01:56:39.998000             🧑  作者: Mango

PHP | SplFileObject fgetss()函数

SplFileObject::fgetss()函数是PHP中标准PHP库 (SPL) 的内置函数,用于从文件中获取行并去除 HTML 标记。
句法:

string SplFileObject::fgetss( $tags)

参数:这个函数只接受一个参数$tags一个可选参数来指定不应该被剥离的标签。
返回值:此函数返回带有 HTML 和PHP代码的文件的下一行,否则返回 FALSE。
下面的程序说明了PHP中的 SplFileObject::fgetss()函数。
方案一:

php

 

Welcome To GeeksforGeeks!

    Text out of the HTML block. EOD;     file_put_contents("gfg.txt", $gfg);     $file = new SplFileObject("gfg.txt"); while (!$file->eof()) {     echo $file->fgetss(); } ?>


php

 

Welcome To GeeksforGeeks!

      Text out of the HTML block. EOD;     file_put_contents(__FILE__, $gfg);     $file = new SplFileObject(__FILE__); while (!$file->eof()) {     echo $file->fgetss(); } ?>



输出:

Welcome To GeeksforGeeks! Text out of the HTML block.

方案二:

PHP


 

Welcome To GeeksforGeeks!

      Text out of the HTML block. EOD;     file_put_contents(__FILE__, $gfg);     $file = new SplFileObject(__FILE__); while (!$file->eof()) {     echo $file->fgetss(); } ?>

输出:

Welcome To GeeksforGeeks! Text out of the HTML block.

参考: http: PHP。 PHP