当前位置:首页 » 编程语言 » 简单的php代码

简单的php代码

发布时间: 2023-02-23 15:17:49

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';

//不需要闭合标签
热点内容
云空间卡密码是什么 发布:2024-11-08 00:40:02 浏览:950
海康sip服务器地址怎么填写 发布:2024-11-08 00:32:13 浏览:394
安通加密 发布:2024-11-08 00:25:51 浏览:138
为什么安卓和苹果单核差距那么大 发布:2024-11-08 00:25:50 浏览:438
存储器的种类 发布:2024-11-08 00:14:10 浏览:188
戴尔服务器bios怎么看日志 发布:2024-11-08 00:09:56 浏览:961
有渔编程下载 发布:2024-11-07 23:56:49 浏览:714
汉字在计算机内部存储 发布:2024-11-07 23:55:20 浏览:714
java启动jar 发布:2024-11-07 23:49:19 浏览:607
java方法的参数传递参数 发布:2024-11-07 23:37:12 浏览:445