簡單的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';
//不需要閉合標簽