travisr (owner)

Revisions

gist: 216944 Download_button fork
public
Public Clone URL: git://gist.github.com/216944.git
Embed All Files: show embed
Bash #
1
2
3
4
5
6
7
8
9
phpargs() {
    curl -s http://us3.php.net/$1 | \
    sed -n '/<div class="methodsynopsis dc-description">/,/<\/div>/p' | \
    sed 's/<[^>]*>//g' | tr -d "\n"
    echo
}
 
# phpargs strpos returns
# int strpos ( string $haystack , mixed $needle [, int $offset = 0 ] )