PHP - Funzione fgetss ()
La funzione fgetss () può restituire una riga con tag HTML e PHP rimossi da un file aperto. Questa funzione può interrompere la restituzione su una nuova riga alla lunghezza specificata o EOF, a seconda di quale si verifica prima e restituire false in caso di errore.
Sintassi
string fgetss ( resource $handle [, int $length [, string $allowable_tags ]] )
Questa funzione è simile alla funzione fgets () tranne per il fatto che la funzione fgetss () può tentare di rimuovere qualsiasi tag HTML e PHP dal testo che legge.
Esempio 1
<?php
$handle = @fopen("/PhpProject/test.php", "r");
if ($handle) { while (!feof($handle)) {
$buffer = fgetss($handle, 4096);
echo $buffer; } fclose($handle);
}
?>
Produzione
Welcome to Tutorialspoint
Esempio-2
<?php
$handle = @fopen("/PhpProject/test.php", "r"); if ($handle) {
while (!feof($handle)) { $buffer = fgetss($handle, 4096, ", "); echo $buffer; } fclose($handle); } ?>
Output
Welcome to Tutorialspoint