這是警告的意思
打開php
對於Parse error錯誤
error_reporting(
如果你想關閉任何錯誤提示
那什麼是error_reporting?
設置 include_path=
auto_prepend_file
Automatically add files before or after any PHP document
auto_prepend_file = auto_prepend_file
auto_append_file = auto_append_file
以後你每個php文件就相當於
PHP代碼:
<?php
Include
Include
?>
PHP代碼:
<html><head>
<title>上載文件表單</title></head>
<body>
<form enctype=
請選擇文件
<input name=
<input type=
</form>
</body>
</html>
<?
$upload_file=$_FILES[
$upload_file_name=$_FILES[
if($upload_file){
$file_size_max =
$store_dir =
$accept_overwrite =
// 檢查文件大小
if ($upload_file_size > $file_size_max) {
echo
exit;
}
// 檢查讀寫文件
if (file_exists($store_dir
Echo
exit;
}
//復制文件到指定目錄
if (!move_uploaded_file($upload_file
echo
exit;
}
}
Echo
echo $_FILES[
echo
//客戶端機器文件的原名稱
Echo
echo $_FILES[
//文件的 MIME 類型
echo
Echo
echo $_FILES[
//已上傳文件的大小
echo
Echo
echo $_FILES[
//文件被上傳後在服務端儲存的臨時文件名
echo
$Erroe=$_FILES[
switch($Erroe){
case
Echo
case
Echo
case
Echo
case
Echo
case
Echo
}
?>
下面是我的配置過程
設置extension_dir =
extension=php_gd
PHP代碼:
<?php
Ob_end_flush();
//注意
header (
$im = @imagecreate (
or die (
$background_color = imagecolorallocate ($im
$text_color = imagecolorallocate ($im
imagestring ($im
imagepng ($im);
?>
UBB代碼是HTML的一個變種
即使禁止使用 HTML
一般來說
PHP代碼:
<?PHP
$str=
$Short_Str=showShort($str
Echo
Function csubstr($str
{
$strlen=strlen($str);
$clen=
for($i=
{
if ($clen>=$start+$len)
break;
if(ord(substr($str
{
if ($clen>=$start)
$tmpstr
$i++;
}
else
{
if ($clen>=$start)
$tmpstr
}
}
return $tmpstr;
}
Function showShort($str
{
$tempstr = csubstr($str
if ($str<>$tempstr)
$tempstr
return $tempstr;
}
在表格
例如
$Sql=
PHP代碼:
<?PHP
$str=
Echo
Echo htmlentities(nl
?>
PHP代碼:
<?PHP
$a=
foo();
Function foo()
{
global $a;//刪除這裡看看是什麼結果
Echo
}
?>
From:http://tw.wingwit.com/Article/program/PHP/201311/21358.html