Strings & Patterns Learning Mode

Consider the following script. Assuming that http://www.php.net can be successfully read, what will it output?

<?php
$s = file_get_contents ("http://www.php.net");
strip_tags ($s, array ('p'));
echo count ($s);
?>