php
roosterhpf
相信自己一定可以成功!!!
展开
-
第一个php小程序(学习)
<?php$b=array("name"=>2,"id"=>4);print_r(($b));echo $b['name'];$a=1;while ( $a<= 10) { echo $a,""; $a++;}echo count($b),"";echo is_array($b);?>原创 2014-11-12 18:25:14 · 4534 阅读 · 0 评论 -
php时间的修改
<?phpecho "今天:",date("Y-m-d",time()),""; echo "今天:",date("Y-m-d",strtotime("18 june 2008")),""; echo "昨天:",date("Y-m-d",strtotime("-1 day")), ""; echo "明天:",date("Y-m-d",strtotime("+1原创 2015-03-10 11:01:58 · 738 阅读 · 0 评论 -
今天所遇到的一些问题
今天我继续前两天的抓包任务,刚开始遇到了URL中出现中文的问题,我不知道如何去解决,于是问了一下同组的师兄,他告诉我说把中文的编码给变一下,于是我就去将文字的编码给改变了,通过网上的文字编码转换器把文字的编码给换了一下,结果还是不行。于是他就告诉我让他先试试最后他终于解出来了,用php直接把中文的编码给换一下php -r 'echo urlencode(iconv("utf-8","G原创 2015-03-09 15:15:30 · 881 阅读 · 0 评论 -
PHP正则表达式的匹配
今天主要的任务就是对新闻、研究报告等咨询的最近上传时间和本地的时间进行对比,比较一下是否超过1个小时,然后我对此进行了php的编程刚开始,我本来以为主页中就有所需要处理的文字的信息,但是我找了好久就是没有发现所要查找的文字的信息,刚开始的时候我并没有发现然后一直在那傻傻地用正则表达式处理html的源代码,后来我发现原来是我自己的问题,原来html源代码中并不包含新闻的代码。然后我就用chrom原创 2015-03-05 17:40:40 · 1264 阅读 · 0 评论 -
互相影响的选择
modelspublic function getLists($company_id = ''){ $companye_model = Company::model()->findByPk($company_id); if($companye_model){ $model = $this->model()->findAll(array( 'condition' =>原创 2014-12-15 00:41:04 · 1025 阅读 · 0 评论 -
修改element.style 的css样式
有时候没有设置css但是会自动出现css,使我们调整css不好调可以在你要强制改变的css后加 ! important即可强制更改原创 2014-12-11 11:12:56 · 9144 阅读 · 0 评论 -
php基本的验证码
<?php/* * Created on 2014-12-8 * * Tge the templats erated file go to * indow - Prefer- P Code Templates */ session_start();$rand='';/*设置字符*/ for($i=0;$i<4;$i++){ $rand.=dechex(rand(1,15)原创 2014-12-08 19:09:42 · 694 阅读 · 0 评论 -
php封装mysql操作类
<?php class mysql{ private $host; private $name; private $pass; private $table; private $ut; function __construct($host,$name,$pass,$table,$ut){ $this->host原创 2014-12-07 21:33:06 · 1866 阅读 · 1 评论 -
smarty配置文件
<?php include_once("smarty/Smarty.class.php"); $smarty=new Smarty(); $smarty->caching=true;/*开启缓存*/ $smarty->template_dir="./templates";/*缓存的路径*/ $smarty->compile_dir="./templates_c";/*编译的目录原创 2014-12-07 22:11:25 · 779 阅读 · 0 评论 -
操作private变量的值
操作private变量的值class new(){ function __get($name){ return $this->name; } function __set($name,$value){ $this->name=$this->value; }}原创 2014-12-04 14:50:57 · 768 阅读 · 0 评论 -
php下载文件函数
<?phpfunction download($file_url,$new_name=''){ if(!isset($file_url)||trim($file_url)==''){ return '500'; } if(!file_exists($file_url)){ //检查文件是否存在 return '404'; } $file_name=basename($file_原创 2014-12-03 17:04:30 · 5236 阅读 · 0 评论 -
php操作读取数据库数据基本代码
$sqlnewfile="select `title`,`summery`,`id`,`uptime` from data_upfile where pid=0 order by uptime desc limit 0,5";$querynewfile=mysql_query($sqlnewfile);$rowfile=array();while($rownewfile=mysql_fetc原创 2014-12-03 17:08:34 · 1214 阅读 · 0 评论 -
昨晚碰到的一个bug
今晚我碰到一个bug,在刷新页面的时候浏览器所占用的内存在不断地升高,chrome进程的CPU的占用率也在不断维持在50左右,不知道是什么原因找了好久,注释了大部分代码一部分慢慢地排除,终于发现是javascript出现的错误,仔细看来看去都不知道是什么原因,写了一个基本的js代码来不断地循环,最后终于发现由于调用所用的函数的问题setTimeout("showTime()", 1000)原创 2014-12-17 15:20:37 · 890 阅读 · 0 评论 -
php学习类的使用
<?phpclass MyPc { var $hpf; public $name; /*function MyPc ($name='') { $this->name=$name; }*/ function __construct($name=''){ $this->name=$name; } function newfu(){ echo "this is ok!";原创 2014-11-23 17:31:40 · 753 阅读 · 0 评论 -
php爬取网页
<?php$url="http://blog.51cto.com/9519231/1571112";$fp=@fopen($url,'r') or die("超时");$fcontents=file_get_contents($url);ereg("(.*)",$fcontents,$rg);echo $rg[1];?>原创 2014-11-19 16:14:06 · 2474 阅读 · 0 评论 -
php文件操作基本用法
<?php/* $fp=fopen("tmp.html","r"); $str=fread($fp,filesize("tmp.html")); $str=str_replace("{title}",'新标题',$str); $str=str_replace("{content}",'新内容',$str);fclose($fp);$handle=fopen('new.html','原创 2014-11-19 15:19:07 · 965 阅读 · 0 评论 -
php简单的连接数据库
<?php $conn=@mysql_connect("localhost","root","") or die ("no"); mysql_select_db("hpf",$conn); mysql_query("set name 'GBK'");?>原创 2014-11-18 22:01:37 · 709 阅读 · 0 评论 -
PHP上传文件(学习)
<?phpif(isset($_FILES['upfile'])){ if (is_uploaded_file($_FILES['upfile']['tmp_name'])){$upfile=$_FILES["upfile"];$name = $upfile["name"];$type = $upfile["type"];$size = $upfile["size"];$tmp原创 2014-11-18 21:49:12 · 969 阅读 · 0 评论 -
今天的总结
昨天,我在抓包解析url的时候,总是出现各种错误,各种问题,其中两个url解析出来的数据是一样的数据,而另外的一些url读取不出任何的数据。所以我一直以为是软件那边的问题,以为是那边设计的时候没搞好。然后我把这个问题给师兄看了一下。师兄看了之后也觉得不明白为什么会出现这个问题。今天我大清早开始就重新抓取数据对数据进行重新的解析,可是不管我怎么试验都还是那个老问题,数据解析不对。下午原创 2015-03-18 15:09:22 · 655 阅读 · 0 评论