第 47 章 Miscellaneous
目录 47.1. php function check 47.2. whois 域名查询 47.3. 身份证校验 47.4. PHP PDF 处理库 47.5. Kint - a modern and powerful PHP debugging helper 47.6. snoopy 模拟浏览器操作 47.7. PHP Nightrain 47.1.php function check #!/bin/bash LOGFILE=/tmp/my.log echo > $LOGFILE for helper in `ls -1 class/helper/` do echo ========================== $helper ============================ >> $LOGFILE class=`grep '^class' class/helper/$helper | awk -F ' ' '{print $2}'` for fun in `grep 'public function [a-zA-Z]' class/helper/$...