简单的php代码
A. 修改一下简单的php代码!谢谢啦
<?php
if($_POST)
{
$dir=$_POST['dir'];
$content=$_POST['content'];
if(!file_exists($dir))
{
mkdir($dir);
}else{
echo"<script>alert('添加失败!')</script>";exit();
}
$url=$dir."/".$dir."txt";
$hd=fopen($url,"w");
if(fwrite($hd,$content))
{
echo"<script>alert('添加成功!')</script>";
}
else
{
echo"<script>alert('添加失败!')</script>";
}
fclose($hd);
}
else
{
?>
<!--<formmethod="post"action="<?phpecho$_SERVER['PHP_SELF']?>">
<inputtype="text"name="dir">文件夹名字
<inputtype="text"name="content">内容
<inputtype="submit"value="提交">
</form>-->
<?php
}
?>
代码已帮你修改了
B. 简单PHP代码
$_env 是环境变量,通过环境方式传递给当前脚本的变量的数组。
$_ENV['defaultapp'] = array('portal.php' => 'portal', 'forum.php' => 'forum', 'group.php' => 'group', 'home.php' => 'home');
是赋值 , 你可以用 var_mp($_env['defaultapp']) 看赋值结果。
--------------------------------------------------------------------
$_ENV['hostarr'] = explode('.', $_SERVER['HTTP_HOST']);
环境变量 用.分隔 主域名(你可以 echo $_server['HTTP_HOST']里面有什么)
----------------------------------------------------------------
$url = $domainroot.'forum.php?mod=group&fid='.$domain['id'].'&page=1';
构造一个URL 直白点 结果就是: www.some.com/forum.php?mod=1&fid=1&page=1
----------------------------------------
$url = empty($_ENV['domain']['app']['default']) ? (!empty($_ENV['domain']['defaultindex']) ? $_ENV['domain']['defaultindex'] : 'forum.php') : 'http://'.$_ENV['domain']['app']['default'];
结构简化 $url = $a ? (!$b? $c : $d) :$e; 2个3元运算嵌套, 至于看起来复杂的变量都是多维数组的值
C. 最简单 php 代码
<?php
mysql_query("insert into guahao values('".$name."','".$nl."','".$shouji."','".$sname."','".$info."')");
?>
D. 求个简单的php代码
_tags($string, $replace_with_space = true)
{
if ($replace_with_space) {
return preg_replace('!<[^>]*?>!', ' ', $string);
} else {
return strip_tags($string);
}
}
截取字符函数(匹配各种编码)
function truncate($string, $length = 80, $etc = '...', $break_words = false, $middle = false){
if ($length == 0)
return '';
if (is_callable('mb_strlen')) {
if (mb_detect_encoding($string, 'UTF-8, ISO-8859-1') === 'UTF-8') {
// $string has utf-8 encoding
if (mb_strlen($string) > $length) {
$length -= min($length, mb_strlen($etc));
if (!$break_words && !$middle) {
$string = preg_replace('/\s+?(\S+)?$/u', '', mb_substr($string, 0, $length + 1));
}
if (!$middle) {
return mb_substr($string, 0, $length) . $etc;
} else {
return mb_substr($string, 0, $length / 2) . $etc . mb_substr($string, - $length / 2);
}
} else {
return $string;
}
}
}
// $string has no utf-8 encoding
if (strlen($string) > $length) {
$length -= min($length, strlen($etc));
if (!$break_words && !$middle) {
$string = preg_replace('/\s+?(\S+)?$/', '', substr($string, 0, $length + 1));
}
if (!$middle) {
return substr($string, 0, $length) . $etc;
} else {
return substr($string, 0, $length / 2) . $etc . substr($string, - $length / 2);
}
} else {
return $string;
}
}
综合就是
$arc=strip_tags($arc);
$arc=truncate($arc,200)
E. PHP分页显示最简单代码
简单写法:
<?php
include
("./config/conn.php");
$sql="select
*
from
ly
order
by
id
desc";
$result=mysql_query($sql);
$num=mysql_num_rows($result);
//统计行数
$pages=ceil($num/5);
//总页数
$page=$_GET['page'];
//获得page,如果没有设置或者page=0,把$page=1;
if(!isset($page)
||
$page==0)
$page=1;
$start=($page-1)*5;
$sql="select
*
from
ly
order
by
id
desc
limit
$start,5";
mysql_query($sql);
if($sumpage!=0)
{
if($page!=1)
{
echo
"<a
href=$PHP_SELF?page=1>首页</a>\t";
}else
{
echo
"首页\t";
}
if($page>1)
{
echo
"<a
href=$PHP_SELF?page=".($page-1).">上一页</a>\t";
}else
{
echo
"上一页\t";
}
if($page<$pages)
{
echo
"<a
href=$PHP_SELF?page=".($page+1).">下一页</a>\t";
}else
{
echo
"下一页\t";
}
if($page!=$pages)
{
echo
"<a
href=$PHP_SELF?page=".$pages.">尾页</a>\t";
}else
{
echo
"尾页\t";
}
}else
{
echo
"目前没有记录!!";
}
F. php最经典,最基础的代码,适合入门的
PHP是一种可以嵌入到HTML中的运行在服务器端的脚本语言,所以为了体现PHP的特性我们可以分两种模式来实现PHP代码
1、 PHP嵌入到HTML中,例如index.php
<html>
<head></head>
<body>
<!--因为PHP嵌入到HTML中,所以需要完全区分PHP代码和HTML代码-->
<?php
//输出helloworld
echo'helloworld;
?>
</body>
</html>
2、 PHP独立文件,只有PHP代码,例如index.php
<?php
//输出
echo'helloworld';
//不需要闭合标签