摘要:
"; //返回文件完整路径,如 E://PHP/Test/Index.php print basename(__FILE__).""; //返回文件名,如 Index.php print dirname(__FILE__);//返回文件目录信息,如 E://PHP/Test } } $f = new FileDemo(); $f->Test();?> 阅读全文
摘要:
name = $name; $this->age = $age; } public function setName($name) { $this->name = $name; } public function getName() { return $this->name; } public function setAge($age) { $this->age = $age; } public function getAge() { return $this->age; } p... 阅读全文
摘要:
"; } }?> C# JAVA PHP SQL 阅读全文
摘要:
1.原生mysql方式"; } } mysql_close($con);?>2.优化过的mysql数据库访问方式,mysqliquery("set names gbk"); $sql = "insert into article(title,content,createBy,createTime) values(?,?,?,?)"; $stmt = $mysqli->prepare($sql); $stmt->bind_param("ssss", $title,$content,$createBy,$cre 阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:
";//获取字符长度 $a = "abc"; $b = "abC"; print strcasecmp($a, $b)."";//忽略大小写比较字符串 print strtoupper($a);//字符转大写 $x = "sdsd' sdsdf sdfsd $$$$$$$$$@ ffff"; print nl2br($x);//将字符串中的换行符转换为,即转换为html中的换行,在读取文件内容在网页中显示时极为有用 ... 阅读全文
摘要:
"; $reg = '/(?\d+)/i'; $k = "asd33sdfds4434dsdfd2222"; $m_array = array(); //匹配所有的 if(preg_match_all($reg, $k, $m_array)) { var_dump($m_array); } //将连续的数字替换为一个* $a = preg_replace('/(\d+)/i', '*', 'asd3343ddsf999dfdf000fff'); echo "".$a; //用,.; 阅读全文
摘要:
"; $v = checkdate(9, 31, 2013) ? "格式正确" : "格式错误"; echo $v; //对时间进行格式化,这里会显示类似 2012-12-12 13:14:15格式 echo date('Y-m-d H:i:s')."";?> 阅读全文