__DIR__ -> dirname(__FILE__)
This commit is contained in:
parent
aaf5ca234c
commit
06293c784a
|
@ -36,7 +36,7 @@ if (ini_get('phar.readonly')) {
|
||||||
$pharName = 'PHPExcel.phar';
|
$pharName = 'PHPExcel.phar';
|
||||||
|
|
||||||
// target folder
|
// target folder
|
||||||
$sourceDir = dirname(__DIR__) . DIRECTORY_SEPARATOR . 'Classes' . DIRECTORY_SEPARATOR;
|
$sourceDir = dirname(dirname(__FILE__)) . DIRECTORY_SEPARATOR . 'Classes' . DIRECTORY_SEPARATOR;
|
||||||
|
|
||||||
// default meta information
|
// default meta information
|
||||||
$metaData = array(
|
$metaData = array(
|
||||||
|
|
|
@ -48,7 +48,7 @@ $inputFileNames = 'templates/32readwrite*[0-9].xlsx';
|
||||||
if ((isset($argc)) && ($argc > 1)) {
|
if ((isset($argc)) && ($argc > 1)) {
|
||||||
$inputFileNames = array();
|
$inputFileNames = array();
|
||||||
for($i = 1; $i < $argc; ++$i) {
|
for($i = 1; $i < $argc; ++$i) {
|
||||||
$inputFileNames[] = __DIR__ . '/templates/' . $argv[$i];
|
$inputFileNames[] = dirname(__FILE__) . '/templates/' . $argv[$i];
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$inputFileNames = glob($inputFileNames);
|
$inputFileNames = glob($inputFileNames);
|
||||||
|
|
|
@ -68,7 +68,7 @@ $inputFileNames = 'templates/32readwrite*[0-9].xlsx';
|
||||||
if ((isset($argc)) && ($argc > 1)) {
|
if ((isset($argc)) && ($argc > 1)) {
|
||||||
$inputFileNames = array();
|
$inputFileNames = array();
|
||||||
for($i = 1; $i < $argc; ++$i) {
|
for($i = 1; $i < $argc; ++$i) {
|
||||||
$inputFileNames[] = __DIR__ . '/templates/' . $argv[$i];
|
$inputFileNames[] = dirname(__FILE__) . '/templates/' . $argv[$i];
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$inputFileNames = glob($inputFileNames);
|
$inputFileNames = glob($inputFileNames);
|
||||||
|
|
|
@ -68,7 +68,7 @@ $inputFileNames = 'templates/36write*.xlsx';
|
||||||
if ((isset($argc)) && ($argc > 1)) {
|
if ((isset($argc)) && ($argc > 1)) {
|
||||||
$inputFileNames = array();
|
$inputFileNames = array();
|
||||||
for($i = 1; $i < $argc; ++$i) {
|
for($i = 1; $i < $argc; ++$i) {
|
||||||
$inputFileNames[] = __DIR__ . '/templates/' . $argv[$i];
|
$inputFileNames[] = dirname(__FILE__) . '/templates/' . $argv[$i];
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$inputFileNames = glob($inputFileNames);
|
$inputFileNames = glob($inputFileNames);
|
||||||
|
|
|
@ -91,7 +91,7 @@ $inputFileNames = 'templates/36write*.xlsx';
|
||||||
if ((isset($argc)) && ($argc > 1)) {
|
if ((isset($argc)) && ($argc > 1)) {
|
||||||
$inputFileNames = array();
|
$inputFileNames = array();
|
||||||
for($i = 1; $i < $argc; ++$i) {
|
for($i = 1; $i < $argc; ++$i) {
|
||||||
$inputFileNames[] = __DIR__ . '/templates/' . $argv[$i];
|
$inputFileNames[] = dirname(__FILE__) . '/templates/' . $argv[$i];
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$inputFileNames = glob($inputFileNames);
|
$inputFileNames = glob($inputFileNames);
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
include_once __DIR__.'/Complex.php';
|
include_once dirname(__FILE__).'/Complex.php';
|
||||||
|
|
||||||
|
|
||||||
class complexAssert {
|
class complexAssert {
|
||||||
|
|
Loading…
Reference in New Issue