gpt4 book ai didi

没有 Composer 的PHPWord安装

转载 作者:可可西里 更新时间:2023-11-01 01:13:53 25 4
gpt4 key购买 nike

请原谅这里看似跛足。我正在使用只能访问 cpanel 的共享主机,主机不愿意代表我安装 composer 或 PHPWord。是否可以通过从 github 下载 ZIP 来安装 PHPWord?谢谢

最佳答案

是的,我一直这样做。对于 PHPWord,我会从 GitHub 下载 zip 文件并将 src 文件夹的内容移动到名为“lib\PhpOffice\PhpWord”的目录中。然后您将需要一个 PHP 类加载器。我总是使用它来自动加载,前提是类已正确命名空间,这似乎是这种情况。

$GLOBALS['class_path'] = array(__DIR__ . '/lib', __DIR__);

// Set-up class_path superglobal variable using php include_path as basis
if (!array_key_exists('class_path', $GLOBALS)) {
$GLOBALS['class_path'] = array();
foreach (explode(PATH_SEPARATOR, get_include_path()) as $path) {
// substitute __DIR__ path for '.' instead
if ($path == '.') {
array_push( $GLOBALS['class_path'], realpath(__DIR__) );
continue;
}
array_push( $GLOBALS['class_path'], realpath($path) );
}
}

if (!function_exists('import')):
function import($package = '') {
if (empty($package)) {
trigger_error("Package path must be specified.", E_USER_ERROR);
}
$package_bits = explode('\\', $package);
$package_path = implode(DIRECTORY_SEPARATOR, $package_bits) . '.php';
foreach ($GLOBALS['class_path'] as $path) {
$file = $path . DIRECTORY_SEPARATOR . $package_path;
if (file_exists($file)) {
require_once($file);
$entity_name = implode('\\', $package_bits);
if (!(class_exists($entity_name, false) ||
interface_exists($entity_name, false)
|| trait_exists($entity_name, false))) {
$caller = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1)[0];
trigger_error("Entity '" . $package . "' not found in file '" . $package_path . "' for import called in " .
$caller['file'] . " on line " . $caller['line'], E_USER_ERROR);
}
return;
}
}
}
endif;

spl_autoload_register('import');

将 $GLOBALS['class_path'] 设置为 'lib' 目录的位置,并确保在尝试实例化之前根据需要使用 'use' < strong>PHPWord.

希望这对您有所帮助!

关于没有 Composer 的PHPWord安装,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45170662/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com