ÿ�������������������ְ�ʾ�����������������õ� PHP �ַ�����������Ϊ���Ӧ������ָ���������ĸ�����Ϣ����ο��ú������ֲ�ҳ��
string.rot13���� PHP 4.3.0 ��ʹ�ô˹�������ͬ���� str_rot13()�����������е������ݡ�
Example #1 string.rot13
<?php
$fp = fopen('php://output', 'w');
stream_filter_append($fp, 'string.rot13');
fwrite($fp, "This is a test.\n");
/* Outputs: Guvf vf n grfg. */
?>
string.toupper���� PHP 5.0.0 ��ʹ�ô˹�������ͬ���� strtoupper()�����������е������ݡ�
Example #2 string.toupper
<?php
$fp = fopen('php://output', 'w');
stream_filter_append($fp, 'string.toupper');
fwrite($fp, "This is a test.\n");
/* Outputs: THIS IS A TEST. */
?>
string.tolower���� PHP 5.0.0 ��ʹ�ô˹�������ͬ���� strtolower()�����������е������ݡ�
Example #3 string.tolower
<?php
$fp = fopen('php://output', 'w');
stream_filter_append($fp, 'string.tolower');
fwrite($fp, "This is a test.\n");
/* Outputs: this is a test. */
?>
string.strip_tags���� PHP 5.0.0 ��ʹ�ô˹�������ͬ���� strip_tags()�����������е������ݡ����������ָ�ʽ���ղ�����һ���Ǻ� strip_tags()�����ڶ����������Ƶ�һ�������б���б���ַ�����һ����һ�������б���������顣
Example #4 string.strip_tags
<?php
$fp = fopen('php://output', 'w');
stream_filter_append($fp, 'string.strip_tags', STREAM_FILTER_WRITE, "<b><i><u>");
fwrite($fp, "<b>bolded text</b> enlarged to a <h1>level 1 heading</h1>\n");
fclose($fp);
/* Outputs: <b>bolded text</b> enlarged to a level 1 heading */
$fp = fopen('php://output', 'w');
stream_filter_append($fp, 'string.strip_tags', STREAM_FILTER_WRITE, array('b','i','u'));
fwrite($fp, "<b>bolded text</b> enlarged to a <h1>level 1 heading</h1>\n");
fclose($fp);
/* Outputs: <b>bolded text</b> enlarged to a level 1 heading */
?>