php
gqomg
最长的电影
展开
-
php处理上传图片的步骤
header("content-type:text/html;charset=utf-8"); $allowType=array('jpg','gif','png','jpeg'); $maxsize=5000000; if($_POST['sub']){ if($_FILES["spic"]["error"] > 0){ switch($_FILES原创 2012-07-03 10:07:08 · 671 阅读 · 0 评论 -
客户端禁用cookie后 通过url传替session_id
1.php if(isset($_GET['PHPSESSION'])){ session_id($_GET['PHPSESSION']); } session_start(); $sid=session_id(); $_SESSION['test']='123'; echo "qqq"; ?> 2.php if(isset($_GET['PHPSESSI原创 2012-08-04 22:40:20 · 576 阅读 · 0 评论 -
关于get_include_path()和set_include_path()
get_include_path() include包含文件所在的所有目录 格式如下 目录;目录;目录 通过set_include_path()可以修改这些目录 PATH_SEPARATOR 分隔符 Linux(:) Windows(;) 例如 3个文件夹 "file01","file02","file03" $include_path=get_inclu原创 2012-08-12 17:19:57 · 380 阅读 · 0 评论 -
php中heredoc的使用方法
1.以 2.位于开始标记和结束标记之间的变量可以被正常解析,但是函数则不可以。原创 2012-09-10 10:26:24 · 267 阅读 · 0 评论 -
php单例模式
class conf{ private $info; private static $ins=false; final protected function __construct(){ require('./lib/config.php'); $this->info=$_原创 2012-10-22 16:49:28 · 342 阅读 · 0 评论 -
SimpleXML 操作
class SimpleXMLExtended extends SimpleXMLElement { public function addCData($cdata_text) { $node = dom_import_simplexml($this); $no = $node->ownerDocument; $node->appendChi原创 2013-10-12 12:01:58 · 500 阅读 · 0 评论