导航:首页 > 编程语言 > 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