Skip to content

Instantly share code, notes, and snippets.

@i556
Created June 5, 2012 02:32
Show Gist options
  • Save i556/2872164 to your computer and use it in GitHub Desktop.
Save i556/2872164 to your computer and use it in GitHub Desktop.
count the number of all PHP functions
<?php
$cnt = 0;
$page = file_get_contents('http://jp.php.net/manual/ja/indexes.functions.php');
$c = preg_match_all("(href=\"function.)", $page, $match, PREG_PATTERN_ORDER);
echo $c;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment