我收到以下错误,有人能描述一下吗?我使用Laravel 4和composer作为依赖管理器。我尝试了好几次,在不同的论坛上搜索,却没有得到解决这个问题的办法。如果有人能调查这一问题并提出解决办法,我将不胜感激。
Your requirements could not be resolved to an installable set of packages.
Problem 1
- maatwebsite/excel v1.3.7 requires phpoffice/phpexcel ~1.8.0 -> satisfiable by phpoffice/phpexcel[1.8.1,
这让我困惑了好几天,我无法让下面的代码起作用:
public function index (){
//load our new PHPExcel library
$this->load->library('excel');
$objPHPExcel = new PHPExcel();
//activate worksheet number 1
$this->excel->setActiveSheetIndex(0);
//name the worksheet
$this->excel->
我正在尝试使用Symfony流程组件执行Symfony命令,以便在获得API请求时异步执行。
当我这样做的时候,我得到了Code: 127(Command not found)的错误消息,但是当我从我的控制台手动运行它时,它就像一种魅力。
这就是号召:
public function asyncTriggerExportWitnesses(): bool
{
$process = new Process(['php /var/www/bin/console app:excel:witness']);
$process->setTimeout(600);
我正在使用PHP将数据从MySQL数据库导出到Excel表格中。一切正常,但是日期字段数据在Excel工作表中会自动从YYYY-mm-dd转换为dd-mm-YYYY。
PHP代码:
$results = mysql_query("SELECT name,contact,reg_date FROM reg");
$headerDisplayed = false;
while ($data = mysql_fetch_array($results, MYSQL_NUM)) {
// Add a header row if it hasn't been a
我在这么多的帖子里看到了这个问题。但没有人得到答复。第一次在excel文件中插入图像时,如果再次加载excel文件并尝试在另一个单元格中插入另一个图像,则没有there.but问题,发生下列问题:
Fatal error: Uncaught exception 'PHPExcel_Writer_Exception' with message 'File zip://C:\xampp\htdocs\Well\test.xlsx#xl/media/well1.bmp does not exist' in C:\xampp\htdocs\Well\Classes\PH
但是,尝试使用PhpSpreadsheet从XLSX文件中读取数据时会出现以下错误:
PHP Fatal error: Uncaught PhpOffice\PhpSpreadsheet\Exception: Your requested sheet index: -1 is out of bounds. The actual number of sheets is 0. in C:\php\projects\stock\vendor\phpoffice\phpspreadsheet\src\PhpSpreadsheet\Spreadsheet.php:678
这里肯定有一个工作表,我下面的
我使用Maatwebsite加载excel文件。我正在加载几个很好的文档,直到出现下一个错误:
PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 32 bytes) in /project1/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php on line 582
我去了config/excel.php,并将memoryCacheSize设置更新为128MB。之后,我运行php artisan cache:clear和p
今天,我第一次学习了如何创建一个简单的登录系统(包括感谢StackExchange技巧和 )。我要做的是使用框架只为那些成功登录的人生成一个Excel文件。
我已经非常接近了,但是我得到了一条关于标题的疯狂信息,下面是一堆混在一起的行话。
Warning: Cannot modify header information - headers already sent by (output started at /home3/mydir/public_html/d23/members/loggedin.php:6) in /home3/mydir/public_html/d23/
我在phalcon php框架中工作,我试图创建简单的xsl文件,但当我调用我的控制器时,我得到了空的excel表。谁能告诉我我的代码中哪里出了问题。下面是我的方法:
public function createExcelAction () {
$loader = new \Phalcon\Loader();
$loader->registerClasses(array(
"PHPExcel" => "C:/wamp/www/phalcon1/Classes/PHPExcel.php
我的数据库表的当前结构如下所示;我有两个表、用户和技能,它们包含以下列: 用户 user_id f_name l_name biography password email role
_____________________________________________________________________
1 John Program Short Bio Password johnprogram@ Programmer
2 Jeff Analyst Another