導航:首頁 > 編程語言 > php簡單代碼

php簡單代碼

發布時間:2022-01-21 13:47:38

『壹』 求很簡單的php代碼

<?php
$folder="C:wampwwwd";
$fp=opendir($folder);
while(false!=$file=readdir($fp)){
if($file!='.'&&$file!='..'){
$file="$folder/$file";
$arr_file[]=$file;
}
}

if(is_array($arr_file)){
while(list($key,$value)=each($arr_file)){
echo$value;
$key=file_get_contents($value);
$_patten='/(1234567)/';
if(preg_match($_patten,$key)){
$a=preg_replace($_patten,"7654321",$key);
file_put_contents($value,$a);
}
}
}
closedir($fp);
?>

代碼就敲到到這了,感覺有點頭痛,正則替換的7654321,你可以定義strrev($1);

『貳』 求寫個比較簡單的php登陸頁面代碼

主頁面:index.php <form name="form1" action="login.php" method="post" onsubmit="return check()"><!--這里注意onclick的用法-->
賬號:<input name="adminAccount" type="text" />

密碼:<input type="password" name="adminPass" />

輸入驗證碼:<input type="text" name="validate" />
< br />
<input type="submit" value="登陸" /><input type="reset" value="重置">
</form>判斷頁面:login.php<?php
//再連庫判斷賬號密碼
require_once("../inc/dbconfig.php");
$adminAccount=$_POST['adminAccount'];
$adminPass=md5($_POST['adminPass']);
$sql="select * from admin where adminAccount='$adminAccount' and adminPass='$adminPass'";
$result=mysql_query($sql) or die($sql);
$rows=mysql_num_rows($result);
if($rows==0){
?>
<script language="javascript">
alert("管理員賬號密碼錯誤!");
window.location="index.php";
</script>
<?
exit();
}
//將管理員賬號賦值給session
$_SESSION['adminAccount']=$adminAccount;
?>
<script language="javascript">
window.location="command.php";
</script>配置文件自己來就行了!

『叄』 php如何寫一個簡單的代碼

你需要用的是javascript而不是php

『肆』 PHP簡單代碼分析

$num = '3.1415926r*r' 是不是要去掉雙引號。
$num = 3.1415926r*r;才對

『伍』 求個簡單的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)

『陸』 求php代碼!!!!實現一個簡單的功能。

最好不要用中文文件名
<?
$content = file_get_contents('shuju.txt');
echo 'shuju.txt 內容:'.$content;

if(isset($_GET['action'])){
if($_GET['action']==1){
file_put_contents('open.txt','');
echo '創建打開.txt';
}elseif($_GET['action']==2){
file_put_contents('close.txt','');
echo '創建關閉.txt';
}
}
?>
<input type="button" value="打開" onclick="window.location='?action=1'">
<input type="button" value="關閉" onclick="window.location='?action=2'">

『柒』 一個簡單的php程序

html表格
然後插入php腳本
<?php
if(isset($_GET['M']))
{
演算法...
echo $val;
}
?>
<form action = "" method = "get">,
<p> money: <input type = "text" name = "M"> </p>
.......
表單的action可以是空,也可以是本頁面的名字.

『捌』 php一個簡單的功能,求源代碼

<HTML>
<HEAD>
<script>
var time_show = 4;
var timename = setInterval("sec_inner()",1000);
function g(x)
{
return window.document.getElementById(x);
}
function sec_inner()
{
g('radio_num').value = 'button['+time_show+']';
if(time_show == 0)
{
clearTimeout(timename);
g('radio_num').disabled = '';
}
time_show = time_show - 1;
}
</script>
</HEAD>
<BODY>
<input type="button" id="bb" name="radio_num" value="button[5]" onclick="if(window.confirm('確認注冊?')){alert('那就注冊吧');}" disabled>
</BODY>
</HTML>
實驗過了,可以用的。

『玖』 誰能提供個簡單PHP代碼!

馬馬虎虎寫了一個給你...不明白再問我..

<?
$conn = mysql_connect("localhost","root","1234");
if(!$conn){
echo "連接資料庫失敗";
exit();
}
mysql_query("SET NAMES 'GBK'");

InitGP(array('action'));

if($action == 'input'){
InitGP(array('name','phone','sex'),'P');
$timestamp = time();
mysql_select_db("database",$conn) or die(mysql_error());
$sql = "INSERT INTO data_list (name,phone,sex,time) VALUES ('$name','$phone','$sex','$timestamp')";
$result = mysql_query($sql,$conn) or die(mysql_error());
if($result) echo "<script>alert(\"{$name}添加成功\")</script>";
}

function InitGP($keys,$method='GP',$htmcv=0){
!is_array($keys) && $keys = array($keys);
foreach($keys as $val){
$GLOBALS[$val] = NULL;
if($method!='P' && isset($_GET[$val])){
$GLOBALS[$val] = $_GET[$val];
} elseif($method!='G' && isset($_POST[$val])){
$GLOBALS[$val] = $_POST[$val];
}
$htmcv && $GLOBALS[$val] = Char_cv($GLOBALS[$val]);
}
}

?>

<html>
<body>
<form name="form1" action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<input type="hidden" name="action" value="input">
<input name="name" type="text">
<input name="phone" type="text">
<input name="sex" type="text">
<input name="Submit" type="submit" value=" 提交 ">
</form>
</body>
</html>

『拾』 求第一次接觸php語言的最經典,最簡單的源代碼!!!!!!!!!!

<?php
//雙斜杠為注釋,在php中被解析不執行。每句要以 『分號』結束。

echo 「hello world"; //echo表示輸出

echo phpinfo(); //查看安裝環境信息
//變數輸出

$a='1'; //定義變數$a,用$符號表示
echo $a; //列印輸出變數$a;
//數組定義
$arr = array(); //定義一個空數組

$arr1= array(1,2); //表示鍵值0=>1,1=>2
print_r($arr1); //列印數組元素
?>
php程序要以<?php ..... ?>未開始結束。 建議初學時根據 php中文手冊 來學習。

閱讀全文

與php簡單代碼相關的資料

熱點內容
壓縮因子定義 瀏覽:968
cd命令進不了c盤怎麼辦 瀏覽:214
葯業公司招程序員嗎 瀏覽:974
毛選pdf 瀏覽:659
linuxexecl函數 瀏覽:727
程序員異地戀結果 瀏覽:374
剖切的命令 瀏覽:229
干什麼可以賺錢開我的世界伺服器 瀏覽:290
php備案號 瀏覽:990
php視頻水印 瀏覽:167
怎麼追程序員的女生 瀏覽:487
空調外壓縮機電容 瀏覽:79
怎麼將安卓變成win 瀏覽:459
手機文件管理在哪兒新建文件夾 瀏覽:724
加密ts視頻怎麼合並 瀏覽:775
php如何寫app介面 瀏覽:804
宇宙的琴弦pdf 瀏覽:396
js項目提成計算器程序員 瀏覽:944
pdf光子 瀏覽:834
自拍軟體文件夾名稱大全 瀏覽:328