本节内容:
iconv函数输出空白
某台前端服务器发现iconv函数数据输出为空。其他前端则输出正常;系统版本和安装的软件包都是一样;
分析原因:可能是gd库和iconv的冲突问题只要php编译中加入gd库支持就会导致这一情况。
但是在前端服务器里面,则完全没有此问题,看来只是针对特定硬件出现的问题。
解决方法:
把gd或iconv作为作为动态模块加载,总之避免gd和iconv同时使用静态方式编译就行。
以下是php动态方式加载gd编译方法,分享给大家。
首先,安装好gd。
假设gd是安装在/usr/local/gd,php安装在/usr/local/php。
可以这样:
/usr/local/php/bin/phpize
./configure --with-gd=/usr/local/gd --with-php-config=/usr/local/php/bin/php-config
make && make install
然后,修改php.ini文件
手工修改:查找/usr/local/php/etc/php.ini中的extension_dir = "./"
修改为extension_dir = "/usr/local/php/lib/php/extensions/no-debug-non-zts-20060613/"
在此行后增加以下内容,然后保存:
extension = "gd.so"
本节内容:
php输出excel文件
例子:
<?php
/**
* php导出excel文件
* by www.
*/
header('Content-Type: application/vnd.ms-excel; charset=GBK');
header('Cache-Control: no-cache, must-revalidate');
header('Content-type: application/vnd.ms-excel');
header('Content-Disposition: filename=test.xls');
?>
<html>
<style>
TD{
font-size: 12px;
vertical-align: middle;
}
strong{
font-size: 14px;
}
</style>
<!--HTML中td元素的nowrap属性表示禁止单元格中的文字自动换行-->
<body>
<div><b>统考报名督促</b></div>
<table width="100%" border="1" align="center" cellspacing="1" cellpadding="1">
<tr align="center">
<td nowrap><b>序号</b></td>
<td nowrap><b>学生姓名</b></td>
<td nowrap><b>服务站</b></td>
<td nowrap><b>学籍批次</b></td>
<td nowrap><b>层次</b></td>
<td nowrap><b>专业</b></td>
<td nowrap><b>联系电话</b></td>
<td nowrap><b>手机</b></td>
<td nowrap><b>大学英语(B)</b></td>
<td nowrap><b>计算机应用基础</b></td>
<td nowrap><b>大学语文(A)</b></td>
<td nowrap><b>大学语文(B)</b></td>
<td nowrap><b>高等数学(B)</b></td>
</tr>
<tr align="center">
<td nowrap>1</td>
<td nowrap>qifei</td>
<td nowrap>山东教学服务中心</td>
<td nowrap>200509</td>
<td nowrap>高起本</td>
<td nowrap>计算机科技</td>
<td nowrap>010-10101010</td>
<td nowrap>13233333333</td>
<td nowrap>通过</td>
<td nowrap>未通过</td>
<td nowrap>通过</td>
<td nowrap>未通过</td>
<td nowrap>免考</td>
</tr>
<tr align="center">
<td nowrap>2</td>
<td nowrap>qifei</td>
<td nowrap>山东教学服务中心</td>
<td nowrap>200509</td>
<td nowrap>高起本</td>
<td nowrap>计算机科技</td>
<td nowrap>010-10101010</td>
<td nowrap>13233333333</td>
<td nowrap>通过</td>
<td nowrap>未通过</td>
<td nowrap>通过</td>
<td nowrap>未通过</td>
<td nowrap>免考</td>
</tr>
</table>
<br>
<b>说明:</b><br>
1、china qifei<br>
2、Tianjin University<br>
</body>
</html>
附,其他格式文件:
header("Content-Disposition:filename=test.doc");
header("Content-type:application/vnd.ms-excel");
header("Content-Disposition:filename=test.xls");
header("Content-type:application/vnd.ms-PowerPoint");
header("Content-Disposition:filename=test.ppt");
本节内容:
php变量类型中的资源变量
资源类型是一种特殊的变量,保存了到外部资源的一个引用。资源是通过专门的函数来建立和使用的。
比如数据库连接,打开文件,图形画布区域等。
资源类型其实仅仅是一个整数,而内核可以根据这个整数值去一个类似资源池的地方寻找最终需要的数据。
例1,文件操作的例子:
$file=fopen('a.txt','r');//使用fopen函数打开一个文件获取句柄。
fread($file,1024);//之后把该句柄传递给fread函数,即可对此文件进行后续操作。
例2,数据库操作的例子:
$result=mysql_query()('select * from tbale');//mysql_query函数执行一条sql,若失败,返回false;成功,查询结果被缓存,并返回资源标识(类似:Resource id#42)即指向该资源的句柄。
mysql_num_row($result);//使用该句柄可以操作缓存中的资源,从而返回查询出来的条数
mysql_fetch_row($result);//使用该句柄可以操作缓存中的资源,从而返回查询结构
说明:
使用和销毁资源的函数列表。
可以用is_resource()函数测定一个变量是否是资源,函数get_resource_type()则返回该资源的类型。