Linux系统中为php添加pcntl扩展的方法
1、首先看下 phpize命令 所在的目錄? (ps:我的目錄/usr/bin/phpize)
如果沒(méi)有找到的話 執(zhí)行安裝
yum install php53_devel (ps:請(qǐng)注意自己的版本)
安裝完畢后。會(huì)生成phpize命令??
2、去php.net下載相應(yīng)版本的php源文件
咱們以php-5.3.17 為例吧,解壓后,進(jìn)入相應(yīng)的模塊下
cd ext/pcntl
#先執(zhí)行phpize
/usr/bin/phpize
./configure --with-php-config=/usr/bin/php-config (ps:請(qǐng)正確的指定php-config的目錄)
#編譯、安裝
make && make install
這時(shí)候出了一個(gè)錯(cuò)誤
./configure編譯正常,但make出錯(cuò)
error: ‘PHP_FE_END' undeclared here (not in a function)
解決方法:
源代碼有錯(cuò)誤,進(jìn)入php-5.3.17目錄
sed -i 's|PHP_FE_END|{NULL,NULL,NULL}|' ./ext/**/*.c
sed -i 's|ZEND_MOD_END|{NULL,NULL,NULL}|' ./ext/**/*.c
再重新make && make install
3、編譯完畢后會(huì)生成了一個(gè)? pcntl.so的文件。在php的model目錄里
編輯/etc/php.ini,加入
extension=pcntl.so
4、重啟apache
service httpd restart
5、測(cè)試是否安裝成功
<?php
echo pcntl_fork();
?>
輸出:23165
php代碼:
/**
* 導(dǎo)出文件
* @return string
*/
public function export()
{
$file_name = "成績(jī)單-".date("Y-m-d H:i:s",time());
$file_suffix = "xls";
header("Content-Type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=$file_name.$file_suffix");
//根據(jù)業(yè)務(wù),自己進(jìn)行模板賦值。
$this->display();
}
HTML代碼:
<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv=Content-Type content="text/html; charset=utf-8">
<meta name=ProgId content=Excel.Sheet>
<meta name=Generator content="Microsoft Excel 11">
</head>
<body>
<table border=1 cellpadding=0 cellspacing=0 width="100%" >
<tr>
<td colspan="5" align="center">
<h2>成績(jī)單</h2>
</td>
</tr>
<tr>
<td style='width:54pt' align="center">編號(hào)</td>
<td style='width:54pt' align="center">姓名</td>
<td style='width:54pt' align="center">語(yǔ)文</td>
<td style='width:54pt' align="center">數(shù)學(xué)</td>
<td style='width:54pt' align="center">英語(yǔ)</td>
</tr>
<tr>
<td align="center">1</td>
<td style="" align="center">Jone</td>
<td style="" align="center">90</td>
<td style="" align="center">85</td>
<td style="" align="center">100</td>
</tr>
<tr>
<td align="center">2</td>
<td style="" align="center">Tom</td>
<td style="" align="center">99</td>
<td style="" align="center">85</td>
<td style="" align="center">80</td>
</tr>
</table>
</body>
</html>
我們?cè)賮?lái)看一個(gè)更方便的組件
在這里需要用到PEAR的兩個(gè)軟件包 Spreadsheet Excel Writer 和 OLE,如果沒(méi)有可以分別從 http://pear.php.net/package/Spreadsheet_Excel_Writer/ 和 http://pear.php.net/package/OLE/ 下載,解壓放在PEAR目錄下。
全部代碼如下:
<?php
include 'Writer.php';
/* *** 準(zhǔn)備導(dǎo)出的數(shù)據(jù) *** */
$head = 'One Week Schedule';
$data = array('Monday' => array( array('time' => '09:00', 'event' => '公司例會(huì)例會(huì)'), array('time' => '14:00', 'event' => '部門(mén)例會(huì)') ),
'Tuesday' => array( array('time' => '09:30', 'event' => '和 Mr. Stinsen 早餐')),
'Wednesday' => array(array('time' => '12:10', 'event' => '市場(chǎng)中階報(bào)告'), array('time' => '15:30', 'event' => '市場(chǎng)部戰(zhàn)略部署會(huì)議') ),
'Thursday' => array( array('time' => '', 'event' => '')),
'Friday' => array( array('time' => '16:00', 'event' => 'WoC Stock 研討會(huì)'), array('time' => '17:00', 'event' => '飛往華爾街'), array('time' => '21:00', 'event' => '會(huì)見(jiàn)克林頓'))
);
/* *** *** */
$workbook = new Spreadsheet_Excel_Writer();
$filename = date('YmdHis').'.xls';//csv
$workbook->send($filename); // 發(fā)送 Excel 文件名供下載
$workbook->setVersion( 8 );
$sheet = &$workbook->addWorksheet("Sheet1"); // 創(chuàng)建工作表
$sheet->setInputEncoding('utf-8'); // 字符集
$headFormat = &$workbook->addFormat(array('Size' => 14, 'Align' => 'center','Color' => 'white', 'FgColor' => 'brown', 'Bold'=>'1', 'Border' => '1'));//定義格式
$dayFormat = &$workbook->addFormat(array('Size' => 12, 'Align' => 'center', 'VAlign' => 'vcenter', 'FgColor' => 'green', 'Color' => 'white', 'Border' => '1'));//定義格式
$dataFormat = &$workbook->addFormat(array('Size' => 10, 'Align' => 'left', 'Border' => '1', 'Color' => 'black', 'FgColor'=> 'cyan'));//定義格式
$sheet->setColumn(0, 0, 20); // 設(shè)置寬度
$sheet->setColumn(1, 1, 15); // 設(shè)置寬度
$sheet->setColumn(2, 2, 30); // 設(shè)置寬度
$r = 0;?
$sheet->write(0, $r, $head, $headFormat); // 表格標(biāo)題
$sheet->mergeCells(0, 0, 0, 2); // 跨列顯示
$r++; // 數(shù)據(jù)從第2行開(kāi)始
foreach ($data as $day => $events){
$c = 0;
$sheet->write($r, $c, $day, $dayFormat);
if (!$events){
// 當(dāng)天沒(méi)有計(jì)劃
$r++;
} else {
$startRow = $r;
foreach ($events as $e){
$c = 1;
$sheet->write($r, $c++, $e['time'], $dataFormat); // 工作表寫(xiě)入數(shù)據(jù)
$sheet->write($r, $c++, $e['event'], $dataFormat); // 工作表寫(xiě)入數(shù)據(jù)
$r++;
}
// 合并 $day 單元格
$sheet->mergeCells($startRow, 0, $r - 1, 0);
}
}
$workbook->close(); // 完成下載
??>
來(lái)源:https://www.cnblogs.com/2881064178dinfeng/p/6207834.html
總結(jié)
以上是生活随笔為你收集整理的Linux系统中为php添加pcntl扩展的方法的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 公司名字推荐 好听又简单的公司名字
- 下一篇: 赵姓男孩独特好听名字 赵姓男孩叫什么好