ÔÚphpÖн«ÉÏ´«·â×°³ÉÀà
ÔÚʹÓÃÉÏ´«Îļþʱ£¬½«ÉÏ´«µÄ´úÂë·â×°³ÉÀ࣬¸üÈÝÒ×·½±ã¡£
190.php
<?php
require('upload.php');
if($_POST['submit']){
$a = new Upload();
$File = $a -> uploadfile($ARG=array(
'File'=>array(
'name' => $_FILES['fileDoc']['name'], //ÔÃû×Ö
'tmp_name' => $_FILES['fileDoc']['tmp_name'] //ÐÂÃû×Ö
)));
}
echo $File['oldname'];
?>
<form action="<?echo $PHP_SELF?>" method="post" enctype="multipart/form-data">
<input type="file" name="fileDoc">
<br>
<input type="submit" name="submit" value="ÉÏ´«">
</form>
Upload.php
<?php
/**
* @author gb2312
* @since 2009-11-16
* @desc ÎļþÉÏ´«
*/
class Upload{
/**
* @desc ÎļþÉÏ´«·½·¨
* @param Array $ARG ÉÏ´«ÎļþµÄÊôÐÔ
*/
public function uploadfile($ARG=array(
'File' => array(),
'Dir' => '')){
//ĬÈÏĿ¼
$dir = "upload/";
//ÎļþÔʼÃû³Æ
$oldname = $ARG['File']['name'];
//ÎļþÀàÐÍ
 
Ïà¹ØÎĵµ£º
PHP»º´æ´úÂë
ºÃµÄÒ³Ãæ»º´æ´úÂ룬¿ÉÒÔ¼õÇáCPUºÍMYSQL¸ºµ£¡£Ê¹ÓÃǰ£¬ÏÈÔÚ¸ùĿ¼´´½¨“cache”Îļþ¼Ð£¬È»ºóÔËÐÐ1.php£¬µÚÒ»´ÎÔËÐк͵ڶþ´ÎÔËÐÐËٶȲîÒìºÜ´ó¡£»¶ÓÊìϤPHPµÄÅóÓÑʹÓúÍÌáÒâ¼û¡£
ʹÓ÷½·¨:(Çë±£´æÎªtemp.php)
<?php
include('arrcache.php');
$cache = new ArrCache('cache',5,'txt');
......
$_SERVER´æ´¢µ±Ç°·þÎñÆ÷ÐÅÏ¢£¬ÆäÖÐÓм¸¸öÖµÈç$_SERVER["QUERY_STRING"]£¬$_SERVER["REQUEST_URI"]£¬$_SERVER["SCRIPT_NAME"]ºÍ$_SERVER["PHP_SELF"]³£³£ÈÝÒ×»ìÏý£¬ÒÔÏÂͨ¹ýʵÀýÏê½â$_SERVERº¯ÊýÖÐQUERY_STRING£¬REQUEST_URI£¬SCRIPT_NAMEºÍPHP_SELF±äÁ¿Çø±ð£¬ÕÆÎÕÕâËÄÕßÖ®¼äµÄ¹ØÏµ£¬±ãÓÚÔÚʵ¼ÊÓ¦ÓÃÖÐÕýÈ·»ñÈ¡ËùÐèÒªµÄÖµ
1£ ......
ÔÌûµØÖ·£ºhttp://www.zedwood.com/article/126/php-mail-function-with-attachments
This code sends an html formatted email with attachments. This email sending script actually sends both a plaintext and an html body of the email, allowing the email client to choose which to display. The plaintext emai ......
http://www.juqng.com/articles/php/php-kai-fa-kuang-jia-jie-shao/
PHP¿ª·¢¿ò¼Ü½éÉÜ
×÷Õß: juqng.com
2009-12-08
phpÊǷdz£Á÷ÐеĿªÔ´Ãâ·ÑÓïÑÔ£¬ËüµÄ¿ª·¢¿ò¼ÜÒ²ÊǷdz£¶àµÄ£¬ÕâÀï½éÉÜһЩÓÅÐãµÄPHP¿ª·¢¿ò¼Ü¡£
CodeIgniter
ÊÇÒ»¸öÇ¿´óµÄPHPÓëÌå»ý·Ç³£Ð¡µÄ¡£ÎªPHP³ÌÐòÔ±£¬Ìṩһ¸ö¼òµ¥¶øÓÅÑÅ´´½ ......
delphi ±àдµÄcom ¶ÔÏó ÓÃphpµ÷ÓÃ
µÄ
ʵÀý
delphi:
function Tmyxml.Get_xml: WideString;
begin
Get_xml:='wo shi a lei!';
end;
function Tmyxml.Get_xmldata: WideString;
var
xmlStr:string;
begin
xmlStr := '<?xml version="1.0" & ......