SplFileObject::fgetss
(PHP 5 >= 5.1.0)
SplFileObject::fgetss — Gets line from file and strip HTML tags
설명
public string SplFileObject::fgetss
([ string $allowable_tags
] )
Identical to SplFileObject::fgets(), except that SplFileObject::fgetss() attempts to strip any HTML and PHP tags from the text it reads.
인수
- allowable_tags
-
You can use the optional third parameter to specify tags which should not be stripped.
반환값
Returns a string containing the next line of the file with HTML and PHP code stripped, or FALSE on error.
예제
Example #1 SplFileObject::fgetss() example
<?php
$str = <<<EOD
<html><body>
<p>Welcome! Today is the <?php echo(date('jS')); ?> of <?= date('F'); ?>.</p>
</body></html>
Text outside of the HTML block.
EOD;
file_put_contents("sample.php", $str);
$file = new SplFileObject("sample.php");
while (!$file->eof()) {
echo $file->fgetss();
}
?>
위 예제의 출력 예시:
Welcome! Today is the of . Text outside of the HTML block.
참고
- fgetss() - Gets line from file pointer and strip HTML tags
- SplFileObject::fgets() - Gets line from file
- SplFileObject::fgetc() - Gets character from file
- SplFileObject::current() - Retrieve current line of file
There are no user contributed notes for this page.
