当前位置:  编程技术>php
本页文章导读:
    ▪PHP中header和session_start前不能有输出的原因      在http传输文本中,规定必须 header和content顺序必须是:header在前content在后,并且header的格式必须满足“keyword: value\n”这种格式。1、在header输出之前有输出内容的话,就会造成对header的.........
    ▪php上传Excel文件时如何判断文件中有图片      需要借助PHPExcel这个库 1 $excelPath = 'Test.xls'; 2 3 $objReader = PHPExcel_IOFactory::createReader('Excel5'); 4 $objReader->setReadDataOnly(true); 5 6 $objPHPExcel = $objReader->load($excelPath); 7 $currentSheet = $objPHPExcel->getAc.........
    ▪织梦二次开发增加一个或多个栏目的栏目内容      效果确实威武啊!! 怎么样,我一下子增加了5个,是否威武哈。 某些情况下需要这么多滴,这个时候频道页就可以做很多效果了,比如Tabs切换效果。  现在开始发布修改方法: .........

[1]PHP中header和session_start前不能有输出的原因
    来源:    发布时间: 2013-10-15

在http传输文本中,规定必须 header和content顺序必须是:header在前content在后,并且header的格式必须满足“keyword: value\n”这种格式。

1、在header输出之前有输出内容的话,就会造成对header的错误理解(尽管现在已经能容错了),例如不是满足“keyword: value\n”的格式还好,直接错误了,但是满足“keyword: value\n”这个格式以后,客户端是否安装错误理解,还是按照正确理解?

2、session开启是会隐含的触发是否用header(“Set-Cookie: sid=xxxxxx”),也就是其实还是一个隐式的header调用

 

本文链接


    
[2]php上传Excel文件时如何判断文件中有图片
    来源:    发布时间: 2013-10-15

需要借助PHPExcel这个库

1 $excelPath = 'Test.xls';
2
3 $objReader = PHPExcel_IOFactory::createReader('Excel5');
4 $objReader->setReadDataOnly(true);
5
6 $objPHPExcel = $objReader->load($excelPath);
7 $currentSheet = $objPHPExcel->getActiveSheet();
8 $AllImages= $currentSheet->getDrawingCollection();
9
10 if(count($AllImages) > 0) {
11 //处理
12 }

 

本文链接


    
[3]织梦二次开发增加一个或多个栏目的栏目内容
    来源:    发布时间: 2013-10-15

效果确实威武啊!!

怎么样,我一下子增加了5个,是否威武哈。
某些情况下需要这么多滴,这个时候频道页就可以做很多效果了,比如Tabs切换效果。 
现在开始发布修改方法:
首先要再数据库中添加相应的字段
SQL语句  
ALTER TABLE `你的数据库表前缀_arctype` ADD `content1` TEXT NOT NULL AFTER `content` ;
如果只增加一次的话就运行一次就可以了,如果增加多个的话就继续运行,但是要注意添加的字段名,我懒的起名,起的字段名加数字,
ALTER TABLE `你的数据库表前缀_arctype` ADD `content2` TEXT NOT NULL AFTER `content1` ;
ALTER TABLE `你的数据库表前缀_arctype` ADD `content3` TEXT NOT NULL AFTER `content2` ;
ALTER TABLE `你的数据库表前缀_arctype` ADD `content4` TEXT NOT NULL AFTER `content3` ;
ALTER TABLE `你的数据库表前缀_arctype` ADD `content5` TEXT NOT NULL AFTER `content4` ;
......

第二步  dede\catalog_edit.php
在      `content`='$content', 下 增加
  `content1`='$content1',
  `content2`='$content2',
  `content3`='$content3',
  `content4`='$content4',
  `content5`='$content5',
这里是保存数据用的。

第三步是最繁琐的,也是最容易出错的,
dede\templets\catalog_edit.htm
修改  
<table width="100%" border="0" cellspacing="0" id="head1" cellpadding="0">
          <tr> 
            <td colspan="2" bgcolor="#FFFFFF" align="left">
           <table border="0" cellpadding="0" cellspacing="0">
                <tr>
                  <td width="84" height="24" align="center" background="images/itemnote1.gif"> 常规选项 </td>
                  <td width="84" align="center" background="images/itemnote2.gif"><a href=/blog_article/"/index.html onClick="ShowItem2()"><u>高级选项</u></a> </td>
                  <td width="84" align="center" background="images/itemnote2.gif"><a href=/blog_article/"/index.html onClick="ShowItem3()"><u>栏目内容</u></a> </td>
      <td width="84" align="center" background="images/itemnote2.gif"><a href=/blog_article/"/index.html onClick="ShowItem4()"><u>附加内容1</u></a> </td>
      <td width="84" align="center" background="images/itemnote2.gif"><a href=/blog_article/"/index.html onClick="ShowItem5()"><u>附加内容2</u></a> </td>
      <td width="84" align="center" background="images/itemnote2.gif"><a href=/blog_article/"/index.html onClick="ShowItem7()"><u>附加内容3</u></a> </td>
      <td width="84" align="center" background="images/itemnote2.gif"><a href=/blog_article/"/index.html onClick="ShowItem8()"><u>附加内容4</u></a> </td>
      <td width="84" align="center" background="images/itemnote2.gif"><a href=/blog_article/"/index.html onClick="ShowItem9()"><u>附加内容5</u></a> </td>
                </tr>
              </table>
            </td>
          </tr>
        </table> 
