‘壹’ 最简单 php 代码
<?php
mysql_query("insert into guahao values('".$name."','".$nl."','".$shouji."','".$sname."','".$info."')");
?>
‘贰’ 求个简单的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最经典,最基础的代码,适合入门的
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';
//不需要闭合标签
‘肆’ 帮忙些段简单的PHP代码
<?php
$type
=
$_GET["type"];
////下面这个是进入选择的值,根据这个值进入页面
$html
=
"<script>";
$html
.=
"window.location.href='".
$type.".php'";
$html
.=
"</script>";
echo
$html;
//如果你想做别的
switch($type){
case
'qq':
echo
"你进入了QQ,接下来你想做什么可以在这里再做判断";
break;
case
'msn'"
echo
"你进入了MSN,接下来你想做什么可以在这里再做判断";
break;
}
如果还有别的要求,可以接着说,或着给我发求助之类的,我能帮的会帮的!
?>