摘要:
最近在学习curl,下来用php模拟提交美团网的反馈页面页面地址:http://www.meituan.com/feedback/default/搜索form 查看post接收地址即是http://www.meituan.com/feedback/default/再搜索name得到form里要填的内容反馈类型type 反馈内容content 联系方式email,这是我们要提交的最终代码$post_string = array( 'type'=>1, 'content'=>'this is test content', 'ema 阅读全文
摘要:
一、用thinkphp中提供的扩展类库需要结合QQwry纯真IP数据库 下载地址:http://www.crsky.com/soft/2611.html,是一个qqwry.dat文件View Code 1 9 */ 10 class IpLocation { 11 /** 12 * QQWry.Dat文件指针 13 * 14 * @var resource 15 */ 16 private $fp; 17 18 /** 19 * 第一条IP记录的偏移地址 20 * 21 * @var in... 阅读全文
摘要:
__autoload()实现类的自动加载好处:避免每个php脚本开头include或require一堆类文件使用:__autoload()传入类名当实例化对象,会自动引入类例子index.php 入口文件 MyClass1.php被自动引入的类文件index.phpfunction __autoload($class_name) { $classFile = $class_name.'.php'; if(is_file($classFile) && file_exists($classFile)){ require_once $classFile; ... 阅读全文