红色是新增加的代码 由于有多个,而且重复,也只是轻微的变化,我直接贴出全部的代码部分
<table width="100%" border="0" cellspacing="0" id="head1" cellpadding="0">
          <tr> 
            <td colspan="2" bgcolor="#FFFFFF" align="left">
           <table border="0" cellpadding="0" cellspacing="0">
                <tr>
                  <td width="84" height="24" align="center" background="images/itemnote1.gif"> 常规选项 </td>
                  <td width="84" align="center" background="images/itemnote2.gif"><a href=/blog_article/"/index.html onClick="ShowItem2()"><u>高级选项</u></a> </td>
                  <td width="84" align="center" background="images/itemnote2.gif"><a href=/blog_article/"/index.html onClick="ShowItem3()"><u>栏目内容</u></a> </td>
      <td width="84" align="center" background="images/itemnote2.gif"><a href=/blog_article/"/index.html onClick="ShowItem4()"><u>附加内容1</u></a> </td>
      <td width="84" align="center" background="images/itemnote2.gif"><a href=/blog_article/"/index.html onClick="ShowItem5()"><u>附加内容2</u></a> </td>
      <td width="84" align="center" background="images/itemnote2.gif"><a href=/blog_article/"/index.html onClick="ShowItem7()"><u>附加内容3</u></a> </td>
      <td width="84" align="center" background="images/itemnote2.gif"><a href=/blog_article/"/index.html onClick="ShowItem8()"><u>附加内容4</u></a> </td>
      <td width="84" align="center" background="images/itemnote2.gif"><a href=/blog_article/"/index.html onClick="ShowItem9()"><u>附加内容5</u></a> </td>
                </tr>
              </table>
            </td>
          </tr>
        </table> 
        <table width="100%" border="0" cellspacing="0" id="head2" cellpadding="0" style="display:none">
          <tr>
            <td colspan="2" bgcolor="#FFFFFF"  style="text-align:left;">
          <table height="24" border="0" cellpadding="0" cellspacing="0">
                <tr> 
                  <td width="84" align="center" background="images/itemnote2.gif" bgcolor="#F2F7DF"><a href=/blog_article/"/index.html onClick="ShowItem1()"><u>常规选项</u></a> </td>
                  <td width="84" align="center" background="images/itemnote1.gif"> 高级选项 </td>
                  <td width="84" align="center" background="images/itemnote2.gif&

    
最新技术文章:
▪PHP函数microtime()时间戳的定义与用法
▪PHP单一入口之apache配置内容
▪PHP数组排序方法总结(收藏)
▪php数组排序方法大全(脚本学堂整理奉献)
▪php数组排序的几个函数(附实例)
▪php二维数组排序(实例)
▪php根据键值对二维数组排序的小例子
▪php验证码(附截图)
▪php数组长度的获取方法(三个实例)
▪php获取数组长度的方法举例
▪判断php数组维度(php数组长度)的方法
▪php获取图片的exif信息的示例代码
▪PHP 数组key长度对性能的影响实例分析
▪php函数指定默认值的方法示例
▪php提交表单到当前页面、提交表单后页面重定...
▪php四舍五入的三种实现方法
▪php获得数组长度(元素个数)的方法
▪php日期函数的简单示例代码
▪php数学函数的简单示例代码
▪php字符串函数的简单示例代码
▪php文件下载代码(多浏览器兼容、支持中文文...
▪php实现文件下载、支持中文文件名的示例代码...
▪php文件下载(防止中文文件名乱码)的示例代码
▪解决PHP文件下载时中文文件名乱码的问题
▪php数组去重(一维、二维数组去重)的简单示例
▪php小数点后取两位的三种实现方法
▪php Redis 队列服务的简单示例
▪PHP导出excel时数字变为科学计数的解决方法
▪PHP数组根据值获取Key的简单示例
▪php数组去重的函数代码示例
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3